https://github.com/cran/cutpointr
Revision 2900dc24d2c5a7d8fdb3f1abb1540fb704e51742 authored by Christian Thiele on 15 February 2021, 13:40:03 UTC, committed by cran-robot on 15 February 2021, 13:40:03 UTC
1 parent d461e55
Raw File
Tip revision: 2900dc24d2c5a7d8fdb3f1abb1540fb704e51742 authored by Christian Thiele on 15 February 2021, 13:40:03 UTC
version 1.1.0
Tip revision: 2900dc2
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