Delhi Air Quality Dataset
"Air Quality Dataset for Temporal Pollution Analysis (Delhi Region)"
@kaggle.kunshbhatia_delhi_air_quality_dataset
"Air Quality Dataset for Temporal Pollution Analysis (Delhi Region)"
@kaggle.kunshbhatia_delhi_air_quality_dataset
This dataset contains daily records of air pollutant concentrations collected over time, including PM2.5, PM10, NO₂, SO₂, CO, and Ozone. It also logs the Air Quality Index (AQI), along with date (day, month, year) also includes number of holidays and weekday representation. It is ideal for developing models to predict AQI, study pollution patterns, and analyze the effects of temporal or holiday factors on air quality.
Holidays
Days
Parameters unit : All parameters are in (µg/m³) EXCEPT CO , it's unit is (mg/m³)
For missing data
CREATE TABLE final_dataset (
"date" BIGINT,
"month" BIGINT,
"year" BIGINT,
"holidays_count" BIGINT,
"days" BIGINT,
"pm2_5" DOUBLE,
"pm10" DOUBLE,
"no2" DOUBLE,
"so2" DOUBLE,
"co" DOUBLE,
"ozone" DOUBLE,
"aqi" BIGINT
);
Anyone who has the link will be able to view this.