Click or drag to resize

DataFrameAddRow(Object, Object) Method

Adds a row to this data frame.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DataFrame AddRow(
	Object rowKey,
	params Object[] c
)

Parameters

rowKey  Object
A row key.
c  Object
An array of row data.

Return Value

DataFrame
This data frame.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the number of objects does not equal the number of columns in this data frame.
InvalidArgumentExceptionThrown if the type of the given row key does not match the type of any existing row keys.
See Also