R Package quantreg: Extract p-values

前端 未结 1 2015
被撕碎了的回忆
被撕碎了的回忆 2021-01-19 10:38

I have a data series of around 250 annual maximum rainfall measurements, maxima[,] and want to apply quantile regression to all series at once and obtain th

相关标签:
1条回答
  • 2021-01-19 11:05

    have a look at the structure produced by running str() of the summary-object:

    require(quantreg)
    data(engel)
    mod <- rq(foodexp ~ income, data = engel)
    summ <- summary(mod, se = "boot")
    summ
    str(summ)
    summ$coefficients[,4]
    
    0 讨论(0)
提交回复
热议问题