Adds a row to this data frame using default row key (this.Rows + 1).
Namespace:
CenterSpace.NMath.StatsAssembly: NMathStats (in NMathStats.dll) Version: 3.4.0.0
Syntax
| C# |
|---|
public DataFrame AddRow( ICollection c ) |
| Visual Basic (Declaration) |
|---|
Public Function AddRow ( _ c As ICollection _ ) As DataFrame |
| Visual C++ |
|---|
public: DataFrame^ AddRow( ICollection^ c ) |
Parameters
- c
- Type: System.Collections..::.ICollection
A collection of row data.
Return Value
This data frame.
Exceptions
| Exception | Condition |
|---|---|
| CenterSpace.NMath.Core..::.MismatchedSizeException | Thrown if the number of objects does not equal the number of columns in this data frame |
| CenterSpace.NMath.Core..::.InvalidArgumentException | Thrown if the type of the given row key does not match the type of any existing row keys. |