dig.PVII {ig} | R Documentation |
Compute the probabilility density function of inverse Gaussian distribution generated from the the Pearson type VII kernel with parameters q
and r
.
dig.PVII(t, mu, lambda, parameters = c(1, 1), log = FALSE)
t |
Vector of observations. |
mu |
Mean. |
lambda |
Scale parameter. |
parameters |
Parameters of the Kotz distribution. |
log |
Logical; if TRUE, probabilities p are given as log(p). |
The IGTD has pdf given by
f_T(t)=f_Z(a_{t}) sqrt{λ}/sqrt{t^{3}},
with t > 0, μ>0 and λ>0, where f_Z(cdot)= c,g(cdot) is the pdf of the Pearson VII distribution a_{t} = a_{t}(μ,λ) = sqrt{λ/μ} [sqrt{t/μ} - sqrt{μ/t}].
dig.PVII()
gives the pdf of an IGTD generated from the Pearson VII kernel.
Víctor Leiva <victor.leiva@uv.cl>, Hugo Hernández <hugo.hernandez@msn.com>, and Antonio Sanhueza <asanhue@ufro.cl>.
Sanhueza, A., Leiva, V. and Balakrishnan, N. (2007). A new class of inverse Gaussian type distributions. Metrika (in press).
x<-seq(-3,3,by=0.01) y<-dig.PVII(x,1.0,1.0,c(1,1)) plot(x,y,type="l",xlab="x",ylab="f(x)")