knitr::knit_hooks$set( margin = function(before, options, envir) { if (before) par(mgp = c(1.5, .5, 0), bty = "n", plt = c(.105, .97, .13, .97)) else NULL }, prompt = function(before, options, envir) { options(prompt = if (options$engine %in% c("sh", "bash")) "$ " else "> ") }) knitr::opts_chunk$set(margin = TRUE, prompt = TRUE, comment = "", collapse = TRUE, cache = FALSE, autodep = TRUE, dev.args = list(pointsize = 11), fig.height = 3.5, fig.width = 4.24725, fig.retina = 2, fig.align = "center") options(width = 137)
library <- function(...) base::library(..., warn.conflicts = FALSE, quiet = TRUE) require <- function(...) base::require(..., warn.conflicts = FALSE, quiet = TRUE)
l <- "en_US.UTF-8" Sys.setenv(LANGAGE = l) Sys.setlocale(locale = l) Sys.setlocale("LC_MESSAGES", l)
# cleaning the packages space: search_path <- search() pkgs <- c("stats", "graphics", "grDevices", "utils", "datasets", "methods", "base") tdet <- grep("package", search_path[!(search_path %in% paste0("package:", pkgs))], value = TRUE) for(i in tdet) detach(i, unload = TRUE, character.only = TRUE)
Information about the current R session is at the bottom of the document
sessionInfo()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.