Click or drag to resize
FrameModuleMergeR, C Method
Append two 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 - `frame1` - First of the two frames to be merged (combined) - `frame2` - The other frame to be merged (combined) with the first instance [category:Joining, merging and zipping]

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

Parameters

frame1
Type: DeedleFrameR, C

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

frame2
Type: DeedleFrameR, C

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

Type Parameters

R
C

Return Value

Type: FrameR, C

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

See Also