vote up 5 vote down star

I would like to add LaTeX typesetting to elements of plots in R (e.g., the title, axis labels, annotations, etc.) using either the combination of base/lattice or with ggplot2.

Is there a way to get LaTeX into plots using these packages, and if so, how is it done? If not, are there additional packages needed to accomplish this.

For example, in Python matplotlib compiles LaTeX via the text.usetex packages as discussed here: http://www.scipy.org/Cookbook/Matplotlib/UsingTex

Is there a similar process by which such plots can be generated in R?

flag

4 Answers

vote up 0 vote down

Here's one solution, from Frank Harrell:

http://biostat.mc.vanderbilt.edu/wiki/Main/PsFrag

link|flag
vote up 3 vote down

You can generate tikz code from R: http://r-forge.r-project.org/projects/tikzdevice/

link|flag
This package is now on CRAN. cran.r-project.org/web/packages/… – Rob Hyndman Sep 13 at 4:28
vote up 1 vote down

As stolen from here, the following command correctly uses LaTeX to draw the title:

plot(1, main=expression(beta[1]))

See ?plotmath for more details.

link|flag
Interesting, also good stuff with demo(plotmath) So mathematical notation has to be re-interpreted through plotmath's syntax? That seems like a glorious waste of time, especially if you have an involved LaTeX expression. That's why I like matplotlib's ability to compile LaTeX itself. Is there something that can take LaTeX and generate plotmath syntax? – DrewConway Sep 8 at 19:20
Not that I know of. There's an interesting post at RWiki about getting latex to work with ggplot2: wiki.r-project.org/rwiki/… – chris_dubois Sep 8 at 20:06
vote up 3 vote down

Here's an example using ggplot2:

q <- qplot(cty, hwy, data = mpg, colour = displ)
q + xlab(expression(beta +frac(miles, gallon)))

alt text

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.