CategoricalDataSetItem(IndexCollection, IndexCollection) 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[
	IndexCollection rowIndexes,
	IndexCollection columnIndexes
] { get; }

Parameters

rowIndexes  IndexCollection
The zero-based indexes of the individuals to get.
columnIndexes  IndexCollection
The zero-based indexes of the variables to get.

Property Value

CategoricalDataSet
The categorical dataset containing the specified information.

Implements

IReadOnlyTabularCollectionTValue, TCollectionItemIndexCollection, IndexCollection

Exceptions

ArgumentNullExceptionrowIndexes is null.
-or-
columnIndexes is null.
ArgumentOutOfRangeExceptionrowIndexes contains values which are not valid row indexes for the Data of the CategoricalDataSet.
-or-
columnIndexes contains values which are not valid column indexes for the Data of the CategoricalDataSet.

See Also