https://github.com/cran/cutpointr
Raw File
Tip revision: 030e7096a6bb7c391a35b49ac6eea87ad3b6027a authored by Christian Thiele on 17 September 2019, 20:30:02 UTC
version 1.0.0
Tip revision: 030e709
plot.multi_cutpointr.R
#' Plotting multi_cutpointr objects is currently not supported
#'
#' You can try plotting the data manually instead.
#'
#' @param x A multi_cutpointr object.
#' @param ... Further arguments.
#'
#' @export
plot.multi_cutpointr <- function(x, ...) {
    stop("Plotting multi_cutpointr objects is not supported.")
    return(invisible(NULL))
}
back to top