public static CategoricalDataSet FromEncodedData(
List<CategoricalVariable> variables,
DoubleMatrix data
)
Public Shared Function FromEncodedData (
variables As List(Of CategoricalVariable),
data As DoubleMatrix
) As CategoricalDataSet
public:
static CategoricalDataSet^ FromEncodedData(
List<CategoricalVariable^>^ variables,
DoubleMatrix^ data
)
static member FromEncodedData :
variables : List<CategoricalVariable> *
data : DoubleMatrix -> CategoricalDataSet
The constructor set every variable in variables as read only.
ArgumentNullException | variables is null. -or- data is null. |
ArgumentOutOfRangeException | data 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. |