We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After executing:
library(ggplot2) library(patchwork) p1 = ggplot(mtcars, aes(x = factor(cyl), y = mpg)) + geom_violin() p2 = ggplot(mtcars, aes(x = factor(cyl), y = mpg)) + geom_boxplot() p = p1 + p2 str(p, max.level = 1)
An error shows up:
List of 10 $ data :List of 9 ..- attr(*, "class")= chr [1:2] "gg" "ggplot" $ layers :List of 9 ..- attr(*, "class")= chr [1:2] "gg" "ggplot" $ scales : Error: Index out of bounds Traceback: 1. str(p, max.level = 1) 2. str.default(p, max.level = 1) 3. object[[i]] 4. `[[.patchwork`(object, i) 5. stop("Index out of bounds", call. = FALSE)
Is this some kind of a bug?
The text was updated successfully, but these errors were encountered:
fixed now
Sorry, something went wrong.
Add issue link (Fix #217)
79223d3
Thank you, it works now
No branches or pull requests
After executing:
An error shows up:
Is this some kind of a bug?
The text was updated successfully, but these errors were encountered: