 | DataFrameAddRows(Object, DataRowCollection) Method |
Adds the data from the given DataRowCollection using the specified row keys.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic DataFrame AddRows(
Object[] rowKeys,
DataRowCollection rows
)
Public Function AddRows (
rowKeys As Object(),
rows As DataRowCollection
) As DataFrame
public:
DataFrame^ AddRows(
array<Object^>^ rowKeys,
DataRowCollection^ rows
)
member AddRows :
rowKeys : Object[] *
rows : DataRowCollection -> DataFrame
Parameters
- rowKeys Object
- An array of row keys.
- rows DataRowCollection
- A DataRowCollection.
Return Value
DataFrameThis data frame.
ExceptionsException | Condition |
---|
MismatchedSizeException | Thrown 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