Returns a new data frame that has a default numeric row index.
The row index is moved to a new column in the data frame.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public DataFrame<long, C> RemoveRowIndex(
C columnKey
)
Public Function RemoveRowIndex (
columnKey As C
) As DataFrame(Of Long, C)
public:
DataFrame<long long, C>^ RemoveRowIndex(
C columnKey
)
member RemoveRowIndex :
columnKey : 'C -> DataFrame<int64, 'C>
Parameters
- columnKey
- Type: C
The key of the column that will contain
the keys of the current row index.
Return Value
Type:
DataFrameInt64,
CA new data frame with the same columns as the current data frame,
but the row index moved to a new column and replaced with
a default numeric index.
Reference