View source: R/sampleBuilding.R
loadPreviousRes | R Documentation |
Load previous clustering results obtained from previous analyses.
loadPreviousRes(data.sample, noise.cluster = "Noise")
data.sample |
sample object. |
noise.cluster |
character name of the cluster "Noise". |
loadPreviousRes loads previous results obtained from previous analyses.
data.sample updated with previous clustering results.
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=tf, dir.save=dirname(tf))
loadPreviousRes(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.