dataframe-go icon indicating copy to clipboard operation
dataframe-go copied to clipboard

Appending a dataframe with another one.

Open padchin opened this issue 4 years ago • 1 comments

Hello. Is there simple way to join two dataframes of same dimension? Something like df = append(df, another_df) or similar.

Name1 Name2
0 D E
1 F G

and

Name1 Name2
2 D E
3 F G

=

Name1 Name2
0 D E
1 F G
2 D E
3 F G

padchin avatar Feb 25 '21 20:02 padchin

I'll need to create a new ReCap function to implement this feature. You will have to do it manually by Appending.

pjebs avatar Feb 27 '21 07:02 pjebs