I have a bunch of large CSVs and they all contain the exact same columns and I need to combine them all into a single CSV, so basically appending all the data from each data frame underneath the next. Like this
Table 1
Prop_ID | State | Pasture | Soy | Corn |
---|---|---|---|---|
1 | WI | 20 | 45 | 75 |
2 | MI | 10 | 80 | 122 |
Table 2
Prop_ID | State | Pasture | Soy | Corn |
---|---|---|---|---|
3 | MN | 152 | 0 | 15 |
4 | IL | 0 | 10 | 99 |
Output table
Prop_ID | State | Pasture | Soy | Corn |
---|---|---|---|---|
1 | WI | 20 | 45 | 75 |
2 | MI | 10 | 80 | 122 |
3 | MN | 152 | 0 | 15 |
4 | IL | 0 | 10 | 99 |
I have more than 2 tables to do this with, any help would be appreciated. Thanks