| FrameTRowKey, TColumnKeyJoinV Method (TColumnKey, SeriesTRowKey, V, JoinKind) |
Join data frame and a series. The column key for the joined series must not occur in the
current data frame. The rows are aligned and transformed according to the specified join kind.
## Parameters
- `colKey` - Column key to be used for the joined series
- `series` - Series to be joined with the current data frame
- `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 public Frame<TRowKey, TColumnKey> Join<V>(
TColumnKey colKey,
Series<TRowKey, V> series,
JoinKind kind
)
Parameters
- colKey
- Type: TColumnKey
[Missing <param name="colKey"/> documentation for "M:Deedle.Frame`2.Join``1(`1,Deedle.Series{`0,``0},Deedle.JoinKind)"]
- series
- Type: DeedleSeriesTRowKey, V
[Missing <param name="series"/> documentation for "M:Deedle.Frame`2.Join``1(`1,Deedle.Series{`0,``0},Deedle.JoinKind)"]
- kind
- Type: DeedleJoinKind
[Missing <param name="kind"/> documentation for "M:Deedle.Frame`2.Join``1(`1,Deedle.Series{`0,``0},Deedle.JoinKind)"]
Type Parameters
- V
Return Value
Type:
FrameTRowKey,
TColumnKey[Missing <returns> documentation for "M:Deedle.Frame`2.Join``1(`1,Deedle.Series{`0,``0},Deedle.JoinKind)"]
See Also