Returns an array of column indices for the given column name. Column names need not be unique, so multiple columns may share a single name.

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

Syntax

C#
public int[] IndicesOfColumn(
	string colName
)
Visual Basic (Declaration)
Public Function IndicesOfColumn ( _
	colName As String _
) As Integer()
Visual C++
public:
array<int>^ IndicesOfColumn(
	String^ colName
)

Parameters

colName
Type: System..::.String

[Missing <param name="colName"/> documentation for "M:CenterSpace.NMath.Stats.DataFrame.IndicesOfColumn(System.String)"]

Return Value

An array of column indices.

See Also