Revision d73e4a2afcfbd6402c11716877e8f7466f309ef4 authored by Dominique Makowski on 22 October 2020, 13:40:02 UTC, committed by cran-robot on 22 October 2020, 13:40:02 UTC
1 parent 1b89ec8
Raw File
print.p_rope.R
#' @export
print.p_rope <- function(x, digits = 2, ...) {
  orig_x <- x
  print.data.frame(x, digits = digits, ...) # TODO
  invisible(orig_x)
}

back to top