Learn R Programming

sn (version 2.1.1)

residuals.selm: Residuals and fitted values from selm fits

Description

residuals and fitted methods for classes "selm" and "mselm".

Usage

# S4 method for selm
residuals(object, param.type = "CP", ...)
# S4 method for mselm
residuals(object, param.type = "CP", ...)
# S4 method for selm
fitted(object, param.type = "CP", ...)
# S4 method for mselm
fitted(object, param.type = "CP", ...)

Value

a numeric vector (for selm-class objects) or a matrix (for mselm-class objects).

Arguments

object

an object of class "selm" or "mselm" as created by a call to function selm.

param.type

a character string which indicates the required type of parameter type; possible values are "CP" (default), "DP", "pseudo-CP" and their equivalent lower-case expressions.

...

not used, included for compatibility with the generic method.

Author

Adelchi Azzalini

References

Azzalini, A. with the collaboration of Capitanio, A. (2014). The Skew-Normal and Related Families. Cambridge University Press, IMS Monographs series.

See Also

dp2cp, summary.selm, selm function, selm-class

Examples

Run this code
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

Run the code above in your browser using DataLab