You can also use the RnavGraph package to visualize high dimensional data (digits in this case) using graphs as a navigational infrastructure. For more information, please refer to http://www.icesi.edu.co/CRAN/web/packages/RnavGraph/vignettes/RnavGraph.pdf.
Here is a description of how you can use RnavGraph to visualize high dimensional data in a graph:
- First, install and load the RnavGraph and graph packages:
> install.packages("RnavGraph") > source("http://bioconductor.org/biocLite.R") > biocLite("graph") > library(RnavGraph)
- You can then create an NG_data object from the digit data:
> digit.group = rep(c(1:9,0), each = 1100) > digit.ng_data = ng_data(name = "ISO_digits", + data = data.frame(digit.isomap$points), ...