fixedGroup {MSstatsPTM} | R Documentation |
fixedGroup
fits and returns a linear model with group
as a
fixed effect.
fixedGroup(df)
df |
A data frame with columns |
An lm
model object.
x <- data.frame( group=rep(c("1", "2"), 3), log2inty=rep(c(10, 12), 3) + rnorm(6) ) fixedGroup(x)