来自此示例:
df <- data.frame(TYPE = c("A", "B", "C", "D", "E", "F"), VALUE = c(10, 11, 9, 12, 10, 8))
ggplot(df, aes(x = TYPE, y = VALUE)) + geom_bar(stat = "identity")
是否可以在每个X条形图之后添加一个空格?在这段代码中,可能每隔一秒便会出现一次(以便在B / C和D / E之间有一个空格,而在其他之间则没有。)
我在SO上发现的线程专注于在所有小节之间添加空格。
Adding space between bars in ggplot2
How to increase the space between the bars in a bar plot in ggplot2?