Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am encountering an odd problem. I am able to create and save pdf file using R/ggplot2 and view them while the R Console is running. As soon as I exit the R console, Preview on Mac OS X will no longer display the PDF. I have been able to save .png files w/o problem, but for reasons beyond my control, I need to save in pdf files. The code I am using to save is as follows:

  pdfFile <-c("/Users/adam/mock/dir/structure.pdf")
  pdf(pdfFile)
  ggplot(y=count,data=allCombined, aes(x=sequenceName, fill=factor(subClass))) + geom_bar()
  ggsave(pdfFile)  

Has anyone encountered a similar problem? If so, what do I need to do to fix it? Thank you very much for your time.

share|improve this question

2 Answers

up vote 16 down vote accepted

The problem is that you don't close the pdf() device with dev.off()

dat <- data.frame(A = 1:10, B = runif(10))
require(ggplot2)

pdf("ggplot1.pdf")
ggplot(dat, aes(x = A, y = B)) + geom_point()
dev.off()

That works, as does:

ggplot(dat, aes(x = A, y = B)) + geom_point()
ggsave("ggplot1.pdf")

But don't mix the two.

share|improve this answer
4  
+1 For ggsave() – Andrie Apr 11 '11 at 18:29
@Thierry There was nothing wrong with the original code I supplied - you don't need to save the previously plotted object in an object as ggsave() has a default for argument plot, the result of last_plot(). Hence I rolled back your edit. – Gavin Simpson Apr 11 '11 at 21:32

It is in the R FAQ, you need a print() around your call to ggplot() -- and you need to close the plotting device with dev.off() as well, ie try

pdfFile <-c("/Users/adam/mock/dir/structure.pdf")
pdf(pdfFile)
ggplot(y=count,data=allCombined,aes(x=sequenceName,fill=factor(subClass)))
      + geom_bar()
dev.off()

Edit: I was half-right on the dev.off(), apparently the print() isn;t needed. Gavin's answer has more.

share|improve this answer
the print() is needed when you put the call in a function or when you source the script. – Thierry Apr 11 '11 at 20:33
Thanks for answering Dirk! Stackoverflow is a real life saver at work. Whats the URL for the R FAQ you referred to? – wespiserA Apr 12 '11 at 0:44
2  
@wespiserA I wanted to include a LMGTFY link but SO won't allow me, so the actual link will have to suffice ;-) cran.r-project.org/doc/FAQ/R-FAQ.html – Gavin Simpson Apr 13 '11 at 12:30
haha, thanks Gavin, SO does all the work for me, well, besides the actual coding and reading of documents. – wespiserA Apr 13 '11 at 12:58
@Gavin Simpson, you should read this b4 egregiously recommending google, meta.stackoverflow.com/questions/8724/… – wespiserA Apr 14 '11 at 2:38
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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