-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
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
Empty raster #943
Comments
Here is another case which triggers the same error: R version 3.1.1 (2014-07-10) library(ggplot2)
d <- data.frame(x=1, y=10, z=260)
ggplot(d, aes(x, y)) + geom_tile(aes(fill=z)) ## Works properly
d <- data.frame(x=1, y=10, z=261)
ggplot(d, aes(x, y)) + geom_tile(aes(fill=z))
Error in grid.Call.graphics(L_raster, x$raster, x$x, x$y, x$width, x$height, :
Empty raster |
According to the stack trace, this is probably a
The function |
I stand corrected, it seems to be a
|
When I try to do
I get the error "Error in grid.Call.graphics(L_raster, x$raster, x$x, x$y, x$width, x$height, : Empty raster"
I described this issue in a little more detail here http://stackoverflow.com/questions/23003527/weird-ggplot2-error-empty-raster
The text was updated successfully, but these errors were encountered: