我有一个 ggplot2 条形图,我更改了轴刻度。但是,面板网格正在添加我不想要的其他行。如何删除它们?
我的问题:
我只想要与 x-axis ticks 匹配的垂直网格线。
由于有一个组和一个填充,位置闪避保留无法正常工作。
我的代码:
ggplot(byyear, aes(x = year, y = count, group = venue, colour = venue, fill = type)) +
geom_bar(stat = "identity", position=position_dodge(preserve = "single")) +
# BORDER SO I CAN DISTINGUISH THEM
scale_colour_manual(name = "Venue", values = c("#FFFFFF", "#FFFFFF")) +
# MAKE ALL YEARS APPEAR
scale_y_continuous(labels = number_format(accuracy = 1)) +
scale_x_continuous(breaks = unique(byyear$year)) +
theme(legend.position="bottom",
axis.text.x = element_text(angle = 90, hjust = 1))
数据结构如下:
year,venue,type,count
2010,venue1,type1,163
2010,venue1,type2,18
2011,venue1,type1,16
...
我得到的情节如下(我删除了情节上的图例)