DataFrame<R, C>.DynamicAssignment Operator

Sets the specified column.

Definition

Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
C# does not support this operator.

Parameters

frame  DataFrame<R, C>
A data frame.
key  C
The key for the column.
column  IVector
The untyped vector to assign to the column.

Remarks

If a column with the specified key already exists in the data frame, the column is replaced with column. If the key does not exist, it is added at the end of the data frame.

See Also