R ggplot2:条内的标签,没有堆叠 geom_bar
R ggplot2: labels inside bars, no stacked geom_bar
我有以下数据集:
data <- structure(list(Q14 = c("< 5 people", "> 11 people", "6-10 people",
NA), count = c(148L, 13L, 34L, 21L), var = c("Team Size", "Team Size",
"Team Size", "Team Size")), row.names = c(NA, -4L), class = c("tbl_df",
"tbl", "data.frame"))
然后我将 geom_bar 绘制如下:
library(ggplot2)
library(wesanderson)
ggplot(data) +
geom_bar( aes(x = var, y = count, fill = Q14), stat = "identity", position = "fill") +
coord_flip() +
theme(legend.position = "none",
axis.title.x=element_blank(), axis.title.y=element_blank()) +
scale_fill_manual(values = wes_palette("Zissou1", 3, type = "continuous"))
我想打印栏内的标签,如下。注意:我的编辑技术很烂,我当然希望标签对齐,而且它们也可以逆时针旋转。
另一种选择是获得如下东西,我也喜欢:
一种选择是使用 geom_text
:
ggplot(data, aes(x = var, y = count, fill = Q14, label = Q14)) +
geom_bar(stat = "identity", position = "fill", ) +
geom_text(position = position_fill(vjust = 0.5), size = 3) +
coord_flip() +
theme(legend.position = "none",
axis.title.x=element_blank(),
axis.title.y=element_blank()) +
scale_fill_manual(values = wes_palette("Zissou1", 3, type = "continuous"))
另一种选择是使用 geom_label_repel
来自 ggrepel
:
library(ggrepel)
ggplot(data, aes(x = var, y = count, fill = Q14, label = Q14)) +
geom_bar(stat = "identity", position = "fill", ) +
geom_label_repel(position = position_fill(vjust = 0.5),
direction = "y",
point.padding = 1,
segment.size = 0.2,
size = 3,
seed = 3) +
coord_flip() +
theme(legend.position = "none",
axis.title.x=element_blank(),
axis.title.y=element_blank()) +
scale_fill_manual(values = wes_palette("Zissou1", 3, type = "continuous"))
注意,seed
参数设置了每个label走向哪个方向的随机过程。如果您不喜欢我喜欢的那个,请选择一个不同的号码。
我有以下数据集:
data <- structure(list(Q14 = c("< 5 people", "> 11 people", "6-10 people",
NA), count = c(148L, 13L, 34L, 21L), var = c("Team Size", "Team Size",
"Team Size", "Team Size")), row.names = c(NA, -4L), class = c("tbl_df",
"tbl", "data.frame"))
然后我将 geom_bar 绘制如下:
library(ggplot2)
library(wesanderson)
ggplot(data) +
geom_bar( aes(x = var, y = count, fill = Q14), stat = "identity", position = "fill") +
coord_flip() +
theme(legend.position = "none",
axis.title.x=element_blank(), axis.title.y=element_blank()) +
scale_fill_manual(values = wes_palette("Zissou1", 3, type = "continuous"))
我想打印栏内的标签,如下。注意:我的编辑技术很烂,我当然希望标签对齐,而且它们也可以逆时针旋转。
另一种选择是获得如下东西,我也喜欢:
一种选择是使用 geom_text
:
ggplot(data, aes(x = var, y = count, fill = Q14, label = Q14)) +
geom_bar(stat = "identity", position = "fill", ) +
geom_text(position = position_fill(vjust = 0.5), size = 3) +
coord_flip() +
theme(legend.position = "none",
axis.title.x=element_blank(),
axis.title.y=element_blank()) +
scale_fill_manual(values = wes_palette("Zissou1", 3, type = "continuous"))
另一种选择是使用 geom_label_repel
来自 ggrepel
:
library(ggrepel)
ggplot(data, aes(x = var, y = count, fill = Q14, label = Q14)) +
geom_bar(stat = "identity", position = "fill", ) +
geom_label_repel(position = position_fill(vjust = 0.5),
direction = "y",
point.padding = 1,
segment.size = 0.2,
size = 3,
seed = 3) +
coord_flip() +
theme(legend.position = "none",
axis.title.x=element_blank(),
axis.title.y=element_blank()) +
scale_fill_manual(values = wes_palette("Zissou1", 3, type = "continuous"))
注意,seed
参数设置了每个label走向哪个方向的随机过程。如果您不喜欢我喜欢的那个,请选择一个不同的号码。