Click or drag to resize
FrameTRowKey, TColumnKeyJoinV Method (TColumnKey, SeriesTRowKey, V)
Performs outer join on data frame and a series. The column key for the joined series must not occur in the current data frame. The rows are automatically aligned and unavailable values are marked as missing. ## Parameters - `colKey` - Column key to be used for the joined series - `series` - Series to be joined with the current data frame [category:Joining, zipping and appending]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public Frame<TRowKey, TColumnKey> Join<V>(
	TColumnKey colKey,
	Series<TRowKey, V> series
)

Parameters

colKey
Type: TColumnKey

[Missing <param name="colKey"/> documentation for "M:Deedle.Frame`2.Join``1(`1,Deedle.Series{`0,``0})"]

series
Type: DeedleSeriesTRowKey, V

[Missing <param name="series"/> documentation for "M:Deedle.Frame`2.Join``1(`1,Deedle.Series{`0,``0})"]

Type Parameters

V

Return Value

Type: FrameTRowKey, TColumnKey

[Missing <returns> documentation for "M:Deedle.Frame`2.Join``1(`1,Deedle.Series{`0,``0})"]

See Also