Data Frame<R, C>.Remove Row Index Method
Definition
Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Overload List
Remove | Returns a new data frame that has a default numeric row index. The row index is discarded. |
Remove | 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. |
RemoveRowIndex
Returns a new data frame that has a default numeric row index.
The row index is discarded.
public DataFrame<long, C> RemoveRowIndex()
Return Value
DataFrame<Int64, C>A new data frame with the same columns as the current data frame, but the row index replaced with a default numeric index.
RemoveRowIndex(C)
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.
public DataFrame<long, C> RemoveRowIndex(
C columnKey
)
Parameters
- columnKey C
- The key of the column that will contain the keys of the current row index.
Return Value
DataFrame<Int64, C>A 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.