Click or drag to resize

DataFrameAddRow(DataRow) Method

Adds the data from the given DataRow to this data frame.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DataFrame AddRow(
	DataRow row
)

Parameters

row  DataRow
A DataRow.

Return Value

DataFrame
This data frame.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the number of columns in the DataRow does not match number of columns in this data frame.
Remarks
The row key is set to rowIndex + 1.
See Also