CategoricalEncoding.GetFullRankEncoding Method

Definition

Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

GetFullRankEncoding(Int32) Returns the encoding with full rank of the specified position
GetFullRankEncoding<T>(Int32) Returns the encoding with full rank of the specified position

CategoricalEncoding.GetFullRankEncoding(Int32)

Returns the encoding with full rank of the specified position
C#
public Index<double> GetFullRankEncoding(
	int index
)

Parameters

index  Int32
The column index of the encoding.

Return Value

Index<Double>
The category index that encapsulates the encoding for the specified column.

Exceptions

ArgumentOutOfRangeException

index is less than zero or greater than or equal to the length of the category index.

CategoricalEncoding.GetFullRankEncoding<T>(Int32)

Returns the encoding with full rank of the specified position
C#
public Index<T> GetFullRankEncoding<T>(
	int index
)

Parameters

index  Int32
The column index of the encoding.

Type Parameters

T
The element type of the encoding.

Return Value

Index<T>
The category index that encapsulates the encoding for the specified column.

Exceptions

ArgumentOutOfRangeException

index is less than zero or greater than or equal to the length of the category index.

See Also