CategoricalDataSetFromEncodedData Method

Initializes a new instance of the CategoricalDataSet class from previously encoded data.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public static CategoricalDataSet FromEncodedData(
	List<CategoricalVariable> variables,
	DoubleMatrix data
)

Parameters

variables  ListCategoricalVariable
The variables stored in the new dataset.
data  DoubleMatrix
The data stored in the new dataset.

Return Value

CategoricalDataSet
The categorical data set containing the specified encoded data.

Remarks

The constructor set every variable in variables as read only.

Exceptions

ArgumentNullExceptionvariables is null.
-or-
data is null.
ArgumentOutOfRangeExceptiondata has a number of columns other than the count of variables.
-or-
An entry exists in a column of data not equal to any code in the variable corresponding to such column.

See Also