Jason Horn
2007-Sep-17 18:00 UTC
[R] How to produce a macron symbol (overline / overbar) on a plot
Can anyone tell me how to produce a macron (or overbar or overline) symbol on an R plot. I have an axis that is labeled "temp", but I need the overbar symbol over the entire word. Thanks, Dr. Jason W. Horn Research Associate Boston University Department of Biology 5 Cumington Street Boston, MA 02215 jhorn@bu.edu office: 617 353 6987 cell: 401 588 2766 [[alternative HTML version deleted]]
Marc Schwartz
2007-Sep-17 18:12 UTC
[R] How to produce a macron symbol (overline / overbar) on a plot
On Mon, 2007-09-17 at 14:00 -0400, Jason Horn wrote:> Can anyone tell me how to produce a macron (or overbar or overline) > symbol on an R plot. I have an axis that is labeled "temp", but I > need the overbar symbol over the entire word.See ?plotmath and the examples therein. Example: plot(1, xlab = expression(bar(temp))) HTH, Marc Schwartz
Vladimir Eremeev
2007-Sep-17 18:24 UTC
[R] How to produce a macron symbol (overline / overbar) on a plot
xlab=expression(bar(temp)) or xlab=expression(bar(" temp")) The overbar looks like it begins above "e" in the first case. See demo(plotmath). Jason Horn wrote:> > Can anyone tell me how to produce a macron (or overbar or overline) > symbol on an R plot. I have an axis that is labeled "temp", but I > need the overbar symbol over the entire word. >-- View this message in context: http://www.nabble.com/How-to-produce-a-macron-symbol-%28overline---overbar%29-on-a-plot-tf4468656.html#a12742054 Sent from the R help mailing list archive at Nabble.com.