View source: R/caaqs_methods.R
get_caaqs | R Documentation |
Extract results from a caaqs analysis
get_caaqs(x)
get_hourly(x)
get_daily(x)
get_yearly(x)
get_three_yr_rolling(x)
x |
An object of class |
Varies according to the function and the parameter being analyzed:
get_caaqs()
:
caaqs results
get_hourly()
:
so2_1yr, no2_1yr: Hourly values used for annual average
pm2.5_24h, pm2.5_annual, o3, so2_3yr, no2_3yr: None
get_daily()
:
pm2.5_24h, pm2.5_annual: Daily average
o3, so2_3yr, no2_3yr: Daily maximum
so2_1yr, no2_1yr: None
get_yearly()
:
pm2.5_24h: Annual 98th percentile daily average
pm2.5_annual: Annual average of daily averages
o3: Annual 4th highest daily maximum
so2_1yr, no2_1yr: Annual average of hourly values
so2_3yr: Annual 99th percentile of daily maximums
no2_3yr: Annual 98th percentile of daily maximums
get_three_yr_rolling()
pm2.5_24h, pm2.5_annual, o3, so2_3yr, no2_3yr: Three-year rolling average of the yearly value.
so2_1yr, no2_1yr: None
pm <- pm_24h_caaqs(pm25_sample_data, by = c("ems_id", "site"))
get_caaqs(pm)
# Extract intermediate objects:
get_daily(pm)
get_yearly(pm)
get_three_yr_rolling(pm)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.