https://github.com/cran/cutpointr
Raw File
Tip revision: 2900dc24d2c5a7d8fdb3f1abb1540fb704e51742 authored by Christian Thiele on 15 February 2021, 13:40:03 UTC
version 1.1.0
Tip revision: 2900dc2
print.multi_cutpointr.R
#' Print multi_cutpointr objects
#'
#' Prints the \code{multi_cutpointr} object with infinite width like a \code{tbl_df}.
#'
#' @source Kirill Müller and Hadley Wickham (2017). tibble: Simple Data Frames.
#'  https://CRAN.R-project.org/package=tibble
#' @param x a multi_cutpointr object.
#' @param n number of rows to print.
#' @param ... further arguments.
#' @export
print.multi_cutpointr <- function(x, n = Inf, ...) {
    print.cutpointr(x, n = n, ...)
}
back to top