I'm trying to plot a geom_rect()
. Why do I receive an Error in FUN(X[[i]], ...) : object 'Month' not found
? If I run df$Month
in my console the object is there:
df$Month
#> [1] 2019-01 2019-02 2019-03
#> Levels: 2019-01 2019-02 2019-03
Here's my code block:
library(tidyverse)
df <- tibble(Month = factor(c("2019-01", "2019-02", "2019-03")),
Value = c(4, 9, 7))
ggplot(df, aes(Month, Value, group = 1)) +
geom_line() +
theme_minimal() +
geom_rect(data =
data.frame(xmin = min(as.integer(df$Month)) - 0.5,
xmax = max(as.integer(df$Month)) + 0.5,
ymin = min(df$Value),
ymax = max(df$Value)),
aes(xmin = xmin, xmax = xmax, ymin = ymin, ymax = ymax),
alpha = 0.2, fill = "green")
#> Error in FUN(X[[i]], ...) : object 'Month' not found
This works:
by unmapping the inherited x/y aesthetics from the top ggplot call. It's understandable that this might be confusing, though, since the description in
?geom_rect
sorta kinda implies thatgeom_rect
isn't looking for those aesthetics at all.I was able to return your desired result by calling
df
ingeom_line()
aftergemo_rect()
. However leaving the Month field as is returned the error: Error: Discrete value supplied to continuous scale.I worked around this by wrapping
as.integer()
around Month.You might have to clean up your x-axis label but it achieves desired outcome!
You just have an extra step of setting up a dataframe in
geom_rect
which coincide with data inggplot
. Simply provide your max and min values togeom_rect
and it works: