Created
June 23, 2020 09:25
-
-
Save marnixkoops/c87d3fa39595663c7a37ce848be1c753 to your computer and use it in GitHub Desktop.
Read and combine multiple CSV's
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| df = pd.concat( | |
| [ | |
| pd.read_csv(f) | |
| for f in glob.glob("./folder/*.csv") | |
| ], | |
| ignore_index=True, | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment