Data Frame<R, C>.Remove Row Index Method
            
            
            
            Definition
Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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.