R/freq_table.R

Defines functions print.freq_table

Documented in print.freq_table

#' Print frequency tables
#'
#' S3 method for class 'freq_table'
#'
#' @param x object of class \code{freq.table}
#' @param ... optional arguments to \code{data.frame}
#'
#' @examples
#' # Suppress external output for examples
#' options(frequency_render = FALSE)
#'
#' x <- freq(big5[1])
#' print(x)
#' print(x[[1]])
#'
#' @export
print.freq_table <- function(x, ...){
  print.data.frame(x, ..., row.names = FALSE)
}
wilcoxa/frequencies documentation built on Jan. 22, 2021, 6:40 p.m.