I am using the quantreg package from R to calculate quantile regression between 2 columns : red pixel values and near infrared pixel values (target). But the problem is that it gives me different values of t each time I execute the command with the same value of tau. Is this normal?
x=c(0.211799994111061, 0.220300003886223,0.20890000462532, 0.203099995851517, 0.183400005102158)
y=c(0.328099995851517, 0.342599987983704, 0.32370001077652, 0.319000005722046, 0.311599999666214)
library('quantreg')
qr = rq(y~x, tau =0.0001)
summary(qr, se = 'boot')