R/fp.R

Defines functions fp

Documented in fp

fp <- function(x, df = 4, select = NA, alpha = NA, scale=TRUE)
{
# Version 1.0.1	09 dec 03
#
    name <- deparse(substitute(x))
    attr(x, "df") <- df
    attr(x, "alpha") <- alpha
    attr(x, "select") <- select
    attr(x, "scale") <- scale
    attr(x, "name") <- name
    x
}

Try the mfp package in your browser

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

mfp documentation built on May 29, 2024, 9 a.m.