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
The reprex here uses {hexbin}, but I think the error is arising from {ggplot2}, just that I haven't come up with another example.
library(hexbin) library(ggplot2) options(warnPartialMatchDollar=TRUE) DF=data.frame( a=1:5, b=11:50, d=c("A","B","C","D"), f=1:5, grp=1:5 ) p=ggplot(DF) + geom_hex(aes(b, f)) print(p) # Warning message: # In vp$just : partial match of 'just' to 'justification'
Unfortunately options(warn=2) then browser() doesn't yield a traceback, so I'm not sure how to proceed.
options(warn=2)
browser()
just
grid::viewport()
"just" %in% names(formals(grid::viewport))
print.ggplot
ggplot2/R/plot.R
Line 208 in be4b7b8
And then:
ggplot2/R/plot-build.R
Line 191 in be4b7b8
but I can't debug that call to plot$guides$assemble.
plot$guides$assemble
https://github.com/search?q=org%3Acran+lang%3AR+%2Fvp%5B%24%5Djust%5B%5Ei%5D%2F&type=code
As well as this match in {grid} itself:
https://github.com/r-devel/r-svn/blob/125ad32d2f936092815062366733b30b1a87d39f/src/library/grid/R/viewport.R#L472
(but debugging editViewport() doesn't pick up any calls)
editViewport()
Any ideas where this error might be coming from?
The text was updated successfully, but these errors were encountered:
Hi there, thanks for the report! Is this by any chance the same as #5654? If so, there is already a PR pending in {gtable}: r-lib/gtable#94
Sorry, something went wrong.
100%, great news!
No branches or pull requests
The reprex here uses {hexbin}, but I think the error is arising from {ggplot2}, just that I haven't come up with another example.
Unfortunately
options(warn=2)
thenbrowser()
doesn't yield a traceback, so I'm not sure how to proceed.just
in calls togrid::viewport()
, and indeed"just" %in% names(formals(grid::viewport))
just
; stepping throughprint.ggplot
, the error happens at this line:ggplot2/R/plot.R
Line 208 in be4b7b8
And then:
ggplot2/R/plot-build.R
Line 191 in be4b7b8
but I can't debug that call to
plot$guides$assemble
.https://github.com/search?q=org%3Acran+lang%3AR+%2Fvp%5B%24%5Djust%5B%5Ei%5D%2F&type=code
As well as this match in {grid} itself:
https://github.com/r-devel/r-svn/blob/125ad32d2f936092815062366733b30b1a87d39f/src/library/grid/R/viewport.R#L472
(but debugging
editViewport()
doesn't pick up any calls)Any ideas where this error might be coming from?
The text was updated successfully, but these errors were encountered: