View source: R/sampleClustering.R
saveManualProtos | R Documentation |
Save the profiles and images of prototypes selected manually by user in a scatterplot.
saveManualProtos(data.sample, protos)
data.sample |
list containing features, profiles and clustering results. |
protos |
list of selected prototypes (with index and name). |
saveManualProtos saves the profiles and images of prototypes selected manually by user in a scatterplot
profiles and images of prototypes selected, csv file with detail.
## Not run:
dat <- rbind(matrix(rnorm(100, mean = 0, sd = 0.3), ncol = 2),
matrix(rnorm(100, mean = 2, sd = 0.3), ncol = 2),
matrix(rnorm(100, mean = 4, sd = 0.3), ncol = 2))
tf <- tempfile()
write.table(dat, tf, sep=",", dec=".")
x <- importSample(file.features=tf1, dir.save=dirname(tf))
new.protos <- visualizeSampleClustering(x, selection.mode = "prototypes",
profile.mode="whole sample", wait.close=FALSE)
saveManualProtos(x, new.protos)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.