Marks the column at the specified index as containing categorical data.
Namespace:
Extreme.DataAnalysis
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public DataFrame<R, C> MakeCategoricalAt(
int index
)
Public Function MakeCategoricalAt (
index As Integer
) As DataFrame(Of R, C)
public:
DataFrame<R, C>^ MakeCategoricalAt(
int index
)
member MakeCategoricalAt :
index : int -> DataFrame<'R, 'C>
Parameters
- index
- Type: SystemInt32
The zero-based index of the column to make
categorical.
Return Value
Type:
DataFrameR,
C
Exception | Condition |
---|
ArgumentOutOfRangeException | index is less than zero or greater than
or equal to the number of columns in the data frame. |
This method does not change the values in the column.
It changes the representation to one for categorical data.
Reference