Click or drag to resize

DFStringColumn(String, IDFColumn) Constructor

Constructs a DFStringColumn instance with the given name. Column elements are initialized with data from the given column, after conversion to strings.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DFStringColumn(
	string name,
	IDFColumn data
)

Parameters

name  String
The name of the column.
data  IDFColumn
A column of data.
Exceptions
ExceptionCondition
InvalidArgumentException Thrown if the given data cannot be converted to strings.
Remarks
If the specified column is a DFStringColumn, then this new column will use its missing value setting. Otherwise, the default in StatsSettings.StringMissingValue will be used.
See Also