R/plot.R

Defines functions plot.cdadata plot.nmdsdata plot.pcoadata plot.pcadata

#' @export
plot.pcadata <- function(x, ...) {
  plotPoints(x, ...)
}

#' @export
plot.pcoadata <- function(x, ...) {
  plotPoints(x, ...)
}

#' @export
plot.nmdsdata <- function(x, ...) {
  plotPoints(x, ...)
}

#' @export
plot.cdadata <- function(x, ...) {
  plotPoints(x, ...)
}

Try the MorphoTools2 package in your browser

Any scripts or data that you put into this service are public.

MorphoTools2 documentation built on March 7, 2023, 6:18 p.m.