Learn R Programming

RclusTool (version 0.91.61)

addIds2Sampling: Adding Ids To a Sampling

Description

adds some observations to set of sampled observations.

Usage

addIds2Sampling(sampling, toAdd = NULL)

Value

The completed sampling object.

Arguments

sampling

object of a data sample.

toAdd

vector of ids to add.

Details

addIds2Sampling adds some observations to set of sampled observations.

Examples

Run this code
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)

res.sampling <- computeSampling(x$features$initial$x)
completed.sampling <- addIds2Sampling(res.sampling, rownames(x$features$initial$x[1:5,,drop=FALSE]))


Run the code above in your browser using DataLab