 | DataFrameInsertColumn Method |
Inserts the given column at the given column index.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic DataFrame InsertColumn(
int colIndex,
IDFColumn col
)
Public Function InsertColumn (
colIndex As Integer,
col As IDFColumn
) As DataFrame
public:
DataFrame^ InsertColumn(
int colIndex,
IDFColumn^ col
)
member InsertColumn :
colIndex : int *
col : IDFColumn -> DataFrame
Parameters
- colIndex Int32
- A column index.
- col IDFColumn
- The column to insert.
Return Value
DataFrameThis data frame.
ExceptionsException | Condition |
---|
MismatchedSizeException | Thrown if the given column is
not the same length as the other columns in this data frame. |
See Also