【发布时间】:2020-03-03 23:35:00
【问题描述】:
我正在尝试在闪亮的上下文中创建条形图。一切看起来都不错,除了标签。如下图所示,一些标签隐藏在顶部水平线的后面。
Diff_plot <- reactive({
ggplot(Diff_data(), aes(x =Difficulty_Type, y = Percentage, fill=County.y)) + geom_bar(stat =
"identity",
position = position_dodge()
) +
scale_fill_manual(values=cbbPalette)+
geom_text(
aes(label = Percentage2),
vjust = 0,
colour = "black",
position = position_dodge(width=0.9),
fontface = "bold",
size=4,
angle = 90,
hjust = 0
) +
labs(
x = "",
y = "Frequecny",
face = "bold"
) +
theme_bw() + scale_y_continuous(labels = scales::comma) +
theme(plot.title = element_text(
hjust = 0.5,
size = 15,
colour = "Black",
face = "bold"
)
【问题讨论】: