# init.R
#install packages if not already installed
#
my_packages = c("MetaViral")#add packages
install_if_missing = function(p) {
if (p %in% rownames(installed.packages()) == FALSE) {
install.packages(p)
}
}
invisible(sapply(my_packages, install_if_missing))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.