CategoricalDataSetItem(String, String) Property

Gets the information in the CategoricalDataSet corresponding to the specified individuals and variables.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public CategoricalDataSet this[
	string rowIndexes,
	string columnIndexes
] { get; }

Parameters

rowIndexes  String
The zero-based indexes of the individuals to get. The value must by ":", which means that all valid indexes are specified.
columnIndexes  String
The zero-based indexes of the variables to get. The value must by ":", which means that all valid indexes are specified.

Property Value

CategoricalDataSet
The categorical dataset containing the specified information.

Implements

IReadOnlyTabularCollectionTValue, TCollectionItemString, String

Exceptions

ArgumentNullExceptionrowIndexes is null.
-or-
columnIndexes is null.
ArgumentOutOfRangeExceptionrowIndexes is not a string reserved for matrix sub-referencing.
-or-
columnIndexes is not a string reserved for matrix sub-referencing.

See Also