summaryFits {r6qualitytools} | R Documentation |
summaryFits: Fit Summary
Description
Function to provide an overview of fitted linear models for objects of class facDesign.c
.
Usage
summaryFits(fdo, lmFit = TRUE, curvTest = TRUE)
Arguments
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, |
Value
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.
Examples
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)
[Package r6qualitytools version 1.0.1 Index]