I want to draw a scatterplot with three polygons in the background colouring specific areas. It should look like this. The code works fine with 4 variables on the y axis, but throws and error when I add a fifth. I can't figure out the reason.
The Error:
Error: Aesthetics must be either length 1 or the same as the data (5): x, y
The reproducable code:
library(dplyr)
library(ggplot2)
v1 <- c(1, 1, 1)
v2 <- c(1, 0, 0)
v3 <- c(1, 0, 1)
v4 <- c(0, 1, 1)
v5 <- c(1, 0, 1)
xG <- c(3, 3, 3, 3, 3)
input <- c(v1, v2, v3, v4, v5)
df <- data_frame(values = input,
module = c(rep("A", length(v1)),
rep("B", length(v2)),
rep("C", length(v3)),
rep("D", length(v4)),
rep("E", length(v5))))
perWorkField <- df %>%
group_by(module) %>%
summarise(sums = sum(values)) %>%
mutate(percent = round((sums / xG) * 100, 2))
ggplot(data = perWorkField) +
geom_point(mapping = aes(x = percent, y = module)) + xlim(c(0, 100)) +
geom_polygon(aes(x = c(0, 30, 30, 0), y = c(0.5, 0.5, 5.5, 5.5)),
fill="#F5817A",
color = NA) +
geom_polygon(aes(x = c(30, 75, 75, 30), y = c(0.5, 0.5, 5.5, 5.5)),
fill="#FFFF0044",
color = NA) +
geom_polygon(aes(x = c(75, 100, 100, 75), y = c(0.5, 0.5, 5.5, 5.5)),
fill="#00FF0044",
color = NA) +
geom_point(mapping = aes(x = percent, y = module), shape = 20, size = 5) + theme_classic()
I appreciate any advice. Thanks in advance!
You can try this to make it work, I replaced the data argument in order to make it work properly