/pkg/R/print_tabplot.R

https://code.google.com/ · R · 10 lines · 4 code · 0 blank · 6 comment · 0 complexity · 956cbb67d79b4074536d3a7443eb298b MD5 · raw file

  1. #' Print a \link{tabplot-object}
  2. #'
  3. #' @param x tabplot object
  4. #' @param ... arguments passed to other methods
  5. #' @export
  6. #' @method print tabplot
  7. print.tabplot <- function(x, ...) {
  8. str(x, max.level=2)
  9. invisible(x)
  10. }