View source: R/combined_us_cases_data.R
combined_us_cases_data | R Documentation |
This is a convenience function to combine results from sources providing US state-level datasets. A primary use case is to provide fodder for comparison and quality control over all the available datasets.
combined_us_cases_data()
a data.frame
Sean Davis seandavi@gmail.com
Other case-tracking:
align_to_baseline()
,
beoutbreakprepared_data()
,
bulk_estimate_Rt()
,
coronadatascraper_data()
,
covidtracker_data()
,
ecdc_data()
,
estimate_Rt()
,
jhu_data()
,
nytimes_county_data()
,
owid_data()
,
plot_epicurve()
,
test_and_trace_data()
,
usa_facts_data()
,
who_cases()
cus = combined_us_cases_data() head(cus) unique(cus$dataset) library(ggplot2) plot_epicurve(cus, filter_expression = state == 'GA',color='dataset') + ggtitle('Cumulative confirmed cases in Georgia') plot_epicurve(cus, filter_expression = state == 'GA' & incidence>10, case_column='incidence', color='dataset', log=FALSE) + ggtitle('Daily confirmed cases in Georgia') + geom_smooth(alpha=0.25)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.