Click or drag to resize

DataFrameAddRows(Object, DataRowCollection) Method

Adds the data from the given DataRowCollection using the specified row keys.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DataFrame AddRows(
	Object[] rowKeys,
	DataRowCollection rows
)

Parameters

rowKeys  Object
An array of 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, or if the number of rows in the DataRowCollection does not match the number of row keys.
See Also