R/print_ucr_base_tab.R

Defines functions print.ucr.base.tab

Documented in print.ucr.base.tab

##' @title Print a ucr.base.tab object
##' @description Format the object with base_tab_exp before printing
##' @param x A ucr.base.tab object or the 'tab' component of that list.
##' @param ... arguments passed to print
##' @param replacer Replace the LaTeX in first column with this
##' @author Henrik Renlund
##' @export
print.ucr.base.tab <- function(x, ..., replacer = " -:- "){
   y <- base_tab_exp(x, replacer = replacer)
   print(y, ...)
}
renlund/ucR documentation built on March 25, 2023, 10:10 a.m.