| predict.selm | R Documentation |
Predicted values based on a model object produced by selm with
univariate response.
## S3 method for class 'selm'
predict(object, newdata, param.type = "CP",
interval = "none", level = 0.95, na.action = na.pass, ...)
object |
an object of class |
newdata |
an optional data frame in which to look for variables with which to predict. If omitted, the fitted values are used. |
param.type |
a character string with the required parameterization; it must be one of
|
interval |
type of interval calculation among |
level |
tolerance/confidence level (default value is |
na.action |
function determining what should be done with missing
values in newdata. The default is to predict |
... |
not used, only there for compatibility reasons. |
Predicted values are obtained by evaluating the regression function in the
dataframe newdata (which defaults to model.frame(object)).
Setting interval other than "none" produces computation of
confidence or prediction (tolerance) intervals at the specified level.
If newdata is omitted the predictions are based on the data used for
the fit.
The action taken in case of missing data is regulated by argument
na.action, along the lines of function predict.lm.
A detailed description of the methodology underlying predict.selm
is available in the technical note of Azzalini (2016).
a vector of predictions (if interval="none") or a matrix of
predictions and bounds with column names fit, lwr, and
upr, if interval is set.
Adelchi Azzalini
Azzalini, A. (2016).
Derivation of various types of intervals from a selm object.
Technical note distributed with the documentation of the R package
sn, in file
selm-intervals.pdf within section
‘User guide, package vignettes and other documentation’.
selm, summary.selm,
makeSECdistr for the CP/DP parameterizations,
predict.lm for usage of na.action
data(barolo)
attach(barolo)
A75 <- (reseller=="A" & volume==75)
detach(barolo)
m3 <- selm(log(price, 10) ~ age, data=barolo[A75,], family="ST")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.