https://github.com/cran/cutpointr
Raw File
Tip revision: 4408233eb8624dea85ecf18e86d50c296165c3f2 authored by Christian Thiele on 13 April 2022, 17:12:29 UTC
version 1.1.2
Tip revision: 4408233
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