| MDS-class {dimRed} | R Documentation |
An S4 Class implementing classical scaling (MDS).
MDS tries to maintain distances in high- and low-dimensional space, it has the advantage over PCA that arbitrary distance functions can be used, but it is computationally more demanding.
funA function that does the embedding and returns a dimRedResult object.
stdparsThe 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.
MDS can take the following parameters:
The number of dimensions.
The function to calculate the distance matrix from the input coordinates, defaults to euclidean distances.
Wraps around cmdscale. The implementation also
provides an out-of-sample extension which is not completely
optimized yet.
Other dimensionality reduction methods: DRR-class,
DiffusionMaps-class,
DrL-class, FastICA-class,
FruchtermanReingold-class,
HLLE-class, Isomap-class,
KamadaKawai-class, LLE-class,
PCA-class,
dimRedMethod-class,
kPCA-class, nMDS-class,
tSNE-class
## Not run:
dat <- loadDataSet("3D S Curve")
## Use the S4 Class directly:
mds <- MDS()
emb <- mds@fun(dat, mds@stdpars)
## use embed():
emb2 <- embed(dat, "MDS", d = function(x) exp(stats::dist(x)))
plot(emb, type = "2vars")
plot(emb2, type = "2vars")
## End(Not run)