我有一个像这样的数据集:
日期值标签
2016/01 2 A
2016/02 3 A
2016/03 4 A
2016/04 5 A
2016/05 4 A
2016/05 4 B
2016/06 5 B
2016/07 6 B
日期“ 2016/05”在我的数据集中出现了两次。我想使用ggplot2生成条形图。如何使条形图具有两个相同的刻度标签?
目标图形如下:
答案 0 :(得分:1)
一种选择是创建一个新的ID
列,以便在x轴上具有唯一的类别:
library(tidyverse)
df <- structure(list(Date = c("2016/01", "2016/02", "2016/03", "2016/04",
"2016/05", "2016/05", "2016/06", "2016/07"),
Value = c(2L, 3L,4L, 5L, 4L, 4L, 5L, 6L),
Label = c("A", "A", "A", "A", "A", "B", "B", "B")), .Names = c("Date", "Value", "Label"),
row.names = c(NA, -8L), class = c("tbl_df", "tbl", "data.frame"))
df %>%
unite(ID, Date, Label) %>%
ggplot(aes(ID, Value)) +
geom_col()
或者,您可以使用Label
列来像这样对数据进行构面:
df %>%
ggplot(aes(Date, Value)) +
geom_col() +
facet_wrap(.~Label, scales = "free_x")