wrap.lm | R Documentation |
Performs linear regression analyses. The function delegates
the primary computations to lm
and lm.beta
.
Note that the confidence intervals are computed using a central t distribution.
In the output, R^2 is not adjusted.
wrap.lm(formula, standardized = FALSE)
formula |
The linear model |
standardized |
A logical argument: if |
lm
, lm.beta
## Linear regression with unstandardized coefficients wrap.lm(formula = bdata$DV7 ~ bdata$DV5 * bdata$DV6, standardized = FALSE) # Linear regression with standardized coefficients wrap.lm(formula = bdata$DV7 ~ bdata$DV5 * bdata$DV6, standardized = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.