Re: [R] Change Variable Labels in Quantile Plot

2011-08-23 Thread RKoenker
Hi Roger, Maybe I'm missing a clue. Here's an example: x<-rnorm(50) x1<-rnorm(50) y<-x+x1+rnorm(50) out<-rq(y~x+x1, tau=1:9/10) plot(summary(out)) plot.out<-plot(summary(out)) #I change the variable names dimnames(plot.out)<-list(c("intercept", "sex", "inc")) Why not just change the names

Re: [R] Change Variable Labels in Quantile Plot

2011-08-22 Thread Roger Koenker
It should be possible to say plot(..., xlab = "foo", ylab = "bar") ) if not please let me know. Roger Koenker rkoen...@illinois.edu On Aug 22, 2011, at 9:00 PM, Kitty Lee wrote: I have spent hours on this ---looked through the quantreg manual and r-help site--- still couldn't figure ou