Click or drag to resize
FrameModuleJoinR, C Method
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 `joinAlign`. ## Parameters - `frame1` - First data frame (left) to be used in the joining - `frame2` - Other frame (right) to be joined with `frame1` - `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, merging and zipping]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public static Frame<R, C> Join<R, C>(
	JoinKind kind,
	Frame<R, C> frame1,
	Frame<R, C> frame2
)

Parameters

kind
Type: DeedleJoinKind

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

frame1
Type: DeedleFrameR, C

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

frame2
Type: DeedleFrameR, C

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

Type Parameters

R
C

Return Value

Type: FrameR, C

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

See Also