Displaying 1 result from an estimated 1 matches for "age50".
Did you mean:
age0
2011 Aug 23
3
Change Variable Labels in Quantile Plot
I have spent hours on this ---looked through the quantreg manual and r-help site--- still couldn't figure out the answer. Can someone please help me on this?
I plot the result from quantile regression and want to change the variable labels:
temp<-rq(dep~inc+age50, data=newdata, tau=1:9/10)
temp2<-plot(summary(temp))
dimnames(temp2)[[1]]<-c("Intercept", "Per Capita Income", "% Age 50 and Above")
But after I manually change the dimnames, I can't replot the graph (temp2).
Any suggestions?
K.