【发布时间】:2020-05-06 08:32:53
【问题描述】:
我正在尝试为两个变量绘制 geom_col,这是我从 Excel 表中调用的。数据采用时间序列格式。
这是我的数据集。我想在一个栏中为所有日期绘制变量“Johor”和“TCK”。
head(df2)
# A tibble: 6 x 33
date Johor TCJ Kedah TCKe Kelantan TCKlntn Melaka TCMk N.Sembilan TCN9 Pahang
<date> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
1 2020-01-25 1 1 0 0 0 0 0 0 0 0 0
2 2020-01-26 0 1 0 0 0 0 0 0 0 0 0
3 2020-01-27 0 1 0 0 0 0 0 0 0 0 0
4 2020-01-28 1 2 1 1 0 0 0 0 0 0 0
5 2020-01-29 0 2 0 1 0 0 0 0 0 0 0
6 2020-01-30 1 3 0 1 0 0 0 0 0 0 0
这是我的 ggplot2 代码
ggplot(df2,aes(x=date, y=Johor, col=c(TCJ+Johor), group=c(TCJ+Johor)))+
geom_col(aes(fill=c(TCJ+Johor)),width=0.5
)+
theme(axis.text.x = element_text(angle=15, vjust=0.4)) +
labs(title="",
subtitle="")
所需的绘图输出。
【问题讨论】: