Fits the short-tailed symmetric distribution of Tiku and Vaughan (1999).
tikuv(d, lmean = "identitylink", lsigma = "loge", isigma = NULL,
zero = "sigma")
The
Link functions for the mean and standard
deviation parameters of the usual univariate normal distribution
(see Details below).
They are Links
for more choices.
Optional initial value for NULL
means a value is computed internally.
A vector specifying which
linear/additive predictors are modelled as intercept-only.
The values can be from the set {1,2}, corresponding
respectively to zero = NULL
then all linear/additive predictors are modelled as
a linear combination of the explanatory variables.
For many data sets having zero = 2
is a good idea.
See CommonVGAMffArguments
for information.
An object of class "vglmff"
(see vglmff-class
).
The object is used by modelling functions such as vglm
,
and vgam
.
Under- or over-flow may occur if the data is ill-conditioned,
e.g., when -Inf
.
The short-tailed symmetric distribution of Tiku and Vaughan (1999)
has a probability density function that can be written
Akkaya, A. D. and Tiku, M. L. (2008) Short-tailed distributions and inliers. Test, 17, 282--296.
Tiku, M. L. and Vaughan, D. C. (1999) A family of short-tailed symmetric distributions. Technical report, McMaster University, Canada.
# NOT RUN {
m <- 1.0; sigma <- exp(0.5)
tdata <- data.frame(y = rtikuv(n = 1000, d = 1, m = m, s = sigma))
tdata <- transform(tdata, sy = sort(y))
fit <- vglm(y ~ 1, tikuv(d = 1), data = tdata, trace = TRUE)
coef(fit, matrix = TRUE)
(Cfit <- Coef(fit))
with(tdata, mean(y))
# }
# NOT RUN {
with(tdata, hist(y, prob = TRUE))
lines(dtikuv(sy, d = 1, m = Cfit[1], s = Cfit[2]) ~ sy, data = tdata, col = "orange")
# }
Run the code above in your browser using DataLab