Shims for common input/output functions, used to create log reports.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106  | read_excel(file, ...)
fromJSON(json_str, file, ...)
read.dta(file, ...)
read.mtp(file)
read.spss(file, ...)
read.systat(file, ...)
read.sas7bdat(file, ...)
read.csv(file, ...)
read.csv2(file, ...)
read.delim(file, ...)
read.delim2(file, ...)
read.DIF(file, ...)
read.fortran(file, ...)
read.fwf(file, ...)
read.table(file, ...)
read_csv(file, ...)
read_csv2(file, ...)
read_delim(file, ...)
read_file(file, ...)
read_file_raw(file)
read_fwf(file, col_positions, ...)
read_lines(file, ...)
read_lines_raw(file, ...)
read_log(file, ...)
read_table(file, ...)
read_table2(file, ...)
read_tsv(file, ...)
read.dcf(file, ...)
load(file, envir = parent.frame(), verbose = FALSE)
source(file, ...)
read.ftable(file, ...)
tbl(src, ...)
set.seed(n, ...)
write.csv(x, file, ...)
write_csv(x, path, ...)
setwd(dir)
save(
  ...,
  list = character(),
  file = stop("'file' must be specified"),
  ascii = FALSE,
  version = NULL,
  envir = parent.frame(),
  compress = isTRUE(!ascii),
  compression_level,
  eval.promises = TRUE,
  precheck = TRUE
)
ggsave(filename, ...)
library(
  package,
  help,
  pos = 2,
  lib.loc = NULL,
  character.only = FALSE,
  logical.return = FALSE,
  warn.conflicts = TRUE,
  quietly = FALSE,
  verbose = getOption("verbose")
)
require(
  package,
  lib.loc = NULL,
  quietly = FALSE,
  warn.conflicts = TRUE,
  character.only = FALSE
)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.