 | DataFrameAddRow(DataRow) Method |
Adds the data from the given DataRow to this data frame.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic DataFrame AddRow(
DataRow row
)
Public Function AddRow (
row As DataRow
) As DataFrame
public:
DataFrame^ AddRow(
DataRow^ row
)
member AddRow :
row : DataRow -> DataFrame
Parameters
- row DataRow
- A DataRow.
Return Value
DataFrameThis data frame.
ExceptionsException | Condition |
---|
MismatchedSizeException | Thrown if the number of columns
in the DataRow does not match number of columns in this data frame. |
Remarks
The row key is set to rowIndex + 1.
See Also