I am using ESS in order to stay in Emacs when working with R. Whenever I create a plot a new pop-up appears with the graph. This new window seems to be a part of the R process called inside Emacs. As such the new window is not part of the buffer-list and seems to lie outside the Emacs environment.

Can a new window created by R, containing e.g. graphs called by plot() or respective functions in ggplot2/lattice, be forced to stay inside the Emacs environment? So that the plot is available as a new buffer.

Thanks!

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

No, sorry, it cannot. Emacs buffers are text. Graphics windows are graphics devices.

But you can do this yourself. Before plotting, or even at the begin of a session, say

pdf(file="/tmp/myplotfile.pdf")

and now plots will go there. You can then open the pdf file in Emacs, and recent versions include a pdf preview inside Emacs (at least on my Linux boxen, not sure if I needed extra modes for that). That would come close to your requirements.

link|improve this answer
ok, that would be an idea. but then i have to call 'dev.off()' every time i called a plotting function and start a new 'pdf()' function before i create a new plot or update the old one. – mropa Feb 19 '11 at 20:51
You can add several plots to the same file, see help(pdf) and the onefile option. But you may need to call dev.off() to synchronise / flush the file buffer. But that may be the price you have to pay for what a somewhat uncommon usage pattern. – Dirk Eddelbuettel Feb 19 '11 at 21:11
I am using the DocView mode in Emacs when loading the pdf. An automatic update does not work that smoothly, so when i call 'plot()' twice, the buffer with the pdf notes an error. only after calling 'dev.off' the buffer gets updated and i see the two plots. hmm....ok, then i guess i stay with the usual setting. but thanks dirk for the informations. – mropa Feb 19 '11 at 21:24
You could also use png(...) so Emacs doesn't have to use Ghostscript to convert PDF to PNG. Unfortunately auto-revert-mode seems to not work properly at all though a regular M-x revert-buffer does. – Nicholas Riley Feb 19 '11 at 21:30
feedback

Oh yes it can...

In ESS, do this:

png(file="tmp.png")
plot(1:10)
dev.off()
# [[tmp.png]]

Nothing. Now do ESC X iimage-mode (yes, two i's there).

This puts your buffer into iimage minor mode, it should spot the [[tmp.png]] and load your image in there. This should be easily automatable. This is the first time I've discovered this for myself so there's probably better ways to do it.

There's clearly been some chatter on the ESS list about this:

https://stat.ethz.ch/pipermail/ess-help/2009-August/005474.html

but I am surprised its not in the ESS core yet...

link|improve this answer
1  
Well that is more or less the same as my earlier answer, and not what OP asked for. He wants an emacs buffer as a native R graphics device. Which one would have to code. – Dirk Eddelbuettel Feb 19 '11 at 22:46
Hmm ah yes, as a new buffer... Sadly I don't think you can write a graphics driver in pure R at the moment, which would make doing this a lot easier... – Spacedman Feb 19 '11 at 23:04
omegahat.org/RGraphicsDevice/overview.html i seem to be full of wrong today... – Spacedman Feb 19 '11 at 23:09
feedback

try this:

X11()   #  starts a X11 graphics device
plot(c(1:10),c(1:10))
savePlot(filename = "try_save_X11.png",type = c("png"))
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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