Learn R Programming

epandist (version 1.1.1)

qepan: 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. r=5^.5 corresponds to a standard deviation of 1.

Value

the quantile associated with x, mu and r.

Examples

Run this code
#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

Run the code above in your browser using DataLab