Click or drag to resize
JoinKind Enumeration
This enumeration specifies joining behavior for `Join` method provided by `Series` and `Frame`. Outer join unions the keys (and may introduce missing values), inner join takes the intersection of keys; left and right joins take the keys of the first or the second series/frame. [category:Parameters and results of various operations]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
[SerializableAttribute]
public enum JoinKind
Members
  Member nameDescription
Outer Combine the keys available in both structures, align the values that are available in both of them and mark the remaining values as missing.
Inner Take the intersection of the keys available in both structures and align the values of the two structures. The resulting structure cannot contain missing values.
Left Take the keys of the left (first) structure and align values from the right (second) structure with the keys of the first one. Values for keys not available in the second structure will be missing.
Right Take the keys of the right (second) structure and align values from the left (first) structure with the keys of the second one. Values for keys not available in the first structure will be missing.
See Also