dataframe-go
dataframe-go copied to clipboard
Appending a dataframe with another one.
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 |
I'll need to create a new ReCap function to implement this feature. You will have to do it manually by Appending.