Learn R Programming

RclusTool (version 0.91)

saveCalcul: Object saving

Description

Save object created after calculation in a csv file.

Usage

saveCalcul(filename.rdata, dat, dir)

Arguments

filename.rdata

character vector specifying the path and the name of the rdata file.

dat

object to save.

dir

character vector specifying the directory where to save the rdata file.

Value

RDS file containing calculation.

Details

saveCalcul saves object created after calculation in a csv file

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())
res.pca <- computePcaSample(x)

tf2 <- tempfile()
saveCalcul(basename(tf2), res.pca$pca, tempdir())


# }

Run the code above in your browser using DataLab