- A curiousity timeline
- Some COVID-19 information
- A little R and some visualisations
- Some modelling and estimation
March 7, 2020
\(R_0\): The number of people, on average, that one sick person will infect. cboettig gist
6 already known to infect humans:
hCoV-229E
MERS-CoV 2012 Middle East (ongoing)
Easy numbers to remember:
library(scales) scale_y_continuous(label = comma)
github.com/CSSEGISandData/COVID-19
Tidy-tears
ggplot() + scale_y_log10()
smooth.spline(data$date, data$confirmed, spar = .5)
ggplot() + stat_smooth(method = 'lm')
Lag : 5 days from confirmed -> deceased
Mortality rate: 3.7%
library(sf) geom_sf(data = china_provinces)
Express the totals on an axis.
Drop the geography. Rather split on countries.
Focus on Top-n elements.
Perhaps scale the totals?
Build a “typical” growth line.
Shift each trajectory by country to “best-fit” existing trends.