Martin Henry H. Stevens said the following on 5/31/2007 9:59 AM: > Hi Folks, > How do I get red bold font on my y axis and black standard font on my > x axis? > > plot(runif(10), ylab="Red, Bold?", xlab="Black, standard?") > > Any pointers or examples would be great. > Thanks! > Hank > > > Dr. Hank Stevens, Assistant Professor > 338 Pearson Hall > Botany Department > Miami University > Oxford, OH 45056 > > Office: (513) 529-4206 > Lab: (513) 529-4262 > FAX: (513) 529-4243 > http://www.cas.muohio.edu/~stevenmh/ > http://www.muohio.edu/ecology/ > http://www.muohio.edu/botany/ > > "E Pluribus Unum" > > ______________________________________________ > [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 > and provide commented, minimal, self-contained, reproducible code.
Try: plot(runif(10), xlab = "", ylab = "") title(xlab = "Index") title(ylab = "y", font.lab = 2, col.lab = "red") HTH, --sundar ______________________________________________ [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 and provide commented, minimal, self-contained, reproducible code.
