You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This patch fixes an example that triggers an error:
library(ggplot2)
nc <- sf::st_read(system.file("shape/nc.shp", package = "sf"), quiet = TRUE)
ggplot(nc) +
geom_sf(aes(fill = AREA)) +
scale_y_continuous(
breaks = c(34, 35, 36),
labels = c("34*degree*N", "", "36*degree*N")
)
#> Error in parse(text = x)[[1]]: subscript out of bounds
See #2867 for more details.
0 commit comments