Dataframe.concat(...)
This function adds more rows to the dataframe, ie. pushes more rows at the end of the dataframe.
Both dataframes must have the same labels, ie. dataframe must have the same type
TParameter
Dataframe- of the same typeT, whereTis your type
Returns
Dataframe- of typeT
The example below concatenates two dataframe with the same type; where df and new_df are both dataframes of type T
const concat: Dataframe<T> = df.concat(new_df);