Appends two data frames.
Namespace:
Extreme.DataAnalysis.Linq
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static DataFrame<R, C> Concat<R, C>(
this DataFrame<R, C> frame,
DataFrame<R, C> second
)
<ExtensionAttribute>
Public Shared Function Concat(Of R, C) (
frame As DataFrame(Of R, C),
second As DataFrame(Of R, C)
) As DataFrame(Of R, C)
public:
[ExtensionAttribute]
generic<typename R, typename C>
static DataFrame<R, C>^ Concat(
DataFrame<R, C>^ frame,
DataFrame<R, C>^ second
)
[<ExtensionAttribute>]
static member Concat :
frame : DataFrame<'R, 'C> *
second : DataFrame<'R, 'C> -> DataFrame<'R, 'C>
Parameters
- frame
- Type: Extreme.DataAnalysisDataFrameR, C
A data frame. - second
- Type: Extreme.DataAnalysisDataFrameR, C
The data frame to append.
Type Parameters
- R
- The element type of the row index of the data frame.
- C
- The element type of the column index of the data frame.
Return Value
Type:
DataFrameR,
CA new data frame that is the concatenation of
frame and
second.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
DataFrameR,
C. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
Reference