Click or drag to resize

DataFrameAddRow(Object, IDictionary) Method

Adds a row to this data frame from the given dictionary.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DataFrame AddRow(
	Object rowKey,
	IDictionary dic
)

Parameters

rowKey  Object
A row key.
dic  IDictionary
A dictionary in which the keys are names of the columns.

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