Residuals and fitted values from selm fits
residuals
and fitted
methods for classes "selm"
and
"mselm"
.
## S4 method for signature 'selm' residuals(object, param.type = "CP", ...) ## S4 method for signature 'mselm' residuals(object, param.type = "CP", ...) ## S4 method for signature 'selm' fitted(object, param.type = "CP", ...) ## S4 method for signature 'mselm' fitted(object, param.type = "CP", ...)
object |
an object of class |
param.type |
a character string which indicates the required type of
parameter type; possible values are |
... |
not used, included for compatibility with the generic method. |
a numeric vector (for selm-class
objects) or a matrix
(for mselm-class
objects).
The possible options of param.type
are described in the
documentation of dp2cp
; their corresponding outcomes
differ by an additive constant only. With the "CP"
option (that is,
the ‘centred parametrization’), the residuals are centred around 0,
at least approximately; this is a reason for setting "CP"
as the
default option. For more information, see the ‘Note’ in the
documentation of summary.selm
.
Adelchi Azzalini
Azzalini, A. with the collaboration of Capitanio, A. (2014). The Skew-Normal and Related Families. Cambridge University Press, IMS Monographs series.
dp2cp
, summary.selm
,
selm
function, selm-class
data(wines, package="sn") m5 <- selm(acidity ~ phenols + wine, family="SN", data=wines) residuals(m5) residuals(m5, "dp") fitted(m5, "dp") # m12 <- selm(cbind(acidity, alcohol) ~ phenols + wine, family="SN", data=wines) residuals(m12) # # see other examples at function selm
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.