Created
October 23, 2017 16:05
-
-
Save joranE/a3a60075bf77b8e1e18e1d275c10d0a3 to your computer and use it in GitHub Desktop.
Obscure ggplot faceting bug?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(ggplot2) | |
# x axis tick labels for '4' panel, overlapping '6' facet label? | |
ggplot(mtcars,aes(mpg,disp)) + | |
facet_wrap(~cyl,dir = "v",nrow = 2,as.table = F) + | |
geom_point() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment