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
| from pathlib import Path | |
| import pandas as pd | |
| # Path library to elegantly handle paths and file names | |
| data_dir = Path("path/to/files") | |
| # List of file names could be created automatically, but the solution to fully createa list of properly named data frame names | |
| # would be a bit bloated I think | |
| files = [ | |
| "EdStatsCountry.csv", |