Click or drag to resize
FrameTRowKey, TColumnKeyAddColumnV Method (TColumnKey, IEnumerableV)
Mutates the data frame by adding an additional data series as a new column with the specified column key. The sequence is aligned to the data frame based on ordering. If it is longer, it is trimmed and if it is shorter, missing values will be added. ## Parameters - `column` - A key (or name) for the newly added column - `series` - A sequence of values to be added [category:Series operations]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public void AddColumn<V>(
	TColumnKey column,
	IEnumerable<V> series
)

Parameters

column
Type: TColumnKey

[Missing <param name="column"/> documentation for "M:Deedle.Frame`2.AddColumn``1(`1,System.Collections.Generic.IEnumerable{``0})"]

series
Type: System.Collections.GenericIEnumerableV

[Missing <param name="series"/> documentation for "M:Deedle.Frame`2.AddColumn``1(`1,System.Collections.Generic.IEnumerable{``0})"]

Type Parameters

V
See Also