Hello. I have been struggling on finding a non-additive effect of combined two drugs. So, I have a dataframe defining treatment of my samples as follows:
```
# Define experimental conditions for each sample
condition <- factor(c(rep("A",3),rep("B",3),rep("C",3),rep("D",3),rep("E",3)))
batch <- factor(rep(1:3,5))
coldata <- data.frame(row.names=colnames(countdata),conditi…
updated 4.5 years ago • TJ