R/zzz.R

.onLoad <- function(libname, pkgname) {
  op <- options()
  op.mat <- list(
    mat.sep = ",",
    pprint.rowdots = 4L,
    pprint.coldots = 4L,
    atleast_2d = TRUE
  )
  toset <- !(names(op.mat) %in% names(op))
  if(any(toset)) options(op.mat[toset])
  
  invisible()
}

Try the ramify package in your browser

Any scripts or data that you put into this service are public.

ramify documentation built on May 2, 2019, 5:58 a.m.