follow_up {experDesign} | R Documentation |
Follow up experiments
Description
If an experiment was carried out with some samples and you want to continue with some other samples later on.
Usage
follow_up(
original,
follow_up,
size_subset,
omit = NULL,
old_new = "batch",
iterations = 500
)
Arguments
original |
A |
follow_up |
A |
size_subset |
Numeric value of the number of sample per batch. |
omit |
Name of the columns of the |
old_new |
Name of the column where the batch status will be stored. If it matches the name of a column in original it will be used to find previous batches. |
iterations |
Numeric value of iterations that will be performed. |
Value
A data.frame
with the common columns of data, a new column
old_new
, and a batch column filled with the new batches needed.
See Also
Examples
data(survey, package = "MASS")
survey1 <- survey[1:118, ]
survey2 <- survey[119:nrow(survey), ]
folu <- follow_up(survey1, survey2, size_subset = 50, iterations = 10)
[Package experDesign version 0.4.0 Index]