IDataSeries Table.CreateAndAddColumn(VariableType variableType, VariableClassification variableClassification, IEnumerable data, String unit, String name)
Creates and adds a new column (data series) to the table.
If `data` is provided, the number of rows (length of `data`) must be identical to the
number of rows already in the table. If `data` is not provided, the returned series will
have the same number of rows as the table with default-initialized values. If there are
no rows in the table and `data` is provided, this will initialize the number of rows in
the table to the length of `data`.
Examples
Return Value
Type: IDataSeries
The corresponding to the new column.