ensure <- function(pkgname) {
if (!require(pkgname, character.only=TRUE)) {
install.packages(pkgname, repos="http://cran.us.r-project.org", dep=TRUE)
}
}
# Requires libhiredis-dev (sudo apt install libhiredis-dev)
ensure("redux")
ensure("mongolite")
ensure("urltools")
ensure("jsonlite")
ensure("uuid")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.