Statistical Model Analysis
When fitting models to data, it is often useful to analyze how well the model fits the data and how well the fitting meets the assumptions of the model. For a number of common statistical models, this is accomplished in
Mathematica by way of fitting functions that construct
FittedModel objects.
Object for fitted model information.
FittedModel objects can be evaluated at a point or queried for results and diagnostic information. Diagnostics vary somewhat across model types. Available model fitting functions fit linear, generalized linear, and nonlinear models.
Functions that generate FittedModel objects.
This fits a linear model assuming

values are 1, 2, ....
| Out[1]= |  |
Here is the functional form of the fitted model.
| Out[2]= |  |
This evaluates the model at

.
| Out[3]= |  |
Here is a shortened list of available results for the linear fitted model.
Out[4]//Short= |
| |  |
The major difference between model fitting functions such as
LinearModelFit and functions such as
Fit and
FindFit is the ability to easily obtain diagnostic information from the
FittedModel objects. The results are accessible without refitting the model.
This gives the residuals for the fitting.
| Out[5]= |  |
Here multiple results are obtained at once in a list.
| Out[6]= |  |
Fitting options relevant to property computations can be passed to
FittedModel objects to override defaults.
This gives default 95% confidence intervals.
| Out[7]= |  |
Here 90% intervals are obtained.
| Out[8]= |  |
Typical data for these model-fitting functions takes the same form as data in other fitting functions such as
Fit and
FindFit.
| {y1,y2,...} | data points with a single predictor variable taking values , , ... |
| {{x11,x12,...,y1},{x21,x22,...,y2},...} | data points with explicit coordinates |
Data specifications.
Linear Models
Linear models with assumed independent normally distributed errors are among the most common models for data. Models of this type can be fitted using the
LinearModelFit function.
| LinearModelFit[{y1,y2,...},{f1,f2,...},x] | obtain a linear model with basis functions and a single predictor variable x |
| LinearModelFit[{{x11,x12,...,y1},{x21,x22,...,y2}},{f1,f2,...},{x1,x2,...}] | obtain a linear model of multiple predictor variables  |
| LinearModelFit[{m,v}] | obtain a linear model based on a design matrix m and a response vector v |
Linear model fitting.
Linear models have the form

, where

is the fitted or predicted value, the

are parameters to be fitted, and the

are functions of the predictor variables

. The models are linear in the parameters

. The

can be any functions of the predictor variables. Quite often the

are simply the predictor variables

.
This fits a linear model to the first 20 primes.
| Out[9]= |  |
Options for model specification and for model analysis are available.
Options for LinearModelFit.
The
Weights option specifies weight values for weighted linear regression. The
NominalVariables option specifies which predictor variables should be treated as nominal or categorical. With
NominalVariables->All, the model is an analysis of variance (ANOVA) model. With
NominalVariables
the model is an analysis of covariance (ANCOVA) model with all but the


predictor treated as nominal. Nominal variables are represented by a collection of binary variables indicating equality and inequality to the observed nominal categorical values for the variable.
ConfidenceLevel,
VarianceEstimatorFunction, and
WorkingPrecision are relevant to the computation of results after the initial fitting. These options can be set within
LinearModelFit to specify the default settings for results obtained from the
FittedModel object. These options can also be set within an already constructed
FittedModel object to override the option values originally given to
LinearModelFit.
Here are the default and mean-squared error variance estimates.
| Out[10]= |  |
IncludeConstantBasis,
LinearOffsetFunction,
NominalVariables, and
Weights are relevant only to the fitting. Setting these options within an already constructed
FittedModel object will have no further impact on the result.
A major feature of the model-fitting framework is the ability to obtain results after the fitting. The full list of available results can be obtained using

.
This is the number of properties available for linear models.
| Out[11]= |  |
The properties include basic information about the data, fitted model, and numerous results and diagnostics.
| "BasisFunctions" | list of basis functions |
| "BestFit" | fitted function |
| "BestFitParameters" | parameter estimates |
| "Data" | the input data or design matrix and response vector |
| "DesignMatrix" | design matrix for the model |
| "Function" | best-fit pure function |
| "Response" | response values in the input data |
Properties related to data and the fitted function.
The

