Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
R
 
 
man
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

lmds

Build Status

lmds: Landmark Multi-Dimensional Scaling

Landmark Multi-Dimensional Scaling (LMDS) is an extension of classical Torgerson MDS. LMDS aims to produce the same dimensionality reduction as cmdscale(), but scale linearly with respect to the number of samples.

library(lmds)
x <- as.matrix(iris[,1:4])
dimred <- lmds(x, ndim = 2)
qplot(dimred[,1], dimred[,2]) + labs(title = "lmds()") + theme_classic()

dimred <- cmdscale(dist(x))
qplot(dimred[,1], dimred[,2]) + labs(title = "cmdscale()") + theme_classic()

Execution time

The execution time of lmds() scales linearly with respect to the dataset size.

Latest changes

Check out news(package = "lmds") or NEWS.md for a full list of changes.

Recent changes in lmds 0.1.0

Initial release of lmds.

  • Landmark Multi-Dimensional Scaling (LMDS) is an extension of classical Torgerson MDS. LMDS aims to produce the same dimensionality reduction as cmdscale(), but scale linearly with respect to the number of samples.

About

No description, website, or topics provided.

Resources

Releases

No releases published

Packages

No packages published

Languages

You can’t perform that action at this time.