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 fixest
glance(x, ...)
A tibble::tibble()
with exactly one row and columns:
Adjusted R squared statistic, which is like the R squared statistic except taking degrees of freedom into account.
Akaike's Information Criterion for the model.
Bayesian Information Criterion for the model.
The log-likelihood of the model. [stats::logLik()] may be a useful reference.
Number of observations used.
Like the R squared statistic, but for situations when the R squared statistic isn't defined.
R squared statistic, or the percent of variation explained by the model. Also known as the coefficient of determination.
Estimated standard error of the residuals.
R squared within fixed-effect groups.
A fixest
object returned from any of the fixest
estimators
Additional arguments passed to summary
and confint
. Important
arguments are se
and cluster
. Other arguments are dof
, exact_dof
,
forceCovariance
, and keepBounded
.
See summary.fixest
.
if (FALSE) { # rlang::is_installed("fixest")
# load libraries for models and data
library(fixest)
gravity <-
feols(
log(Euros) ~ log(dist_km) | Origin + Destination + Product + Year, trade
)
tidy(gravity)
glance(gravity)
augment(gravity, trade)
# to get robust or clustered SEs, users can either:
# 1) specify the arguments directly in the `tidy()` call
tidy(gravity, conf.int = TRUE, cluster = c("Product", "Year"))
tidy(gravity, conf.int = TRUE, se = "threeway")
# 2) or, feed tidy() a summary.fixest object that has already accepted
# these arguments
gravity_summ <- summary(gravity, cluster = c("Product", "Year"))
tidy(gravity_summ, conf.int = TRUE)
# approach (1) is preferred.
}
Run the code above in your browser using DataLab