property gives the fitted parameter values

.

is the fitted function

and

gives the fitted function as a pure function.

gives the list of functions

, with

being the constant 1 when a constant term is present in the model. The

is the design or model matrix for the data.

gives the list of the response or

values from the original data.
| "FitResiduals" | difference between actual and predicted responses |
| "StandardizedResiduals" | fit residuals divided by the standard error for each residual |
| "StudentizedResiduals" | fit residuals divided by single deletion error estimates |
Types of residuals.
Residuals give a measure of the pointwise difference between the fitted values and the original responses.

gives the differences between the observed and fitted values

.

and

are scaled forms of the residuals. The


standardized residual is

, where

is the estimated error variance,

is the


diagonal element of the hat matrix, and

is the weight for the


data point. The


studentized residual uses the same formula with

replaced by

, the variance estimate omitting the


data point.
| "ANOVATable" | analysis of variance table |
| "ANOVATableDegreesOfFreedom" | degrees of freedom from the ANOVA table |
| "ANOVATableEntries" | unformatted array of values from the table |
| "ANOVATableFStatistics" | F-statistics from the table |
| "ANOVATableMeanSquares" | mean square errors from the table |
| "ANOVATablePValues" | -values from the table |
| "ANOVATableSumsOfSquares" | sums of squares from the table |
| "CoefficientOfVariation" | response mean divided by the estimated standard deviation |
| "EstimatedVariance" | estimate of the error variance |
| "PartialSumOfSquares" | changes in model sum of squares as nonconstant basis functions are removed |
| "SequentialSumOfSquares" | the model sum of squares partitioned componentwise |
Properties related to the sum of squared errors.

gives a formatted analysis of variance table for the model.

gives the numeric entries in the table and the remaining

properties give the elements of columns in the table so individual parts of the table can easily be used in further computations.
This gives a formatted ANOVA table for the fitted model.
| Out[12]= |  |
Here are the elements of the MS column of the table.
| Out[13]= |  |
| "CorrelationMatrix" | parameter correlation matrix |
| "CovarianceMatrix" | parameter covariance matrix |
| "EigenstructureTable" | eigenstructure of the parameter correlation matrix |
| "EigenstructureTableEigenvalues" | eigenvalues from the table |
| "EigenstructureTableEntries" | unformatted array of values from the table |
| "EigenstructureTableIndexes" | index values from the table |
| "EigenstructureTablePartitions" | partitioning from the table |
| "ParameterConfidenceIntervals" | parameter confidence intervals |
| "ParameterConfidenceIntervalTable" | table of confidence interval information for the fitted parameters |
| "ParameterConfidenceIntervalTableEntries" | unformatted array of values from the table |
| "ParameterConfidenceRegion" | ellipsoidal parameter confidence region |
| "ParameterErrors" | standard errors for parameter estimates |
| "ParameterPValues" | -values for parameter -statistics |
| "ParameterTable" | table of fitted parameter information |
| "ParameterTableEntries" | unformatted array of values from the table |
| "ParameterTStatistics" | -statistics for parameter estimates |
| "VarianceInflationFactors" | list of inflation factors for the estimated parameters |
Properties and diagnostics for parameter estimates.

gives the covariance between fitted parameters. The matrix is

, where

is the variance estimate,

is the design matrix, and

is the diagonal matrix of weights.

is the associated correlation matrix for the parameter estimates.

is equivalent to the square root of the diagonal elements of the covariance matrix.

and

contain information about the individual parameter estimates, tests of parameter significance, and confidence intervals.
This fits a model using both predictor variables.
| Out[15]= |  |
These are the formatted parameter and parameter confidence interval tables.
| Out[16]= |  |
Here 99% confidence intervals are used in the table.
| Out[17]= |  |
The Estimate column of these tables is equivalent to

. The

-statistics are the estimates divided by the standard errors. Each

-value is the two-sided

-value for the

