DataFrame<R, C>.MakeCategoricalAt Method

DefinitionPermalink

Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0

Overload ListPermalink

MakeCategoricalAt(Int32) Marks the column at the specified index as containing categorical data.
MakeCategoricalAt<T>(Int32, Index<T>, Boolean) Marks the column at the specified index as containing categorical data.

MakeCategoricalAt(Int32)Permalink

Marks the column at the specified index as containing categorical data.
C#
public DataFrame<R, C> MakeCategoricalAt(
	int index
)

Parameters

index  Int32
The zero-based index of the column to make categorical.

Return Value

DataFrame<R, C>

RemarksPermalink

This method does not change the values in the column. It changes the representation to one for categorical data.

ExceptionsPermalink

ArgumentOutOfRangeException

index is less than zero or greater than or equal to the number of columns in the data frame.

MakeCategoricalAt<T>(Int32, Index<T>, Boolean)Permalink

Marks the column at the specified index as containing categorical data.
C#
public DataFrame<R, C> MakeCategoricalAt<T>(
	int index,
	Index<T> categoryIndex,
	bool replaceIndex = false
)

Parameters

index  Int32
The zero-based index of the column to make categorical.
categoryIndex  Index<T>
The category index to use to encode the values.
replaceIndex  Boolean  (Optional)
Optional. Specifies whether categoryIndex should replace the existing index.

Type Parameters

T

Return Value

DataFrame<R, C>

RemarksPermalink

This method does not change the values in the column. It changes the representation to one for categorical data.

ExceptionsPermalink

ArgumentOutOfRangeException

index is less than zero or greater than or equal to the number of columns in the data frame.

See AlsoPermalink