Isomap embedding
An S4 Class implementing the Isomap Algorithm
The Isomap algorithm approximates a manifold using geodesic distances on a k nearest neighbor graph. Then classical scaling is performed on the resulting distance matrix.
fun
A function that does the embedding and returns a dimRedResult object.
stdpars
The standard parameters for the function.
Dimensionality reduction methods are S4 Classes that either be used
directly, in which case they have to be initialized and a full
list with parameters has to be handed to the @fun()
slot, or the method name be passed to the embed function and
parameters can be given to the ...
, in which case
missing parameters will be replaced by the ones in the
@stdpars
.
Isomap can take the following parameters:
The number of nearest neighbors in the graph. Defaults to 50.
The number of embedding dimensions, defaults to 2.
Should the geodesic distance matrix be kept,
if TRUE
, access it as getOtherData(x)$geod
The dimRed package uses its own implementation of Isomap which also
comes with an out of sample extension (known as landmark
Isomap). The default Isomap algorithm scales computationally not
very well, the implementation here uses nn2
for
a faster search of the nearest neighbors. If data are too large it
may be useful to fit a subsample of the data and use the
out-of-sample extension for the other points.
Tenenbaum, J.B., Silva, V. de, Langford, J.C., 2000. A Global Geometric Framework for Nonlinear Dimensionality Reduction. Science 290, 2319-2323. https://doi.org/10.1126/science.290.5500.2319
Other dimensionality reduction methods: AutoEncoder-class
,
DRR-class
,
DiffusionMaps-class
,
DrL-class
, FastICA-class
,
FruchtermanReingold-class
,
HLLE-class
,
KamadaKawai-class
, LLE-class
,
MDS-class
, NNMF-class
,
PCA-class
, PCA_L1-class
,
UMAP-class
,
dimRedMethod-class
,
dimRedMethodList
, kPCA-class
,
nMDS-class
, tSNE-class
dat <- loadDataSet("3D S Curve", n = 500) ## use the S4 Class directly: isomap <- Isomap() emb <- isomap@fun(dat, isomap@stdpars) ## or simpler, use embed(): samp <- sample(nrow(dat), size = 200) emb2 <- embed(dat[samp], "Isomap", .mute = NULL, knn = 10) emb3 <- emb2@apply(dat[-samp]) plot(emb2, type = "2vars") plot(emb3, type = "2vars")
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.