pLambertW {LambertW} | R Documentation |
Cumulative distribution function (cdf) for Lambert W RV.
pLambertW(y, theta = c(0, 0, 1), distname = "normal")
y |
value |
theta |
parameter vector |
distname |
input distribution |
Value of the cdf at y.
Georg M. Goerg
Goerg, G.M. (2009). “Lambert W Random Variables - A new class of skewed distribution functions”. Unpublished
theta.s=c(0.1,0,1) aux.lambert=function(y){ pLambertW(y, theta=theta.s) } support(theta.s) plot(aux.lambert, -3.5,3.5, ylab="Probability") plot(pnorm, -3.5,3.5, add=TRUE, lty=2) legend("topleft" , c("Lambert W - Gaussian" , "Gaussian"), lty=1:2)