Click or drag to resize

DataOperation Enumeration

Contains constants for controlling if an operation must be executed on the rows or the columns of a data matrix.

Namespace:  Novacta.Analytics
Assembly:  Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.0.0
Syntax
public enum DataOperation
Members
  Member nameValueDescription
OnRows0 The operation is applied separately on each row of the data.
OnColumns1 The operation is applied separately on each column of the data.
Remarks
A DataOperation constant can be used to specify if a given operation must be executed separately on rows or on columns. For example, some methods in class Stat have a parameter of type DataOperation. If constant OnColumns is passed as the corresponding argument, then the method operates separately on the columns of the data and returns a collection of results, one for each column. If, otherwise, the constant OnRows is the argument, then the method operates separately on the rows of the data and returns a collection of row results.
See Also