Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Empty, unwanted Rplots.pdf #2787

Closed
carlislerainey opened this issue Jul 29, 2018 · 5 comments
Closed

Empty, unwanted Rplots.pdf #2787

carlislerainey opened this issue Jul 29, 2018 · 5 comments

Comments

@carlislerainey
Copy link

In the past, ggsave() run non-interactively with Rscript in the terminal produced the empty, unwanted file Rplots.pdf. See the history here according to @jennybc and her previous issue #1326. It seems like the issue has reappeared in ggplot2 v3.0.0.

Here are two examples. The first block of code uses ggplot2 v2.2.1**, which doesn't produce Rplots.pdf when called with Rscript in the terminal. The second block uses ggplot2 v3.0.0 and it does create Rplots.pdf.

Note that the code below installs packages.

v2.2.1 doesn't produce Rplots.pdf

# v2.2.1-no-error.R
# WARNING: This code installs packages!

# install version 2.2.1
devtools::install_github("tidyverse/ggplot2@v2.2.1")

# load version 2.2.1
library(ggplot2)

# create and plot data
x <- y <- 1:5
p <- qplot(x, y)
ggsave(filename = "wanted-v2.2.1.png",
       plot = p, 
       height = 3, width = 3)

# check whether the unwanted file exists and remove it
file.exists("Rplots.pdf")
file.remove("Rplots.pdf")

image

v3.0.0 does produce Rplots.pdf

# v3.0.0-error.R
# WARNING: This code installs packages!

# install version 3.0.0
devtools::install_github("tidyverse/ggplot2@v3.0.0")

# load version 3.0.0 
library(ggplot2)

# create and plot data
x <- y <- 1:5
p <- qplot(x, y)
ggsave(filename = "wanted-v3.0.0.png",
       plot = p, 
       height = 3, width = 3)

# check whether the unwanted file exists and remove it
file.exists("Rplots.pdf")
file.remove("Rplots.pdf")

image

carlislerainey added a commit to pos5737/50-legs that referenced this issue Jul 29, 2018
I also corrected a couple of errors/typos in the Makefile.

I switch the data-sources.Rmd file from glimpsing the `.csv` file to the `.rds` file, which is more consistent with the rest of the analysis.

# Rplots.pdf

There was a weird error where I get an empty Rplots.pdf file after running plot-sds.R. This was a known error (http://stat545.com/block017_write-figure-to-file.html#mysterious-empty-rplots.pdf-file and tidyverse/ggplot2#1326), but apparently had been fixed--I'm running ggplot2 3.0.0.

I tried downloading the development version of ggplot2, but that didn't solve the problem. I grabbed v2.0.0 from GitHub, but other packages depend on >2.2.1. I tried with 2.2.1 and it seemed to fix the error, so I submitted an issue (tidyverse/ggplot2#2787).
@hadley
Copy link
Member

hadley commented Jul 29, 2018

Probably related to #2363

@clauswilke
Copy link
Member

Would you mind checking with devtools::install_github("clauswilke/ggplot2:issue-2363-ggsave")?

@carlislerainey
Copy link
Author

@clauswilke's issue-2363-ggsave branch (d44b60f) fixes the problem.


For completeness, I'm getting an error with @clauswilke's suggested install command, though.

image

I used the following, which I think accomplishes what he wants.

devtools::install_github("clauswilke/ggplot2", 
                         ref = "d44b60fe9173cf6e3a135d0aaf392a1a277dbb46")

The working example with d44b60f is then:

# clauswilke-fix.R
# WARNING: This code installs packages!

# install clauswilke's version 
devtools::install_github("clauswilke/ggplot2", 
                         ref = "d44b60fe9173cf6e3a135d0aaf392a1a277dbb46")
# load clauswilke's version 
library(ggplot2)

# create and plot data
x <- y <- 1:5
p <- qplot(x, y)
ggsave(filename = "wanted-clauswilke.png",
       plot = p, 
       height = 3, width = 3)

# check whether the unwanted file exists and remove it
file.exists("Rplots.pdf")
file.remove("Rplots.pdf")

This doesn't create Rplots.pdf. Success!

image

@clauswilke
Copy link
Member

Yes, apologies, should have been devtools::install_github("clauswilke/ggplot2@issue-2363-ggsave").

I'll close this as a duplicate of #2363. It seems that my PR fixes the problem.

@lock
Copy link

lock bot commented Jan 26, 2019

This old issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with reprex) and link to this issue. https://reprex.tidyverse.org/

@lock lock bot locked and limited conversation to collaborators Jan 26, 2019
# for free to subscribe to this conversation on GitHub. Already have an account? #.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants