Click or drag to resize

DFDateTimeColumn(String, IDFColumn) Constructor

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

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DFDateTimeColumn(
	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 DateTime.
Remarks
If the specified column is a DFDateTimeColumn, then this new column will use its date time format and missing value settings. Otherwise, the defaults in StatsSettings.DateTimeFormat and StatsSettings.DateTimeMissingValue will be used.
See Also