-statistic and can be used to assess whether the parameter estimate is statistically significantly different from 0. Each confidence interval gives the upper and lower bounds for the parameter confidence interval at the level prescribed by the
ConfidenceLevel option. The various

and

properties can be used to get the columns or the unformatted array of values from the table.

is used to measure the multicollinearity between basis functions. The


inflation factor is equal to

, where

is the coefficient of variation from fitting the


basis function to a linear function of the other basis functions. With
IncludeConstantBasis->True, the first inflation factor is for the constant term.

gives the eigenvalues, condition indices, and variance partitions for the nonconstant basis functions. The Index column gives the square root of the ratios of the eigenvalues to the largest eigenvalue. The column for each basis function gives the proportion of variation in that basis function explained by the associated eigenvector.

gives the values in the variance partitioning for all basis functions in the table.
| "BetaDifferences" | DFBETAS measures of influence on parameter values |
| "CatcherMatrix" | catcher matrix |
| "CookDistances" | list of Cook distances |
| "CovarianceRatios" | COVRATIO measures of observation influence |
| "DurbinWatsonD" | Durbin-Watson -statistic for autocorrelation |
| "FitDifferences" | DFFITS measures of influence on predicted values |
| "FVarianceRatios" | FVARATIO measures of observation influence |
| "HatDiagonal" | diagonal elements of the hat matrix |
| "SingleDeletionVariances" | list of variance estimates with the  data point omitted |
Properties related to influence measures.
Pointwise measures of influence are often employed to assess whether individual data points have a large impact on the fitting. The hat matrix and catcher matrix play important roles in such diagnostics. The hat matrix is the matrix

such that

, where

is the observed response vector and

is the predicted response vector.

gives the diagonal elements of the hat matrix.

is the matrix

such that

, where

is the fitted parameter vector.

gives the DFFITS values that provide a measure of influence of each data point on the fitted or predicted values. The


DFFITS value is given by

, where

is the


hat diagonal and

is the


studentized residual.

gives the Cook distance measures of leverage. The


Cook distance is given by

, where

is the


standardized residual.
The


element of

is given by

and the


value is equal to

, where

is the


single deletion variance.
The Durbin-Watson

-statistic

is used for testing the existence of a first-order autoregressive process. The

-statistic is equivalent to

, where

is the


residual.
This plots the Cook distances for the bivariate model.
| Out[18]= |  |
| "MeanPredictionBands" | confidence bands for mean predictions |
| "MeanPredictionConfidenceIntervals" | confidence intervals for the mean predictions |
| "MeanPredictionConfidenceIntervalTable" | table of confidence intervals for the mean predictions |
| "MeanPredictionConfidenceIntervalTableEntries" | unformatted array of values from the table |
| "MeanPredictionErrors" | standard errors for mean predictions |
| "PredictedResponse" | fitted values for the data |
| "SinglePredictionBands" | confidence bands based on single observations |
| "SinglePredictionConfidenceIntervals" | confidence intervals for the predicted response of single observations |
| "SinglePredictionConfidenceIntervalTable" | table of confidence intervals for the predicted response of single observations |
| "SinglePredictionConfidenceIntervalTableEntries" | unformatted array of values from the table |
| "SinglePredictionErrors" | standard errors for the predicted response of single observations |
Properties of predicted values.
Tabular results for confidence intervals are given by

and

. These include the observed and predicted responses, standard error estimates, and confidence intervals for each point. Mean prediction confidence intervals are often referred to simply as confidence intervals and single prediction confidence intervals are often referred to as prediction intervals.

and

give functions of the predictor variables.
Here is the mean prediction table.
| Out[19]= |  |
This gives the 90% mean prediction intervals.
| Out[20]= |  |
| "AdjustedRSquared" | adjusted for the number of model parameters |
| "AIC" | Akaike Information Criterion |
| "BIC" | Bayesian Information Criterion |
| "RSquared" | coefficient of determination  |
Goodness-of-fit measures.
Goodness-of-fit measures are used to assess how well a model fits or to compare models. The coefficient of determination

is the ratio of the model sum of squares to the total sum of squares.

penalizes for the number of parameters in the model and is given by

