Click or drag to resize
FrameTRowKey, TColumnKeyMerge Method (IEnumerableFrameTRowKey, TColumnKey)
Merge multiple data frames with non-overlapping values. The operation takes the union of columns and rows of the source data frames and then unions the values. An exception is thrown when both data frames define value for a column/row location, but the operation succeeds if one frame has a missing value at the location. Note that the rows are *not* automatically reindexed to avoid overlaps. This means that when a frame has rows indexed with ordinal numbers, you may need to explicitly reindex the row keys before calling append. ## Parameters - `otherFrames` - A collection containing other data frame to be appended (combined) with the current instance [category:Joining, zipping and appending]

Namespace:  Deedle
Assembly:  Deedle (in Deedle.dll) Version: 1.2
Syntax
C#
public Frame<TRowKey, TColumnKey> Merge(
	IEnumerable<Frame<TRowKey, TColumnKey>> otherFrames
)

Parameters

otherFrames
Type: System.Collections.GenericIEnumerableFrameTRowKey, TColumnKey

[Missing <param name="otherFrames"/> documentation for "M:Deedle.Frame`2.Merge(System.Collections.Generic.IEnumerable{Deedle.Frame{`0,`1}})"]

Return Value

Type: FrameTRowKey, TColumnKey

[Missing <returns> documentation for "M:Deedle.Frame`2.Merge(System.Collections.Generic.IEnumerable{Deedle.Frame{`0,`1}})"]

See Also