rocketlaunchr / dataframe-go

DataFrames for Go: For statistics, machine-learning, and data manipulation/exploration
Other
1.19k stars 95 forks source link

Appending a dataframe with another one. #53

Open padchin opened 3 years ago

padchin commented 3 years ago
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
pjebs commented 3 years ago

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