Learn R Programming

RclusTool (version 0.91)

saveManualProtos: Manual prototypes saving

Description

Save the profiles and images of prototypes selected manually by user in a scatterplot.

Usage

saveManualProtos(data.sample, protos)

Arguments

data.sample

list containing features, profiles and clustering results.

protos

list of selected prototypes (with index and name).

Value

profiles and images of prototypes selected, csv file with detail.

Details

saveManualProtos saves the profiles and images of prototypes selected manually by user in a scatterplot

Examples

Run this code
# 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))
tf1 <- tempfile()
write.table(dat, tf1, sep=",", dec=".")

x <- importSample(file.features=tf1, dir.save=tempdir())

new.protos <- visualizeSampleClustering(x, selection.mode = "prototypes", 
			 profile.mode="whole sample", wait.close=FALSE)
saveManualProtos(x, new.protos)


# }

Run the code above in your browser using DataLab