This dataset, bj_air_quality_tbl_df, is a tibble containing hourly air pollutant and weather measurements from the Dongsi air quality monitoring site in Beijing, China. The data covers 320 complete days of the year 2015 and includes variables such as nitrogen dioxide (NO\(_2\)), ozone (O\(_3\)), temperature, and wind speed.
data(bj_air_quality_tbl_df)A tibble with 7,680 observations and 6 variables:
Date of observation (Date)
Hour of the day (integer, from 0 to 23)
Nitrogen dioxide concentration (numeric)
Ozone concentration (numeric)
Temperature in degrees Celsius (numeric)
Wind speed in meters per second (numeric)
The dataset name has been kept as 'bj_air_quality_tbl_df' to avoid confusion with other datasets in the R ecosystem. This naming convention helps distinguish this dataset as part of the ChinAPIs package and assists users in identifying its specific characteristics. The suffix 'tbl_df' indicates that the dataset is a tibble (a modern form of data frame). The original content has not been modified in any way.