Nothing
installReps <- function(repNames = "aData", lib = .libPaths()[1],
type = getOption("pkgType")) {
cat("Using library path: ", lib, "\n", sep = "")
for (repName in repNames) {
packages <- available.packages(contrib.url(repositories()[repName]),
type)
cat(paste("Installing/updating all packages from repository ", repName,
":\n", sep = ""))
print(packages[,"Package"])
install.packages(packages[,"Package"], lib, repositories()[repName],
type=type)
}
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.