Re: [R] Getting rid of spaces in plot math

2014-03-31 Thread arun
Hi, Try: mtext(bquote(Cortisol~(mu*g/ml)))  A.K. On Monday, March 31, 2014 10:05 PM, Dennis Fisher wrote: R 3.0.2 OS X Colleagues I am trying to label a graphic:     Cortisol (µg/ml) A simplified version of the code is:     plot(1) ; mtext(bquote("Cortisol ("~mu~"g/ml)")) This code inserts s

[R] Getting rid of spaces in plot math

2014-03-31 Thread Dennis Fisher
R 3.0.2 OS X Colleagues I am trying to label a graphic: Cortisol (µg/ml) A simplified version of the code is: plot(1) ; mtext(bquote("Cortisol ("~mu~"g/ml)")) This code inserts spaces around the mu: Cortisol ( µ g/ml) How can I suppress those spaces? Dennis Dennis Fishe