>How can i plot an array and instead of having on the x labels the >indexes of the array I want to display an other String array of the >same length
Do this: > plot(myarray,xaxt="n",xlab="") > axis(1,at=1:length(myarray),lab=my.vector.of.names) ______________________________________________ [EMAIL PROTECTED] mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html
