--- license: cc-by-4.0 task_categories: - time-series-forecasting - tabular-regression tags: - air-quality - pm25 - forecasting - environment - europe - eea language: - en pretty_name: EEA PM2.5 Air Quality Dataset (Europe) size_categories: - 1M= '2023-01-01'] ``` ### Load with Hugging Face Datasets ```python from datasets import load_dataset dataset = load_dataset("cosuleabianca/eea-pm25-dataset") ``` ### Load Raw Parquet Files ```python import pandas as pd pm25 = pd.read_parquet("PM2.5_filtered.parquet") no2 = pd.read_parquet("NO2_filtered.parquet") ``` ## Train/Test Split | Split | Period | Purpose | |-------|--------|---------| | Train | 2018-01-08 to 2022-12-31 | Model training | | Test | 2023-01-01 to 2024-12-31 | Evaluation | This temporal split simulates real-world forecasting scenarios. ## Regenerating the Dataset If you prefer to regenerate from raw EEA data: ```bash # Clone the repository git clone https://github.com/CosuleaBianca/eea-pm25 cd eea-pm25 # Install dependencies pip install -r requirements.txt # Run data pipeline python dataset_build/src/download_pollutants.py python dataset_build/src/filter_pm25_sites.py python dataset_build/src/process_data.py python dataset_build/src/prepare_ml_dataset.py python dataset_build/src/coverage_only_v6.py python dataset_build/src/dataset_full_realistic_v6.py ``` ## Citation If you use this dataset, please cite: ```bibtex @misc{eea-pm25-dataset, author = {Chisilev Bianca-Iuliana}, title = {EEA PM2.5 Air Quality Dataset for Europe}, year = {2025}, publisher = {Hugging Face}, url = {https://huggingface.co/datasets/cosuleabianca/eea-pm25-dataset} } ``` ## Links - **GitHub Repository**: [Github repository](https://github.com/CosuleaBianca/eea-pm25) - **Pre-trained Models**: [Models](https://huggingface.co/cosuleabianca/eea-pm25) ## License CC BY 4.0 - You are free to share and adapt, with attribution. Original data from the European Environment Agency is provided under the EEA standard reuse policy.