我有一个情节,其标签是形式的因素" 1990-2012"。它们太长和/或它们太多并且它们重叠。
我想在两行上打印每个标签并在连字符后打破它,如下所示:
对于将标签分成两部分仍然不够的情况,我还想知道如何只打印所有其他标签。
我的一个限制是标签应该在原地进行"没有预处理data.frame和/或标签,尽管在ggplot调用中应用的自定义函数也没问题。
这是神圣的数据框(不能改变):
df <- structure(list(Period = structure(1:13, .Label = c("0-1000",
"1000-1500", "1500-1700", "1700-1820", "1820-1913", "1913-1950",
"1950-1970", "1970-1990", "1990-2012", "2012-2030", "2030-2050",
"2050-2070", "2070-2100"), class = "factor"), value = c(0.000168759866884916,
0.000989913144738397, 0.00159894629454382, 0.0045594248070473,
0.00585564273031225, 0.00932876890888812, 0.0191066122563939,
0.0183146076484786, 0.0130117469870081, 0.00923670910453378,
0.00560791817163286, 0.00272731553972227, 0.00149387241891397
), variable = c("World", "World", "World", "World", "World",
"World", "World", "World", "World", "World", "World", "World",
"World")), .Names = c("Period", "value", "variable"), row.names = c(NA,
-13L), class = "data.frame")
这是ggplot:
library(ggplot2)
p <- ggplot(data = df, aes(x = Period, y = value, group = variable)) + geom_line() + theme_bw()
如果我在连字符后面有空格,则以下方法可行:
library(stringr)
p + scale_x_discrete(labels = function(x) str_wrap(x, width = 4))
[上面的两行用于制作第二个图,在我手动更改数据框以在日期分隔连字符后添加空格,换句话说,在我被欺骗之后]
以下打印较少标签的方法通常有效,但在此处失败:
library(scales)
p + scale_x_discrete(breaks = pretty_breaks(n = 6))
答案 0 :(得分:6)
这是你在找什么?
p + scale_x_discrete(
labels=function(x){
x2 <- sub("(\\d+)\\-(\\d+)",
"\\1\\-\n\\2",
x)
x2
})
实际上中间x2
甚至不是必需的,这个
p + scale_x_discrete(
labels=function(x){
sub("(\\d+)\\-(\\d+)","\\1\\-\n\\2",x)
})
更紧凑。
修改强> 一个更简洁的解决方案,感谢@jlhoward:
p + scale_x_discrete(
labels=function(x) sub("-","-\n",x,fixed=TRUE))