gpt4 book ai didi

堆积条形图上的R ggplot标签

转载 作者:行者123 更新时间:2023-12-04 02:24:12 24 4
gpt4 key购买 nike

<分区>

我有需要放入堆栈条形图中的数据,但是当我添加计数标签时,一些标签在类别上方,一些在类别下方。我尝试修改 geom_text 函数的位置参数无济于事。

下面是一个可重现的示例,显示了该类别上方“下方”类别座位的标签以及栏内“上方”类别座位的标签。

library(tidyverse)

data.frame(AgeGroup = sample(c(rep("Over",10),"Under"), 6000, replace = TRUE),
DueDate = sample(
seq( as.Date("2015-01-01"),
as.Date("2015-06-30"), by="1 month") ,
6000,replace = TRUE),
stringsAsFactors = TRUE) %>%
group_by(AgeGroup,DueDate) %>%
tally() %>% ungroup %>%
ggplot() +
geom_bar(aes(x=DueDate, y=n, fill = AgeGroup),stat = "identity") +
geom_text(aes(x=DueDate, y=n
,label = prettyNum(n,big.mark = ","))
, vjust = 0, size = 2) +
scale_y_continuous(labels = scales::comma) +
theme_bw() +
labs(title="Where are the labels")

下面是输出图表。 enter image description here

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com