fixed <- as.data.frame(rep(0.125, 8))
fixed[, 2] <- c("1", "2", "3", "4", "5", "6", "7", "8")
colnames(fixed) <- c("Percentage", "Test")
Давайте добавим некоторую структуру в сборку ggplot2.И мы собираемся переместить некоторые data
и aes()
непосредственно в stat_
с и geom_
с, чтобы мы могли сделать пометку, а именно, geom_rect()
аннотация.Комментарии находятся в / около заметных строк:
ggplot() +
geom_boxplot(
data = fixed, aes(x = Test, y = Percentage, fill = Test)
) +
geom_rect( # HERE IS UR BOX
data = data.frame(),
aes(xmin = -Inf, xmax = Inf, ymin = 0.565, ymax = Inf),
size = 2.5, fill = "#00000000", color = "black"
) +
stat_summary(
data = fixed, aes(Test, Percentage),
fun.data = function(y) {
data.frame(
y = 0.6,
label = paste(round(mean(y), 2))
)
},
geom = "text", size = 3
) +
scale_y_continuous(
limits = c(0, 0.6), breaks = seq(0, 0.6, 0.1),
labels = c("0%", "10%", "20%", "30%", "40%", "50%", "Mean")
) +
scale_fill_manual(
values = c(
"#00441b", "#006d2c", "#238b45", "#41ab5d",
"#74c476", "#a1d99b", "#c7e9c0", "#e5f5e0"
)
) +
coord_cartesian(clip = "off") + # WE NEED TO TURN CLIPPING OFF
labs(
x = "Test", y = "Percentage", title = "Title"
) +
theme_bw() +
theme(
legend.position = "none", # YOU HAD THIS IN A SEPARATE theme(). IT PAYS TO HAVE A CODE STYLE
panel.grid.major = element_blank(),
panel.grid.minor = element_blank(),
panel.background = element_rect(fill = "grey90", colour = NA),
plot.background = element_rect(fill = "grey90", colour = NA),
plot.title = element_text(size = 12, hjust = 0.5),
plot.margin = unit(c(1, 1, 1, 1), "cm"),
axis.text.y = element_text( # MAKE THE "Mean" BIG & BOLD
size = c(rep(10, 6), 20), face = c(rep("plain", 6), "bold")
)
)