https://github.com/cran/cutpointr
Revision 72e43ccd243bf013af304abb3f0083dc3ad90527 authored by Christian Thiele on 18 December 2019, 14:00:08 UTC, committed by cran-robot on 18 December 2019, 14:00:08 UTC
1 parent 030e709
Raw File
Tip revision: 72e43ccd243bf013af304abb3f0083dc3ad90527 authored by Christian Thiele on 18 December 2019, 14:00:08 UTC
version 1.0.1
Tip revision: 72e43cc
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