.

and

are likelihood-based goodness-of-fit measures. Both are equal to

times the log-likelihood for the model plus

, where

is the number of parameters to be estimated including the estimated variance. For

is

, and for

is

.
Generalized Linear Models
The linear model can be seen as a model with each response value

being an observation from a normal distribution with mean value

. The generalized linear model extends to models of the form

, with each

assumed to be an observation from a distribution of known exponential family form with mean

, and

being an invertible function over the support of the exponential family. Models of this sort can be obtained via
GeneralizedLinearModelFit.
| GeneralizedLinearModelFit[{y1,y2,...},{f1,f2,...},x] | obtain a generalized linear model with basis functions and a single predictor variable x |
| GeneralizedLinearModelFit[{{x11,x12,...,y1},{x21,x22,...,y2}},{f1,f2,...},{x1,x2,...}] | obtain a generalized linear model of multiple predictor variables  |
| GeneralizedLinearModelFit[{m,v}] | obtain a generalized linear model based on a design matrix m and response vector v |
Generalized linear model fitting.
The invertible function

is called the link function and the linear combination

is referred to as the linear predictor. Common special cases include the linear regression model with the identity link function and Gaussian or normal exponential family distribution, logit and probit models for probabilities, Poisson models for count data, and gamma and inverse Gaussian models.
The error variance is a function of the prediction

and is defined by the distribution up to a constant

, which is referred to as the dispersion parameter. The error variance for a fitted value

can be written as

, where

is an estimate of the dispersion parameter obtained from the observed and predicted response values, and

is the variance function associated with the exponential family evaluated at the value

.
This fits a linear regression model.
| Out[21]= |  |
This fits a canonical gamma regression model to the same data.
| Out[22]= |  |
Here are the functional forms of the models.
| Out[23]= |  |
Logit and probit models are common binomial models for probabilities. The link function for the logit model is

and the link for the probit model is the inverse CDF for a standard normal distribution

. Models of this type can be fitted via
GeneralizedLinearModelFit with
ExponentialFamily
and the appropriate
LinkFunction or via
LogitModelFit and
ProbitModelFit.
| LogitModelFit[data,funs,vars] | obtain a logit model with basis functions funs and predictor variables vars |
| LogitModelFit[{m,v}] | obtain a logit model based on a design matrix m and response vector v |
| ProbitModelFit[data,funs,vars] | obtain a probit model fit to data |
| ProbitModelFit[{m,v}] | obtain a probit model fit to a design matrix m and response vector v |
Logit and probit model fitting.
Parameter estimates are obtained via iteratively reweighted least squares with weights obtained from the variance function of the assumed distribution. Options for
GeneralizedLinearModelFit include options for iteration fitting such as
PrecisionGoal, options for model specification such as
LinkFunction, and options for further analysis such as
ConfidenceLevel.
Options for GeneralizedLinearModelFit.
The options for
LogitModelFit and
ProbitModelFit are the same as for
GeneralizedLinearModelFit except that
ExponentialFamily and
LinkFunction are defined by the logit or probit model and so are not options to
LogitModelFit and
ProbitModelFit.
ExponentialFamily can be

,

,

,

,

, or

. Binomial models are valid for responses from 0 to 1. Poisson models are valid for non-negative integer responses. Gaussian or normal models are valid for real responses. Gamma and inverse Gaussian models are valid for positive responses. Quasi-likelihood models define the distributional structure in terms of a variance function

such that the log of the quasi-likelihood function for the


data point is given by

. The variance function for a

model can be optionally set via
ExponentialFamily
, where
fun is a pure function to be applied to fitted values.
DispersionEstimatorFunction defines a function for estimating the dispersion parameter

. The estimate

is analogous to

