Click or drag to resize
FrameTRowKey, TColumnKeyJoin Method (FrameTRowKey, TColumnKey, JoinKind)
Join two data frames. The columns of the joined frames must not overlap and their rows are aligned and transformed according to the specified join kind. For more alignment options on ordered frames, see overload taking `lookup`. ## Parameters - `otherFrame` - Other frame (right) to be joined with the current instance (left) - `kind` - Specifies the joining behavior on row indices. Use `JoinKind.Outer` and `JoinKind.Inner` to get the union and intersection of the row keys, respectively. Use `JoinKind.Left` and `JoinKind.Right` to use the current key of the left/right data frame. [category:Joining, zipping and appending]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public Frame<TRowKey, TColumnKey> Join(
	Frame<TRowKey, TColumnKey> otherFrame,
	JoinKind kind
)

Parameters

otherFrame
Type: DeedleFrameTRowKey, TColumnKey

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

kind
Type: DeedleJoinKind

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

Return Value

Type: FrameTRowKey, TColumnKey

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

See Also