Sets the row keys in this data frame to the elements of the given collection.

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

Syntax

C#
public DataFrame SetRowKeys(
	ICollection c
)
Visual Basic (Declaration)
Public Function SetRowKeys ( _
	c As ICollection _
) As DataFrame
Visual C++
public:
DataFrame^ SetRowKeys(
	ICollection^ c
)

Parameters

c
Type: System.Collections..::.ICollection
A collection of row keys.

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.MismatchedSizeExceptionThrown if the number of elements in the collection does not equal the number of rows in this data frame.

See Also