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"
Try this:> plot(runif(10), ylab="", xlab="Black, standard?") > mtext('Red, Bold', side=2, line=3, col='red', font=2)Hope this helps, -- Gregory (Greg) L. Snow Ph.D. Statistical Data Center Intermountain Healthcare greg.snow at intermountainmail.org (801) 408-8111> -----Original Message----- > From: r-help-bounces at stat.math.ethz.ch > [mailto:r-help-bounces at stat.math.ethz.ch] On Behalf Of Martin > Henry H. Stevens > Sent: Thursday, May 31, 2007 11:00 AM > To: R-Help > Subject: [R] Different fonts on different axes > > 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" > > ______________________________________________ > R-help at stat.math.ethz.ch 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. >
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" > > ______________________________________________ > R-help at stat.math.ethz.ch 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