lle: Locally linear embedding main function.

Description Usage Arguments Details Value References Examples

Description

Performs all steps of LLE algorithm by calling the functions of the package.

Usage

1
2
 lle(X, m, k, reg = 2, ss = FALSE, p = 0.5, id = FALSE, 
	    nnk = TRUE, eps = 1, iLLE = FALSE, v = 0.99) 

Arguments

X

matrix object containing the input data.

m

intrinsic dimension of the data. This parameter mainly influences the visualisation of the results. The real intrinsic dimension will be calculated automaticly.

k

number of neighbours. Optimal number can be calculated using the calc_k.

reg

regularisation method. Choise between 1, 2 and 3, by default 2. See details.

ss

a logical values indicating wheather to perform subset selection. See details.

p

amount of data remaining after subset selection. Values between 0 and 1.

id

a logical values indicating wheather to calculate the intrinsic dimension.

nnk

a logical values indicating wheather to use k nearest neighbours method. If false, epsilon environment neighbourhood will be used.

eps

epsilon radius if parameter nnk is FALSE.

iLLE

a logical values indicating wheater to use improved LLE after Wang. See details.

v

threshold parameter for intrinsic dimension. See details.

Details

This is the main function to execute the LLE alogrithm. Given a data matrix with N rows (samples) and n columns (dimensions), the embedded data of dimension m will be calculated.
As described above, the parameter m influences the visualisation of the embedded data. Therefore see plot_lle.
If id is true, the intrinsic dimension of the data is automatically calculated during the execution of the function. Since the intrinsic dimension is calculated for every data point x_i the result of this calculation consists of a vector with length N. The used approach is to calculate the mean and the mode of this vector as represention of the overall intrinsic dimension of the data.
The reg parameter allows the decision between different regularisation methods. As one step of the LLE algorithm, the inverse of the Gram-matrix G\in R^{kxk} has to be calculated. The rank of G equals m which is mostly smaller than k - this is why a regularisation G^{(i)}+r\cdot I should be performed. The calculation of regularisation parameter r can be done using different methods:

There is no theoretical evidence which method is best to use but several empirical analyses have shown that method #2 works the most reliable.
The most time-consuming step of LLE consists in the calculation of the eigenvalues and -vectors of matrix M\in R^{NxN} in the find_coords function. To reduce the dimension of matrix M, which means to reduce the number of samples N in a reliable way, Ref. 1 proposes a subset selection algorithm, which is integrated in the lle function. The amount of data that is kept is represented by parameter p.
Improved LLE (iLLE) is an extension of the LLE algorithm described in Ref. 3. It raises the required amount of memory and time, but makes the algoritm less dependent on the number of neighbours.
Calculating the intrinsic dimension strongly depends on a threshold value v. The best value for this parameter depends on the origin of the data. For very accurate data a value beyond 0.99 is propose, for very raw data a value of 0.9 is proposed. This parameter should be varied if a specific intrinsic dimension is expected and other results are calculated. Higher values of v lead to a higher number of calculate intrinsic dimensions.

Value

A list containing the following variables:

X

input data, can change if subset selection is applied

Y

embedded data

choise

(only if ss==TRUE) index vector of kept data while subset selection

id

(only if id==TRUE) vector of intrinsic dimension for every data point.

References

1) Locally linear embedding / Dick de Ridder and Robert P.W. Duin / Delft University of Technology, Delft, Netherlands / 2002
2) Automated Local Linear Embedding with an application to microarray data / Elisa Grilli / Universita di Bologna, Italy / 2005
3) Improved Locally Linear Embedding Through New Distance Computing / Heyong Wang et al / Sun Yat-sen University, China / 2010

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
	# perform LLE
	data( lle_scurve_data )
	X <- lle_scurve_data
	results <- lle( X=X, m=2, k=12, reg=2, ss=FALSE, id=TRUE, v=0.9 )
	str( results )
	
	# plot results and intrinsic dimension (manually)
	split.screen( c(2,1) )
	screen(1)
	plot( results$Y, main="embedded data", xlab=expression(y[1]), ylab=expression(y[2]) )
	screen(2)
	plot( results$id, main="intrinsic dimension", type="l", xlab=expression(x[i]), ylab="id", lwd=2 )

lle documentation built on May 2, 2019, 2:49 p.m.

Related to lle in lle...