| UnionBehavior Enumeration |
This enumeration specifies the behavior of `Union` operation on series when there are
overlapping keys in two series that are being unioned. The options include preferring values
from the left/right series or throwing an exception when both values are available.
[category:Parameters and results of various operations]
Namespace:
Deedle
Assembly:
Deedle (in Deedle.dll) Version: 1.2
Syntax [SerializableAttribute]
public enum UnionBehavior
Members
| Member name | Description |
---|
| PreferLeft |
When there are values available in both series that are being unioned, prefer the left value.
|
| PreferRight |
When there are values available in both series that are being unioned, prefer the right value.
|
| Exclusive |
When there are values available in both series that are being unioned, raise an exception.
|
See Also