 | DataFrameAddRow(Object, IDictionary) Method |
Adds a row to this data frame from the given dictionary.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic DataFrame AddRow(
Object rowKey,
IDictionary dic
)
Public Function AddRow (
rowKey As Object,
dic As IDictionary
) As DataFrame
public:
DataFrame^ AddRow(
Object^ rowKey,
IDictionary^ dic
)
member AddRow :
rowKey : Object *
dic : IDictionary -> DataFrame
Parameters
- rowKey Object
- A row key.
- dic IDictionary
- A dictionary in which the keys are names of the columns.
Return Value
DataFrameThis data frame.
ExceptionsException | Condition |
---|
MismatchedSizeException | Thrown if the number of objects does
not equal the number of columns in this data frame |
InvalidArgumentException | Thrown if the type of the given row key
does not match the type of any existing row keys. |
See Also