R/print.scplot.R

Defines functions print.scplot

Documented in print.scplot

#' print.scplot
#'
#' @param x An scplot object.
#' @param ... Not implemented.
#'
#' @return Calls [as_ggplot()] to create a ggplot2 argument and prints it.
#' @keywords internal
#' @export

print.scplot <- function(x, ...) {
  args <- list(...)
  print(as_ggplot(x))
}
jazznbass/scplot documentation built on April 17, 2025, 3:05 p.m.