Create interactive visualisations of Rt estimates using D3.js (Gibbs et al. (2020)).
Developed primarily targeting Rt estimates generated by the EpiNow2
package, RtD3 aims to make simple, beautiful visualisations that help
researchers explore their results and share them with
others.RtD3
provides an interface for the JavaScript
library rt_vis.
Install from CRAN with:
install.packages("RtD3")
Install the stable development version of the package using {drat}
:
install.packages("drat")
:::add("epiforecasts")
dratinstall.packages("RtD3")
Install the unstable development version of the package with:
::install_github("epiforecasts/RtD3") remotes
Estimates are available from epiforecasts covid-rt-estimates
in the format expected by this package. Use the helper function
readInEpiNow2
to generate the summary widget with existing
estimates.
<- list("Cases" = readInEpiNow2(
rtData path = "https://raw.githubusercontent.com/epiforecasts/covid-rt-estimates/master/national/cases/summary",
region_var = "country"))
summaryWidget(rtData = rtData)
Optionally, a map can be included using data from the
rnaturalearth
package.
= rnaturalearth::ne_countries(returnclass = 'sf')
geoData
summaryWidget(geoData = geoData, rtData = rtData)
Comments and contributions to this package are welcome. To record a problem with the package, please create an issue on Github.