Adds the data from the given DataRowCollection.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public DataFrame AddRows(
	DataRowCollection rows
)
Visual Basic (Declaration)
Public Function AddRows ( _
	rows As DataRowCollection _
) As DataFrame
Visual C++
public:
DataFrame^ AddRows(
	DataRowCollection^ rows
)

Parameters

rows
Type: System.Data..::.DataRowCollection
A DataRowCollection.

Return Value

This data frame.

Remarks

The row key are set to rowIndex + 1.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.MismatchedSizeExceptionThrown if the number of columns in the DataRowCollection does not match number of columns in this data frame.

See Also