| tidyEstimates {MSstatsPTM} | R Documentation |
tidyEstimates extracts the estimate of group effect from a fitted
linear model.
tidyEstimates(fit, data)
fit |
An |
data |
A data frame used to derive the model object |
A data frame restoring the estimated model parameters.
x <- data.frame(
group=rep(c("1", "2"), 3),
log2inty=rep(c(10, 12), 3) + rnorm(6)
)
fit <- fitLinearModel(x)
tidyEstimates(fit, x)