View source: R/quantreg-rq-tidiers.R
glance.rq | R Documentation |
Glance accepts a model object and returns a tibble::tibble()
with exactly one row of model summaries. The summaries are typically
goodness of fit measures, p-values for hypothesis tests on residuals,
or model convergence information.
Glance never returns information from the original call to the modeling function. This includes the name of the modeling function or any arguments passed to the modeling function.
Glance does not calculate summary measures. Rather, it farms out these
computations to appropriate methods and gathers the results together.
Sometimes a goodness of fit measure will be undefined. In these cases
the measure will be reported as NA
.
Glance returns the same number of columns regardless of whether the
model matrix is rank-deficient or not. If so, entries in columns
that no longer have a well-defined value are filled in with an NA
of the appropriate type.
## S3 method for class 'rq'
glance(x, ...)
x |
An |
... |
Additional arguments. Not used. Needed to match generic
signature only. Cautionary note: Misspelled arguments will be
absorbed in
|
Only models with a single tau
value may be passed.
For multiple values, please use a purrr::map()
workflow instead, e.g.
taus %>% map(function(tau_val) rq(y ~ x, tau = tau_val)) %>% map_dfr(glance)
A tibble::tibble()
with exactly one row and columns:
AIC |
Akaike's Information Criterion for the model. |
BIC |
Bayesian Information Criterion for the model. |
df.residual |
Residual degrees of freedom. |
logLik |
The log-likelihood of the model. [stats::logLik()] may be a useful reference. |
tau |
Quantile. |
glance()
, quantreg::rq()
Other quantreg tidiers:
augment.nlrq()
,
augment.rq()
,
augment.rqs()
,
glance.nlrq()
,
tidy.nlrq()
,
tidy.rq()
,
tidy.rqs()
# load modeling library and data
library(quantreg)
data(stackloss)
# median (l1) regression fit for the stackloss data.
mod1 <- rq(stack.loss ~ stack.x, .5)
# weighted sample median
mod2 <- rq(rnorm(50) ~ 1, weights = runif(50))
# summarize model fit with tidiers
tidy(mod1)
glance(mod1)
augment(mod1)
tidy(mod2)
glance(mod2)
augment(mod2)
# varying tau to generate an rqs object
mod3 <- rq(stack.loss ~ stack.x, tau = c(.25, .5))
tidy(mod3)
augment(mod3)
# glance cannot handle rqs objects like `mod3`--use a purrr
# `map`-based workflow instead
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.