Nothing
#' Get system information.
#'
#'
#' \code{getSysInfo} returns the OS, hostname, userid and working directory
#' for the current analysis as a data frame
#'
#' @examples
#' getSysInfo()
#'
#' @export
#'
getSysInfo <- function() {
sysinfo <- data.frame( Name = names(Sys.info()),
Value = unname(Sys.info()))
cwd <- data.frame( Name = "Directory", Value = getwd() )
sysinfo <- rbind(sysinfo, cwd)
return(sysinfo)
}
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.