Description Usage Arguments Value
This function retrieves daily averages for the specified county codes or the state. Start and end dates are optional inputs.
1 2 3 4 5 6 7 8 | get_daily_FIPS_averages(
county_FIPS_codes,
measurements,
dailyTemperatures,
coverage = 1,
start_date = NULL,
end_date = NULL
)
|
county_FIPS_codes |
An integer array of county FIPS codes. |
measurements |
Four measurements currently available: Temperature (Average, Minimum, Maximum) and Precipitation. Defaults to c("Temp_avg","Temp_min", "Temp_max", "Precipitation"). |
coverage |
Shows the fraction of data that is not missing. Defaults to 1. |
start_date |
Indicates the start date |
end_date |
Indicates the end date |
Basic summary statistics. @examples get_daily_averages(37001,c("Temp_avg","Temp_min", "Temp_max", "Precipitation")) get_daily_averages(37001,c("Temp_avg","Temp_min", "Temp_max", "Precipitation"), start_date = "2018-09-21", end_date = "2019-09-21")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.