年ごとの収入を比較するためにプロットを作成しようとしていますが、それを動作させることができず、理由を理解できません。これが機能しない理由私は本当に理解していない年の収入を比較する
df <- data.frame(date = seq(as.Date("2016-01-01"), as.Date("2017-10-01"), by = "month"),
rev = rnorm(22, 150, sd = 20))
df %>%
separate(date, c("Year", "Month", "Date")) %>%
filter(Month <= max(Month[Year == "2017"])) %>%
group_by(Year, Month) %>%
ggplot(aes(x = Month, y = rev, fill = Year)) +
geom_line()
geom_path: Each group consists of only one observation. Do you need to adjust the group aesthetic?
:
は私のDFを考えてみましょう。私が望むのは、1月から10月までの2つの行です。