in linear and nonlinear regression models.
ExponentialFamily,
IncludeConstantBasis,
LinearOffsetFunction,
LinkFunction,
NominalVariables, and
Weights all define some aspect of the model structure and optimization criterion and can only be set within
GeneralizedLinearModelFit. All other options can be set either within
GeneralizedLinearModelFit or passed to the
FittedModel object when obtaining results and diagnostics. Options set in evaluations of
FittedModel objects take precedence over settings given to
GeneralizedLinearModelFit at the time of the fitting.
This gives 95% and 99% confidence intervals for the parameters in the gamma model.
| Out[24]= |  |
| "BasisFunctions" | list of basis functions |
| "BestFit" | fitted function |
| "BestFitParameters" | parameter estimates |
| "Data" | the input data or design matrix and response vector |
| "DesignMatrix" | design matrix for the model |
| "Function" | best fit pure function |
| "LinearPredictor" | fitted linear combination |
| "Response" | response values in the input data |
Properties related to data and the fitted function.

gives the parameter estimates for the basis functions.

gives the fitted function

, and

gives the linear combination

.

gives the list of functions

, with

being the constant 1 when a constant term is present in the model.

is the design or model matrix for the basis functions.
| "Deviances" | deviances |
| "DevianceTable" | deviance table |
| "DevianceTableDegreesOfFreedom" | degrees of freedom differences from the table |
| "DevianceTableDeviances" | deviance differences from the table |
| "DevianceTableEntries" | unformatted array of values from the table |
| "DevianceTableResidualDegreesOfFreedom" | residual degrees of freedom from the table |
| "DevianceTableResidualDeviances" | residual deviances from the table |
| "EstimatedDispersion" | estimated dispersion parameter |
| "NullDeviance" | deviance for the null model |
| "NullDegreesOfFreedom" | degrees of freedom for the null model |
| "ResidualDeviance" | difference between the model deviance and null deviance |
| "ResidualDegreesOfFreedom" | difference between the model degrees of freedom and null degrees of freedom |
Properties related to dispersion and model deviances.
Deviances and deviance tables generalize the model decomposition given by analysis of variance in linear models. The deviance for a single data point is

, where

is the log-likelihood function for the fitted model.

gives a list of the deviance values for all data points. The sum of all deviances gives the model deviance. The model deviance can be decomposed as sums of squares, which are in an ANOVA table for linear models.
Here is some data with two predictor variables.
This fits the data to an inverse Gaussian model.
| Out[32]= |  |
Here is the deviance table for the model.
| Out[33]= |  |
As with sums of squares, deviances are additive. The Deviance column of the table gives the increase in the model deviance when the given basis function is added. The Residual Deviance column gives the difference between the model deviance and the deviance for the submodel containing all previous terms in the table. For large samples, the increase in deviance is approximately

distributed with degrees of freedom equal to that for the basis function in the table.

is the deviance for the null model, the constant model equal to the mean of all observed responses for models including a constant, or

if a constant term is not included.
As with

, a number of properties are included to extract the columns or unformatted array of entries from

.
| "AnscombeResiduals" | Anscombe residuals |
| "DevianceResiduals" | deviance residuals |
| "FitResiduals" | difference between actual and predicted responses |
| "LikelihoodResiduals" | likelihood residuals |
| "PearsonResiduals" | Pearson residuals |
| "StandardizedDevianceResiduals" | standardized deviance residuals |
| "StandardizedPearsonResiduals" | standardized Pearson residuals |
| "WorkingResiduals" | working residuals |
Types of residuals.

is the list of residuals, differences between the observed and predicted responses. Given the distributional assumptions, the magnitude of the residuals is expected to change as a function of the predicted response value. Various types of scaled residuals are employed in the analysis of generalized linear models.
If

and

are the deviance and residual for the


data point, the


deviance residual is given by

. The


Pearson residual is defined as

, where

is the variance function for the exponential family distribution. Standardized deviance residuals and standardized Pearson residuals include division by

, where

is the


diagonal of the hat matrix.

values combine deviance and Pearson residuals. The


likelihood residual is given by

.

provide a transformation of the residuals toward normality, so a plot of these residuals should be expected to look roughly like white noise. The


Anscombe residual can be written as

.

gives the residuals from the last step of the iterative fitting. The


working residual can be obtained as

evaluated at

