Used with gam
to fit Gaussian location - scale models. gam
is called with
a list containing 2 formulae, the first specifies the response on the left hand side and the structure of the linear predictor for the mean on the right hand side. The second is one sided, specifying the linear predictor for the standard deviation on the right hand side. Link functions "identity"
, "inverse"
, "log"
and "sqrt"
are available for the mean. For the standard deviation only the "logb"
link is implemented: $\eta = \log(\sigma - b)$ and $\sigma = b + \exp(\eta)$. This link is designed to avoid singularities in the likelihood caused by the standard deviation tending to zero.
The fitted values for this family will be a two column matrix. The first column is the mean, and the second column is the inverse of the
standard deviation. Predictions using predict.gam
will also produce 2 column matrices for type
"link"
and "response"
.
The null deviance reported for this family is the sum of squares of the difference between the response and the mean response divided by the standard deviation of the response according to the model. The deviance is the sum of squares of residuals divided by model standard deviations.