Description Usage Arguments Value Examples
fixedGroupBatch
fits and returns a linear model with log2inty
as response, and group
and batch
as fixed effects.
1 |
df |
A data frame with columns |
An lm
model object.
1 2 3 4 5 6 | x <- data.frame(
batch=rep(c("1", "2"), each=4),
group=rep(c("1", "2"), 4),
log2inty=rep(c(10, 12), 4) + rnorm(8)
)
fixedGroupBatch(x)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.