I am running quantile regression (package quantreg
) and using texreg
to create a latex output of my models.
I am interested in bootstrapped s.e. and set se="boot" in the options of summary but when I use texreg I get "n.i.d." s.e.
How do I change that option?
Here is what I am doing:
tm3 <- rq(nback ~ cara + mat + dut + e_brown + e_green + e_blue + ins_no + ins_1
+ ins_5 + lit + sci + lan + gender_f + partner,
tau = 0.75, data=tru_all, model=TRUE)
summary(tm3, se = "boot")
texreg(tm3)
I tried looking into texreg (typing texreg on the console) and at lines 35-38 I found
for (i in 1:length(models)) {
cf <- models[[i]]@coef
se <- models[[i]]@se
pv <- models[[i]]@pvalues
How do I set the s.e. method? I have never changed R functions, if that is what I need to do can you suggest a link that explains how to do it?