R/HDoutliers.R

Defines functions HDoutliers

Documented in HDoutliers

HDoutliers <-
function( data, maxrows=10000, radius=NULL, alpha=.05, transform = TRUE) 
{
 
# MCA for categorical variables; unitize data

 data <- if (transform) dataTrans(data) else as.matrix(data)

 if (any(is.na(data))) stop("missing values not allowed")

 members <- getHDmembers( data, radius=radius, maxrows = maxrows)

 getHDoutliers( data, members, alpha=alpha, transform=FALSE)
}

Try the HDoutliers package in your browser

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

HDoutliers documentation built on Feb. 11, 2022, 5:10 p.m.