Description Usage Arguments Details Value Examples
Used to merge datasets with overlapping conditions.
1 2 | ## S3 method for class 'datalist'
data1 + data2
|
data1 |
dataset of class |
data2 |
dataset of class |
Each data list contains data frames for a number of conditions. The direct sum of datalist is meant as merging the two data lists and returning the overarching datalist.
Object of class datalist
for the
union of conditions.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# Start with two data frames
mydata1 <- data.frame(
name = "A",
time = 0:1,
value = 1:2,
sigma = .1,
compound = c("DEM", "APAP"),
dose = "0.1"
)
mydata2 <- data.frame(
name = "A",
time = 0:1,
value = 3:4,
sigma = .1,
compound = c("APAP", "DCF"),
dose = "0.1"
)
# Create datalists from dataframes
data1 <- as.datalist(mydata1, split.by = c("compound", "dose"))
data2 <- as.datalist(mydata2, split.by = c("compound", "dose"))
# Direct sum of datalists
data <- data1 + data2
print(data)
# Check the condition.grid (if available)
condition.grid <- attr(data, "condition.grid")
print(condition.grid)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.