I am trying to rename title of each plot in multiple plots from R summary objects. I do quintile regression and I'd like to plot coefficients. I do the following
qr.1 <-summary( rq (y ~ x1+x2, tau=5:95/100, data=mydata))
plot(qr.1)
plot(qr.1) gives me plots of the coefficients of x1 and x2. But the title in each plot is x1 and x2. I like to change the title from x1 into variable name (e.g. income per capita). I tried several standard approaches but failed. I think this is because i plot summary objects. Do you guys know how to add title in multiple plots from summary objects?
Thanks
yudo