.
This plots the residuals and Anscombe residuals for the inverse Gaussian model.
| Out[41]= |  |
| "CorrelationMatrix" | asymptotic parameter correlation matrix |
| "CovarianceMatrix" | asymptotic parameter covariance matrix |
| "ParameterConfidenceIntervals" | parameter confidence intervals |
| "ParameterConfidenceIntervalTable" | table of confidence interval information for the fitted parameters |
| "ParameterConfidenceIntervalTableEntries" | unformatted array of values from the table |
| "ParameterConfidenceRegion" | ellipsoidal parameter confidence region |
| "ParameterTableEntries" | unformatted array of values from the table |
| "ParameterErrors" | standard errors for parameter estimates |
| "ParameterPValues" | -values for parameter -statistics |
| "ParameterTable" | table of fitted parameter information |
| "ParameterZStatistics" | -statistics for parameter estimates |
Properties and diagnostics for parameter estimates.

gives the covariance between fitted parameters and is very similar to the definition for linear models. With
CovarianceEstimatorFunction
, the expected information matrix obtained from the iterative fitting is used. The matrix is

, where

is the design matrix and

is the diagonal matrix of weights from the final stage of the fitting. The weights include both weights specified via the
Weights option and the weights associated with the distribution's variance function. With
CovarianceEstimatorFunction
, the matrix is given by

, where

is the observed Fisher information matrix, which is the Hessian of the log-likelihood function with respect to parameters of the model.

is the associated correlation matrix for the parameter estimates.

is equivalent to the square root of the diagonal elements of the covariance matrix.

and

contain information about the individual parameter estimates, tests of parameter significance, and confidence intervals. The test statistics for generalized linear models asymptotically follow normal distributions.
| "CookDistances" | list of Cook distances |
| "HatDiagonal" | diagonal elements of the hat matrix |
Properties related to influence measures.

and

extend the leverage measures from linear regression to generalized linear models. The hat matrix from which the diagonal elements are extracted is defined using the final weights of the iterative fitting.
The Cook distance measures of leverage are defined as in linear regression with standardized residuals replaced by standardized Pearson residuals. The


Cook distance is given by

, where

is the


standardized Pearson residual.
| "PredictedResponse" | fitted values for the data |
Properties of predicted values.
| "AdjustedLikelihoodRatioIndex" | Ben-Akiva and Lerman's adjusted likelihood ratio index |
| "AIC" | Akaike Information Criterion |
| "BIC" | Bayesian Information Criterion |
| "CoxSnellPseudoRSquared" | Cox and Snell's pseudo  |
| "CraggUhlerPseudoRSquared" | Cragg and Uhler's pseudo  |
| "EfronPseudoRSquared" | Efron's pseudo  |
| "LikelihoodRatioIndex" | McFadden's likelihood ratio index |
| "LikelihoodRatioStatistic" | likelihood ratio |
| "LogLikelihood" | log likelihood for the fitted model |
| "PearsonChiSquare" | Pearson's statistic |
Goodness-of-fit measures.

is the log-likelihood for the fitted model.

and

are penalized log-likelihood measures

, where

is the log-likelihood for the fitted model,

is the number of parameters estimated including the dispersion parameter, and

is

for

and

for

for a model of

data points.

is given by

, where

is the log-likelihood for the null model.
A number of the goodness-of-fit measures generalize

from linear regression as either a measure of explained variation or as a likelihood-based measure.

is given by

.

is a scaled version of Cox and Snell's measure

.

involves the ratio of log-likelihoods

, and

adjusts by penalizing for the number of parameters

.

uses the sum of squares interpretation of

and is given as

, where

is the


residual and

is the mean of the responses

.

is equal to

, where the

are Pearson residuals.
Nonlinear Models
A nonlinear least-squares model is an extension of the linear model where the model need not be a linear combination of basis function. The errors are still assumed to be independent and normally distributed. Models of this type can be fitted using the
NonlinearModelFit function.
NonlinearModelFit[{y1,y2,...},form,{ 1,...},x] | obtain a nonlinear model of the function form with parameters a single parameter predictor variable x |
NonlinearModelFit[{{x11,...,y1},{x21,...,y2}},form,{ 1,...},{x1,...}] | obtain a nonlinear model as a function of multiple predictor variables  |
NonlinearModelFit[data,{form,cons},{ 1,...},{x1,...}] | obtain a nonlinear model subject to the constraints cons |
Nonlinear model fitting.
Nonlinear models have the form

