View source: R/3.3_Factorial_designs_Functions.R
summaryFits | R Documentation |
Function to provide an overview of fitted linear models for objects of class facDesign.c
.
summaryFits(fdo, lmFit = TRUE, curvTest = TRUE)
fdo |
An object of class |
lmFit |
A logical value deciding whether the fits from the object |
curvTest |
A logical value deciding whether curvature tests should be performed or not. By default, |
A summary output of the fitted linear models, which may include the linear fits, curvature tests, and original fit values, depending on the input parameters.
dfac <- facDesign(k = 3)
dfac$.response(data.frame(y = rnorm(8), y2 = rnorm(8)))
dfac$set.fits(lm(y ~ A + B , data = dfac$as.data.frame()))
dfac$set.fits(lm(y2 ~ A + C, data = dfac$as.data.frame()))
summaryFits(dfac)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.