我正在执行此代码:
url <- 'http://pdet.mte.gov.br/images/Seguro-Desemprego/Segunda%20Quinzena%20de%20Maio/3-%20S%C3%A9rie%20Hist%C3%B3rica%20do%20Seguro-Desemprego%20-%202000%20a%202020%20-%20mensal.xlsx'
data <- rio::import(url, which = "Tabela 1")[-(1:4),] # import data from brazilian gov
# preparing the data
my_df <- t(data[(1),-1])
dates <- seq(as.Date('2000-01-01'), as.Date('2020-05-01'), by='1 month')
meses <- format(dates,"%b")
anos <- as.numeric(format(dates,"%Y"))
my_df <- data.frame(anos, meses, as.numeric(my_df))
colnames(my_df) <- c('year', 'month', 'amount')
my_df <- subset(my_df, month %in% c('jan', 'fev', 'mar', 'abr', 'mai'))
my_df$month <- factor(my_df$month, levels=c('jan', 'fev', 'mar', 'abr', 'mai'))
> str(my_df)
'data.frame': 105 obs. of 3 variables:
$ year : num 2000 2000 2000 2000 2000 ...
$ month : Factor w/ 5 levels "jan","fev","mar",..: 1 2 3 4 5 1 2 3 4 5 ...
$ amount: num 343398 375906 394778 347326 386524 ...
# plot
ggplot(my_df, aes(y = year, x = amount/100000)) +
geom_bar(aes(fill = month), stat = "identity", position = position_stack(reverse = TRUE)) +
labs(title='Seguro-Desemprego: nº de requerimentos por mês',
subtitle='Valores acumulados no ano (milhões), corte em maio',
color = '', x = '', y = '') +
theme(panel.background = element_blank(),
panel.grid.minor = element_blank(),
panel.grid.major = element_blank(),
plot.background = element_rect(fill='moccasin'),
plot.title = element_text(color = "red3", size = 19, face = "bold"),
plot.subtitle = element_text(color = "red4", size = 12, face = "bold"),
plot.caption = element_text(color = "red4", size = 11, face = "bold"),
axis.line = element_blank(),
axis.text.y = element_text(color = "red4", size = 11, face = "bold"),
axis.text.x = element_blank(),
axis.ticks=element_blank(),
legend.position = "none") +
scale_fill_brewer(palette="Set1", direction = -1) +
scale_y_continuous(trans = "identity",
breaks = seq(from = 2000, to = 2020, by = 1),
expand = c(0,0)) +
scale_x_continuous(expand = c(0,0)) +
geom_text(aes(label = month), size = 4.6, hjust = 1, vjust = .3, position = "stack", color = "white", fontface=2)
但是我想将amount
变量的总数乘以year
在每个小节的末尾。也就是说,我希望将整个堆叠的条形图的总和置于其顶部(在右侧情况下)。
我曾尝试在几种规格中使用stat_summary
和geom_text
,但没有得到理想的结果。有什么方法可以执行而不必修改我的数据框吗?
编辑
好消息,我刚刚使用stat_summary获得了预期的结果,像这样:
stat_summary(aes(label = stat(x)/ 10),fun ='sum',geom ='text',col ='red4',hjust = -.25,vjust = .45,fontface = 2, 位置=“身份”,尺寸= 3.6)
找到解决方案:
+ stat_summary(aes(label = stat(x)/10),
fun = 'sum',
geom = 'text',
col = 'red4',
hjust = -.25,
vjust = .45,
fontface = 2,
position = "identity",
size = 3.6)