Abstraction for Statistical Models
StatsAPI.jl defines an abstract type StatisticalModel
, and an abstract subtype RegressionModel
. They are both extended by StatsBase, and documented here.
Particularly, instances of StatisticalModel
implement the following methods.
StatsAPI.adjr2
— Functionadjr2(model::StatisticalModel)
adjr²(model::StatisticalModel)
Adjusted coefficient of determination (adjusted R-squared).
For linear models, the adjusted R² is defined as $1 - (1 - (1-R^2)(n-1)/(n-p))$, with $R^2$ the coefficient of determination, $n$ the number of observations, and $p$ the number of coefficients (including the intercept). This definition is generally known as the Wherry Formula I.
adjr2(model::StatisticalModel, variant::Symbol)
adjr²(model::StatisticalModel, variant::Symbol)
Adjusted pseudo-coefficient of determination (adjusted pseudo R-squared). For nonlinear models, one of the several pseudo R² definitions must be chosen via variant
. The only currently supported variants are :MacFadden
, defined as $1 - (\log (L) - k)/\log (L0)$ and :devianceratio
, defined as $1 - (D/(n-k))/(D_0/(n-1))$. In these formulas, $L$ is the likelihood of the model, $L0$ that of the null model (the model including only the intercept), $D$ is the deviance of the model, $D_0$ is the deviance of the null model, $n$ is the number of observations (given by nobs
) and $k$ is the number of consumed degrees of freedom of the model (as returned by dof
).
StatsAPI.aic
— Functionaic(model::StatisticalModel)
Akaike's Information Criterion, defined as $-2 \log L + 2k$, with $L$ the likelihood of the model, and k
its number of consumed degrees of freedom (as returned by dof
).
StatsAPI.aicc
— Functionaicc(model::StatisticalModel)
Corrected Akaike's Information Criterion for small sample sizes (Hurvich and Tsai 1989), defined as $-2 \log L + 2k + 2k(k-1)/(n-k-1)$, with $L$ the likelihood of the model, $k$ its number of consumed degrees of freedom (as returned by dof
), and $n$ the number of observations (as returned by nobs
).
StatsAPI.bic
— FunctionStatsAPI.coef
— Functioncoef(model::StatisticalModel)
Return the coefficients of the model.
StatsAPI.coefnames
— Functioncoefnames(model::StatisticalModel)
Return the names of the coefficients.
StatsAPI.coeftable
— Functioncoeftable(model::StatisticalModel; level::Real=0.95)
Return a table with coefficients and related statistics of the model. level
determines the level for confidence intervals (by default, 95%).
The returned CoefTable
object implements the Tables.jl interface, and can be converted e.g. to a DataFrame
via using DataFrames; DataFrame(coeftable(model))
.
StatsAPI.confint
— Functionconfint(model::StatisticalModel; level::Real=0.95)
Compute confidence intervals for coefficients, with confidence level level
(by default 95%).
StatsAPI.deviance
— Functiondeviance(model::StatisticalModel)
Return the deviance of the model relative to a reference, which is usually when applicable the saturated model. It is equal, up to a constant, to $-2 \log L$, with $L$ the likelihood of the model.
StatsAPI.dof
— Functiondof(model::StatisticalModel)
Return the number of degrees of freedom consumed in the model, including when applicable the intercept and the distribution's dispersion parameter.
StatsAPI.fit
— FunctionFit a statistical model.
StatsAPI.fit!
— FunctionFit a statistical model in-place.
StatsAPI.informationmatrix
— Functioninformationmatrix(model::StatisticalModel; expected::Bool = true)
Return the information matrix of the model. By default the Fisher information matrix is returned, while the observed information matrix can be requested with expected = false
.
StatsAPI.isfitted
— Functionisfitted(model::StatisticalModel)
Indicate whether the model has been fitted.
StatsAPI.islinear
— Functionislinear(model::StatisticalModel)
Indicate whether the model is linear.
StatsAPI.loglikelihood
— Functionloglikelihood(model::StatisticalModel)
loglikelihood(model::StatisticalModel, observation)
Return the log-likelihood of the model.
With an observation
argument, return the contribution of observation
to the log-likelihood of model
.
If observation
is a Colon
, return a vector of each observation's contribution to the log-likelihood of the model. In other words, this is the vector of the pointwise log-likelihood contributions.
In general, sum(loglikehood(model, :)) == loglikelihood(model)
.
StatsAPI.mss
— Functionmss(model::StatisticalModel)
Return the model sum of squares.
StatsAPI.nobs
— Functionnobs(model::StatisticalModel)
Return the number of independent observations on which the model was fitted. Be careful when using this information, as the definition of an independent observation may vary depending on the model, on the format used to pass the data, on the sampling plan (if specified), etc.
StatsAPI.nulldeviance
— Functionnulldeviance(model::StatisticalModel)
Return the deviance of the null model, obtained by dropping all independent variables present in model
.
If model
includes an intercept, the null model is the one with only the intercept; otherwise, it is the one without any predictor (not even the intercept).
StatsAPI.nullloglikelihood
— Functionnullloglikelihood(model::StatisticalModel)
Return the log-likelihood of the null model, obtained by dropping all independent variables present in model
.
If model
includes an intercept, the null model is the one with only the intercept; otherwise, it is the one without any predictor (not even the intercept).
StatsAPI.r2
— Functionr2(model::StatisticalModel)
r²(model::StatisticalModel)
Coefficient of determination (R-squared).
For a linear model, the R² is defined as $ESS/TSS$, with $ESS$ the explained sum of squares and $TSS$ the total sum of squares.
r2(model::StatisticalModel, variant::Symbol)
r²(model::StatisticalModel, variant::Symbol)
Pseudo-coefficient of determination (pseudo R-squared).
For nonlinear models, one of several pseudo R² definitions must be chosen via variant
. Supported variants are:
:MacFadden
(a.k.a. likelihood ratio index), defined as $1 - \log (L)/\log (L_0)$;:CoxSnell
, defined as $1 - (L_0/L)^{2/n}$;:Nagelkerke
, defined as $(1 - (L_0/L)^{2/n})/(1 - L_0^{2/n})$.:devianceratio
, defined as $1 - D/D_0$.
In the above formulas, $L$ is the likelihood of the model, $L_0$ is the likelihood of the null model (the model with only an intercept), $D$ is the deviance of the model (from the saturated model), $D_0$ is the deviance of the null model, $n$ is the number of observations (given by nobs
).
The Cox-Snell and the deviance ratio variants both match the classical definition of R² for linear models.
StatsAPI.rss
— Functionrss(model::StatisticalModel)
Return the residual sum of squares of the model.
StatsAPI.score
— Functionscore(model::StatisticalModel)
Return the score of the model, that is the gradient of the log-likelihood with respect to the coefficients.
StatsAPI.stderror
— Functionstderror(model::StatisticalModel)
Return the standard errors for the coefficients of the model.
StatsAPI.vcov
— Functionvcov(model::StatisticalModel)
Return the variance-covariance matrix for the coefficients of the model.
StatsAPI.weights
— Functionweights(model::StatisticalModel)
Return the weights used in the model.
RegressionModel
extends StatisticalModel
by implementing the following additional methods.
StatsAPI.crossmodelmatrix
— Functioncrossmodelmatrix(model::RegressionModel)
Return X'X
where X
is the model matrix of model
. This function will return a pre-computed matrix stored in model
if possible.
StatsAPI.dof_residual
— Functiondof_residual(model::RegressionModel)
Return the residual degrees of freedom of the model.
StatsAPI.fitted
— Functionfitted(model::RegressionModel)
Return the fitted values of the model.
StatsAPI.leverage
— Functionleverage(model::RegressionModel)
Return the diagonal of the projection matrix of the model.
StatsAPI.cooksdistance
— Functioncooksdistance(model::RegressionModel)
Compute Cook's distance for each observation in linear model model
, giving an estimate of the influence of each data point.
StatsAPI.meanresponse
— Functionmeanresponse(model::RegressionModel)
Return the mean of the response.
StatsAPI.modelmatrix
— Functionmodelmatrix(model::RegressionModel)
Return the model matrix (a.k.a. the design matrix).
StatsAPI.response
— Functionresponse(model::RegressionModel)
Return the model response (a.k.a. the dependent variable).
StatsAPI.responsename
— Functionresponsename(model::RegressionModel)
Return the name of the model response (a.k.a. the dependent variable).
StatsAPI.predict
— Functionpredict(model::RegressionModel, [newX])
Form the predicted response of model
. An object with new covariate values newX
can be supplied, which should have the same type and structure as that used to fit model
; e.g. for a GLM it would generally be a DataFrame
with the same variable names as the original predictors.
StatsAPI.predict!
— Functionpredict!
In-place version of predict
.
StatsAPI.residuals
— Functionresiduals(model::RegressionModel)
Return the residuals of the model.
An exception type is provided to signal convergence failures during model estimation:
StatsBase.ConvergenceException
— TypeConvergenceException(iters::Int, lastchange::Real=NaN, tol::Real=NaN)
The fitting procedure failed to converge in iters
number of iterations, i.e. the lastchange
between the cost of the final and penultimate iteration was greater than specified tolerance tol
.