R/trellis.R

Defines functions trellis

Documented in trellis

#' Trellis Device
#'
#' Open \code{trellis.device} with black and white defaults.
#'
#' @param color whether colors are displayed.
#' @param \dots passed to \code{trellis.device}.
#'
#' @return \code{NULL}, but a device is opened.
#'
#' @note Shorthand for \code{trellis.device(color=FALSE, ...)}.
#'
#' @importFrom lattice trellis.device
#'
#' @export

trellis <- function(color=FALSE, ...)
{
  trellis.device(color=color, ...)
}
arnima-github/arni documentation built on Oct. 28, 2023, 6:18 p.m.