View source: R/sampleBuilding.R
purgeSample | R Documentation |
Purge sample from its temporary computing results.
purgeSample(
data.sample,
purge.preprocessing = TRUE,
purge.clustering = TRUE,
user.expert = FALSE
)
data.sample |
sample object |
purge.preprocessing |
boolean: if TRUE (default), the configuration is reset. |
purge.clustering |
boolean: if TRUE (default), the clusterings are reset. |
user.expert |
boolean : if FALSE (default), initial classification feature space is PCA. |
Function to purgeSample from its temporary computing results
data.sample purged data.sample.
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)
x <- computeUnSupervised(x, K=3, method.name="K-means")
x <- purgeSample(x, purge.clustering=TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.