Struct DataSet::DataColumn#

Nested Relationships#

This struct is a nested type of Template Class DataSet.

Struct Documentation#

struct DataColumn#

Column of a data table.

DataColumn represents a column of a data set. It has a type (INPUT, OUTPUT), a Variable and a set of cells

Public Functions

inline DataColumn(ColumnType type_, Variable var_)#

Creates a new column with given ColumnType and Variable.

Parameters:
  • type_ – the ColumnType

  • var_ – the Variable

Public Members

const ColumnType type#

The ColumnType

Variable var#

The header information about this column (name, unit, range)

std::vector<Cell> cells#

An array of the cells of this column