Adds a row to this data frame using default row key (this.Rows + 1).

Namespace:  CenterSpace.NMath.Stats
Assembly:  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

ExceptionCondition
CenterSpace.NMath.Core..::.MismatchedSizeExceptionThrown if the number of objects does not equal the number of columns in this data frame
CenterSpace.NMath.Core..::.InvalidArgumentExceptionThrown if the type of the given row key does not match the type of any existing row keys.

See Also