ElasticNet_HJBiplot: Elastic Net HJ Biplot

Description Usage Arguments Details Value Author(s) References See Also Examples

View source: R/ElasticNet_HJBiplot.R

Description

This function is a generalization of the Ridge regularization method and the LASSO penalty. Realizes the representation of the SPARSE HJ Biplot through a combination of LASSO and Ridge, on the data matrix. This means that with this function you can eliminate weak variables completely as with the LASSO regularization or contract them to zero as in Ridge.

Usage

1
ElasticNet_HJBiplot(X, Lambda = 1e-04, Alpha = 1e-04, Transform.Data = 'scale')

Arguments

X

array_like;
A data frame with the information to be analyzed

Lambda

float;
Tuning parameter of the LASSO penalty. Higher values lead to sparser components.

Alpha

float;
Tuning parameter of the Ridge shrinkage

Transform.Data

character;
A value indicating whether the columns of X (variables) should be centered or scaled. Options are: "center" that removes the columns means and "scale" that removes the columns means and divide by its standard deviation. Default is "scale".

Details

Algorithm used to perform automatic selection of variables and continuous contraction simultaneously. With this method, the model obtained is simpler and more interpretable. It is a particularly useful method when the number of variables is much greater than the number of observations.

Value

ElasticNet_HJBiplot returns a list containing the following components:

loadings

array_like;
penalized loadings, the loadings of the sparse principal components.

n_ceros

array_like;
number of loadings equal to cero in each component.

coord_ind

array_like;
matrix with the coordinates of individuals.

coord_var

array_like;
matrix with the coordinates of variables.

eigenvalues

array_like;
vector with the eigenvalues penalized.

explvar

array_like;
an vector containing the proportion of variance explained by the first 1, 2,.,k sparse principal components obtained.

Author(s)

Mitzi Cubilla-Montilla, Carlos Torres-Cubilla, Ana Belen Nieto Librero and Purificacion Galindo Villardon

References

See Also

spca, Plot_Biplot

Examples

1
 ElasticNet_HJBiplot(mtcars, Lambda = 0.2, Alpha = 0.1)

SparseBiplots documentation built on Oct. 24, 2021, 9:07 a.m.