Click or drag to resize

DataFrameInsertColumn Method

Inserts the given column at the given column index.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DataFrame InsertColumn(
	int colIndex,
	IDFColumn col
)

Parameters

colIndex  Int32
A column index.
col  IDFColumn
The column to insert.

Return Value

DataFrame
This data frame.
Exceptions
ExceptionCondition
MismatchedSizeExceptionThrown if the given column is not the same length as the other columns in this data frame.
See Also