+.datalist {dMod} | R Documentation |
Direct sum of datasets
Description
Used to merge datasets with overlapping conditions.
Usage
## S3 method for class 'datalist'
data1 + data2
Arguments
data1 |
dataset of class |
data2 |
dataset of class |
Details
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.
Value
Object of class datalist
for the
union of conditions.
Examples
# 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)
[Package dMod version 1.0.2 Index]