1
set.seed(5)
library(quantreg)
d <- data.frame(x=seq(-5, 5, len=51))

d$y <- 50 - 0.3*d$x^2 + rnorm(nrow(d))

Taus <- c(0.1,0.3,0.5,0.7,0.9)

QR<-rq(y ~ 1 + x + I(x^2)+I(x^3), tau=Taus, data=d)

I need to find the p-value for the estimated coefficients of this model

NelsonGon
  • 13,015
  • 7
  • 27
  • 57
Hanan
  • 33
  • 1
  • 5

0 Answers0