0

我有一个如下的数据框(结构非常简单),我想绘制一个柱形图来显示每个日期的金额。问题是date有重复的条目(例如,2020-01-15)。

  # A tibble: 5 x 2
  date       amount
  <date>      <dbl>
1 2020-01-02  4000 
2 2020-01-06  2568.
3 2020-01-15  2615.
4 2020-01-15  2565 
5 2020-01-16  2640 

当我尝试执行以下操作时,它会以某种方式将相似的日期组合在一起并绘制一个堆积柱形图,这不是我想要的。

df %>%  
    ggplot(aes(x= factor(date), y=amount)) +
    geom_col()
    scale_x_discrete( labels = df$date ) #this creates discrete x-axis labels but the values are still stacked. So it just messes things up.

如果我正在使用没有问题,geom_line()但我想看到每个日期的栏。知道怎么做吗?

4

1 回答 1

1

尝试:

df %>% 
  ggplot(aes(date, amount)) +
  geom_col(position = position_dodge2()) + 
  scale_x_date(breaks = unique(df$date))

结果:

在此处输入图像描述

于 2020-12-16T02:12:57.467 回答