Skip to content
Prev 309448 / 398506 Next

standard error for quantile

On 10/31/2012 12:46 AM, PIKAL Petr wrote:
Hi Petr,
Using a resampling method, it depends upon the distribution of the 
values. If you have a "love-hate" distribution (bimodal and heavily 
weighted toward extreme values), the median standard error can be 
larger. Try this:

x<-sample(-5:5,1000,TRUE,
  prob=c(0.2,0.1,0.05,0.04,0.03,0.02,0.03,0.04,0.05,0.1,0.2))
x<-ifelse(x<0,x+runif(1000),x-runif(1000))
hist(x)
mcse.q(x, 0.1)
$est
[1] -3.481419

$se
[1] 0.06887319

mcse.q(x, 0.5)
$est
[1] 1.088475

$se
[1] 0.3440115

 > mcse.q(x, 0.1)
$est
[1] -3.481419

$se
[1] 0.06887319

Jim