R/view.R

Defines functions view

Documented in view

### Function view uses DT::datatable as a viewer and sends options to datatable.
view <- function(x, ...){
  if(is.vector(x))
    x  <- data.frame(x)
  datatable(x, ...)
}

Try the CUFF package in your browser

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

CUFF documentation built on March 31, 2023, 6:46 p.m.