0

It seems like there is a lower limit to how thin a line can be with geom_path

m <- ggplot(economics, aes(unemploy/pop, psavert))
m + geom_path(size = 0.05) ## same as below
m + geom_path(size = 0.5)  ## same as above

How can I make it thinner than this limit?

Rafael
  • 3,096
  • 1
  • 23
  • 61

1 Answers1

1

I posted a similar question here about not being able to see a small differences in line size when plotting in RStudio. The answer was that the differences in line size became noticeable once I saved the plot with ggsave(). The limit seemed to be how finely the RStudio graphics device/viewer could display different size lines.

Using your example, I also don't see a noticeable difference in line size when plotting size = 0.05 and size = 0.5 in RStudio. After saving the plot to a pdf with ggsave() though, I can see the difference after zooming in a bit.

sdevine188
  • 338
  • 3
  • 8