qepan {epandist} | R Documentation |
Quantile function for an uncensored epanechnikov distribution
Description
The inverse of this function is pepan
.
Usage
qepan(p, mu = 0, r = 5^0.5)
Arguments
p |
probability. |
mu |
mean of distribution. |
r |
half the range of the distribution, ie the distance from the mean to the smallest/largest value supported by the distribution. |
Value
the quantile associated with x
, mu
and r
.
Examples
#Calculate the lower quartile of an epan-distributed variable:
qepan(p=.25,mu=0,r=sqrt(5))
#Use qepan to confirm analytical solution
#Find the quantile corresponding to p=(5+sqrt(5))/8=.9045 when mu=0 and r=sqrt(5):
qepan(p=(5+sqrt(5))/8,mu=0,r=sqrt(5))
#This is equal to
(5-sqrt(5))/2
[Package epandist version 1.1.1 Index]