, where

is the fitted or predicted value, the

are parameters to be fitted, and the

are predictor variables. As with any nonlinear optimization problem, a good choice of starting values for the parameters may be necessary. Starting values can be given using the same parameter specifications as for
FindFit.
This fits a nonlinear model to a sequence of square roots.
| Out[25]= |  |
Options for model fitting and for model analysis are available.
Options for NonlinearModelFit.
General numeric options such as
AccuracyGoal,
Method, and
WorkingPrecision are the same as for
FindFit.
The
Weights option specifies weight values for weighted nonlinear regression. The optimal fit is for a weighted sum of squared errors.
All other options can be relevant to computation of results after the initial fitting. They can be set within
NonlinearModelFit for use in the fitting and to specify the default settings for results obtained from the
FittedModel object. These options can also be set within an already constructed
FittedModel object to override the option values originally given to
NonlinearModelFit.
| "BestFit" | fitted function |
| "BestFitParameters" | parameter estimates |
| "Data" | the input data |
| "Function" | best fit pure function |
| "Response" | response values in the input data |
Properties related to data and the fitted function.
Basic properties of the data and fitted function for nonlinear models behave like the same properties for linear and generalized linear models with the exception that

returns a rule as is done for the result of
FindFit.
This gives the fitted function and rules for the parameter estimates.
| Out[26]= |  |
Many diagnostics for nonlinear models extend or generalize concepts from linear regression. These extensions often rely on linear approximations or large sample approximations.
| "FitResiduals" | difference between actual and predicted responses |
| "StandardizedResiduals" | fit residuals divided by the standard error for each residual |
| "StudentizedResiduals" | fit residuals divided by single deletion error estimates |
Types of residuals.
As in linear regression,

gives the differences between the observed and fitted values

, and

and

are scaled forms of these differences.
The


standardized residual is

, where

is the estimated error variance,

is the


diagonal element of the hat matrix, and

is the weight for the


data point, and the


studentized residual is obtained by

replacing with the


single deletion variance

. For nonlinear models a first-order approximation is used for the design matrix, which is needed to compute the hat matrix.
| "ANOVATable" | analysis of variance table |
| "ANOVATableDegreesOfFreedom" | degrees of freedom from the ANOVA table |
| "ANOVATableEntries" | unformatted array of values from the table |
| "ANOVATableMeanSquares" | mean square errors from the table |
| "ANOVATableSumsOfSquares" | sums of squares from the table |
| "EstimatedVariance" | estimate of the error variance |
Properties related to the sum of squared errors.

provides a decomposition of the variation in the data attributable to the fitted function and to the errors or residuals.
This gives the ANOVA table for the nonlinear model.
| Out[27]= |  |
The uncorrected total sums of squares gives the sum of squared responses, while the corrected total gives the sum of squared differences between the responses and their mean value.
| "CorrelationMatrix" | asymptotic parameter correlation matrix |
| "CovarianceMatrix" | asymptotic parameter covariance matrix |
| "ParameterBias" | estimated bias in the parameter estimates |
| "ParameterConfidenceIntervals" | parameter confidence intervals |
| "ParameterConfidenceIntervalTable" | table of confidence interval information for the fitted parameters |
| "ParameterConfidenceIntervalTableEntries" | unformatted array of values from the table |
| "ParameterConfidenceRegion" | ellipsoidal parameter confidence region |
| "ParameterErrors" | standard errors for parameter estimates |
| "ParameterPValues" | -values for parameter -statistics |
| "ParameterTable" | table of fitted parameter information |
| "ParameterTableEntries" | unformatted array of values from the table |
| "ParameterTStatistics" | -statistics for parameter estimates |
Properties and diagnostics for parameter estimates.

gives the approximate covariance between fitted parameters. The matrix is

, where

is the variance estimate,

