Re: [R] Italicized title from index

2011-03-31 Thread Jeremy Newman
Hi, Thank you *very* much. I'll remember that in the future! Cheers, -Jeremy N Undergraduate Researcher in Macroecology University of Ottawa Department of Biology Ad astra per alia porci! On Thu, Mar 31, 2011 at 8:01 AM, Henrique Dallazuanna wrote: > Better: > > plot(1, main = bquote("Yiel

Re: [R] Italicized title from index

2011-03-31 Thread Henrique Dallazuanna
Better: plot(1, main = bquote("Yield for " ~ italic(.(as.character(spp))) ~ "in management region" ~ .(region))) You have a factor, so you need convert it to character On Thu, Mar 31, 2011 at 8:59 AM, Henrique Dallazuanna wrote: > Try this: > > plot(1, main = bquote("Yield  for " ~ italic(.(s

Re: [R] Italicized title from index

2011-03-31 Thread Henrique Dallazuanna
Try this: plot(1, main = bquote("Yield for " ~ italic(.(spp)) ~ "in management region" ~ .(region))) On Thu, Mar 31, 2011 at 2:35 AM, Jeremy Newman wrote: > Hi all! > > I've written a handy script that uses a for loop to allow me to generate a > large number of figures and statistical outputs f

[R] Italicized title from index

2011-03-30 Thread Jeremy Newman
Hi all! I've written a handy script that uses a for loop to allow me to generate a large number of figures and statistical outputs for a large dataset. I am using indexing to retrieve a species name for the title of my graphs- which worked fine. However, I need to italicize these species names.