View source: R/lm_betaselect_methods.R
getCall.lm_betaselect | R Documentation |
The getCall
-method
for an lm_betaselect
-class or
glm_betaselectd
-class objects.
## S3 method for class 'lm_betaselect'
getCall(
x,
what = c("lm_betaselect", "beta", "standardized", "raw", "unstandardized"),
...
)
## S3 method for class 'glm_betaselect'
getCall(
x,
what = c("glm_betaselect", "beta", "standardized", "raw", "unstandardized"),
...
)
x |
An |
what |
Which call to extract.
For |
... |
Additional arguments. Ignored. |
This works in the same way
the default getCall
-method does for
the outputs of stats::lm()
and stats::glm()
.
It returns the call requested.
Shu Fai Cheung https://orcid.org/0000-0002-9871-9448
lm_betaselect()
,
glm_betaselect()
, and stats::getCall()
data(data_test_mod_cat)
lm_beta_x <- lm_betaselect(dv ~ iv*mod + cov1,
data = data_test_mod_cat,
to_standardize = "iv")
getCall(lm_beta_x)
getCall(lm_beta_x, what = "beta")
getCall(lm_beta_x, what = "raw")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.