wrapFTest.anova | R Documentation |
Wrap quality statistic of a linear relation from anova.
## S3 method for class 'anova'
wrapFTest(x, ...)
x |
result from stats::anova(stats::lm()) |
... |
extra arguments (not used) |
list of formatted string and fields
d <- data.frame(x1 = c(1,2,3,4,5,6,7,7),
x2 = c(1,0,3,0,5,6,0,7),
y = c(1,1,2,2,3,3,4,4))
model <- lm(y~x1+x2, data=d)
summary(model)
sigr::wrapFTest(model)
anov <- stats::anova(model)
print(anov)
lapply(sigr::wrapFTest(anov),
function(ti) {
sigr::render(ti,
pLargeCutoff= 1,
pSmallCutoff= 0,
statDigits=4,
sigDigits=4,
format='ascii')
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.