R/print.vlda.R

Defines functions print.vlda

Documented in print.vlda

#' Print a vlda object
#'
#' Print method for vlda
#'
#' @param x A vlda object to print
#' @param ... Other arguments not used by this method
#' @method print vlda
#' @aliases print.vlda
#' @export
#' @rdname print.vlda
#' @return Invisibly returns the result of vlda, which is a list of components that contain the data itself, information etc.
print.vlda <- function(x, ...){
  hidden <- attr(x, "hidden")

  print(x[!names(x) %in% hidden])

}

Try the vlda package in your browser

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

vlda documentation built on July 1, 2020, 10:15 p.m.