Click or drag to resize

DataFrameAddRows(Int32, DataRowCollection) Method

Adds the data from the given DataRow using the specified column as row keys.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DataFrame AddRows(
	int keyColumn,
	DataRowCollection rows
)

Parameters

keyColumn  Int32
A column containing row keys.
rows  DataRowCollection
A DataRowCollection.

Return Value

DataFrame
This data frame.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the number of columns in the DataRowCollection does not match number of columns in this data frame.
See Also