CategoricalEncoding.GetReducedRankEncoding Method

Definition

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

Overload List

GetReducedRankEncoding(Int32) Returns the encoding with reduced rank of the specified position
GetReducedRankEncoding<T>(Int32) Returns the encoding with reduced rank of the specified position

GetReducedRankEncoding(Int32)

Returns the encoding with reduced rank of the specified position
C#
public Index<double> GetReducedRankEncoding(
	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.

GetReducedRankEncoding<T>(Int32)

Returns the encoding with reduced rank of the specified position
C#
public Index<T> GetReducedRankEncoding<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.

See Also