DataOperation Enumeration
Contains constants for controlling if an operation must be executed
on the rows or the columns of a data matrix.
Namespace: Novacta.AnalyticsAssembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
public enum DataOperation
Public Enumeration DataOperation
public enum class DataOperation
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.
OnRows | 0 |
The operation is applied separately on each row of the data.
|
OnColumns | 1 |
The operation is applied separately on each column of the data.
|