I have a database of ~2000 observations and made a quantile regression on the 95th percentile using quantreg
package.
I wanted to identify the observations that were actually used for calculating the slope and intercept for the 95th percentile regression in order to perform further analysis. Is there any way to do that?
This is the code for quantreg
I used so far:
datos<-quantreg.example
library(quantreg)
rq(y ~ x, tau=0.95, data=datos, method="br", model = TRUE)
and here is the data file: http://www.filedropper.com/quantregexample