R/ordutils.R

Defines functions calibrate scores varplot loadings rgl ellip density thull chullord hilight specid plotid surf

Documented in calibrate chullord density ellip hilight loadings plotid scores specid surf thull varplot

surf <- function(ord,...)
{
    UseMethod("surf")
}

plotid <- function(ord,...)
{
    UseMethod("plotid")
}

specid <- function(ord,...)
{
    UseMethod("specid")
}

hilight <- function(ord, ...)
{
    UseMethod("hilight")
}

chullord <- function(ord, ...)
{
    UseMethod("chullord")
}

thull <- function(ord, ...)
{
    UseMethod("thull")
}

density <- function(ord, ...)
{
    UseMethod("density")
}

ellip <- function(ord, ...)
{
    UseMethod("ellip")
}

rgl <- function(ord, ...)
{  
  UseMethod("rgl")
}

loadings <- function(x, ...)
{
  UseMethod("loadings")
}
varplot <- function(x, ...)
{
    UseMethod("varplot")
}

scores <- function(x, ...)
{
  UseMethod("scores")
}

calibrate <- function(ord, ...)
{
    UseMethod("calibrate")
}

Try the labdsv package in your browser

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

labdsv documentation built on April 10, 2023, 5:08 p.m.