library(prVis)
library(uwot)
library(tsne)
data <- read.csv('abalone.data',header=FALSE)
d <- data[-1]
# without labels
prVis(d[-8])
# with labels
prVis(d,yColumn=8,labels=TRUE, nIntervals=30)
# see continuous colors
colorCode(colorVec=d[,8])
umapResults <- umap(d[-8])
# without labels
plot(umapResults)
# with labels
plot(umapResults, col=d[,8])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.