is the design matrix for the linear approximation to the model, and

is the diagonal matrix of weights.

is the associated correlation matrix for the parameter estimates.

is equivalent to the square root of the diagonal elements of the covariance matrix.

and

contain information about the individual parameter estimates, tests of parameter significance, and confidence intervals obtained using the error estimates.
| "CurvatureConfidenceRegion" | confidence region for curvature diagnostics |
| "FitCurvatureTable" | table of curvature diagnostics |
| "FitCurvatureTableEntries" | unformatted array of values from the table |
| "MaxIntrinsicCurvature" | measure of maximum intrinsic curvature |
| "MaxParameterEffectsCurvature" | measure of maximum parameter effects curvature |
Curvature diagnostics.
The first-order approximation used for many diagnostics is equivalent to the model being linear in the parameters. If the parameter space near the parameter estimates is sufficiently flat, the linear approximations and any results that rely on first-order approximations can be deemed reasonable. Curvature diagnostics are used to assess whether the approximate linearity is reasonable.

is a table of curvature diagnostics.

and

are scaled measures of the normal and tangential curvatures of the parameter spaces at the best-fit parameter values.

is a scaled measure of the radius of curvature of the parameter space at the best-fit parameter values. If the normal and tangential curvatures are small relative to the value of the

, the linear approximation is considered reasonable. Some rules of thumb suggest comparing the values directly, while others suggest comparing with half the

.
Here is the curvature table for the nonlinear model.
| Out[28]= |  |
| "HatDiagonal" | diagonal elements of the hat matrix |
| "SingleDeletionVariances" | list of variance estimates with the  data point omitted |
Properties related to influence measures.
The hat matrix is the matrix

such that

, where

is the observed response vector and

is the predicted response vector.

gives the diagonal elements of the hat matrix. As with other properties,

uses the design matrix for the linear approximation to the model.
The


element of

is equivalent to

, where

is the number of data points,

is the number of parameters,

is the


hat diagonal,

is the variance estimate for the full dataset, and

is the


residual.
| "MeanPredictionBands" | confidence bands for mean predictions |
| "MeanPredictionConfidenceIntervals" | confidence intervals for the mean predictions |
| "MeanPredictionConfidenceIntervalTable" | table of confidence intervals for the mean predictions |
| "MeanPredictionConfidenceIntervalTableEntries" | unformatted array of values from the table |
| "MeanPredictionErrors" | standard errors for mean predictions |
| "PredictedResponse" | fitted values for the data |
| "SinglePredictionBands" | confidence bands based on single observations |
| "SinglePredictionConfidenceIntervals" | confidence intervals for the predicted response of single observations |
| "SinglePredictionConfidenceIntervalTable" | table of confidence intervals for the predicted response of single observations |
| "SinglePredictionConfidenceIntervalTableEntries" | unformatted array of values from the table |
| "SinglePredictionErrors" | standard errors for the predicted response of single observations |
Properties of predicted values.
Tabular results for confidence intervals are given by

and

. These results are analogous to those for linear models obtained via
LinearModelFit, again with first-order approximations used for the design matrix.

and

give functions of the predictor variables.
Here the fitted function and mean prediction bands are obtained.
| Out[29]= |  |
This plots the fitted curve and confidence bands.
| Out[30]= |  |
| "AdjustedRSquared" | adjusted for the number of model parameters |
| "AIC" | Akaike Information Criterion |
| "BIC" | Bayesian Information Criterion |
| "RSquared" | coefficient of determination  |
Goodness-of-fit measures.

,

,

, and

are all direct extensions of the measures as defined for linear models. The coefficient of determination

is

, where

is the residual sum of squares and

is the uncorrected total sum of squares. The coefficient of determination does not have the same interpretation as the percentage of explained variation in nonlinear models as it does in linear models because the sum of squares for the model and for the residuals do not necessarily sum to the total sum of squares.

penalizes for the number of parameters in the model and is given by

.

and

are equal to

times the log-likelihood for the model plus

, where

is the number of parameters to be estimated including the estimated variance. For

is

, and for

is

.