Nothing
##' @keywords internal
getSystemType <- function(sysname){
if(missing(sysname) || is.null(sysname)){
sysname <- Sys.info()[['sysname']]
}
system.type <- tolower(sysname)
if(system.type=="darwin") system.type <- "linux"
if(!system.type%in%c("linux","windows")){
stop("system.type must be either linux or windows")
}
system.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.