我正在使用带有geom_bar
图层的ggplot。
library(ggplot2)
library(dplyr)
library(reshape2)
dat <- data.frame(
A = c(1, 1, 0.5),
B = c(1.2, 1, 0.6),
FF = c("F1", "F2", "F3")
) %>%
mutate(Other = max(A,B))
dat.m <- melt(dat)
我想重现我看到的与ggplot
默认指南不同的因子注释。我不希望fill
审美在面板右侧的图例中,文本与每种填充颜色并排,我希望文本在面板中着色并显示。
这是默认选项:
ggplot(filter(dat.m, variable != "Other")) +
geom_bar(aes(x = variable, y = value, fill=FF),
stat="identity")
这就是我模仿我追求的风格所做的:
ggplot() +
geom_bar(filter(dat.m, variable != "Other"),
mapping = aes(x = variable, y = value, fill = FF),
stat="identity") +
geom_text(filter(dat.m, variable == "Other"),
mapping = aes(x = variable, y = value, col = FF, label=FF),
position="stack", fontface="bold") +
guides(fill = FALSE, colour=FALSE, text=FALSE)
一些问题:
max
,如果条形高度相似则没问题)。文本可以位于图表背景的右上角吗?hjust=0
使其左对齐,但文本的左边距位于类别的中间。 (这可以通过解决第一点来解决。)答案 0 :(得分:1)
我最终选择annotate()
来实现您的目标。您可以这种方式指定文本的颜色。
ggplot(data = filter(dat.m, variable != "Other"),
aes(x = variable, y = value, fill = FF)) +
geom_bar(stat="identity") +
annotate("text", x = 2.55, y = 2.6, label = "F1", color = "#F8766D") +
annotate("text", x = 2.55, y = 2.7, label = "F2", color = "#00BA38") +
annotate("text", x = 2.55, y = 2.8, label = "F3", color = "#619CFF") +
theme(legend.position="none")