我使用facet_wrap
绘制一些数据。这是一个例子:
library (ggplot2)
library (reshape)
# generate some dummy data
x = seq(0,1,0.05)
precision = sqrt(x)
recall = 1 - precision
fmeasure = 2 * (precision * recall) / (precision + recall)
# prepare it for plotting
df = data.frame(x=x, precision=precision, recall=recall, fmeasure=fmeasure)
df = melt(df, id.vars=c(x))
# plot it
p = ggplot(df, aes(x=x, y=value, group=variable))
p = p + geom_line() + facet_wrap(~variable, ncol=3)
p = p + coord_cartesian(xlim=c(0,1), ylim=c(0,1)) # second plot is without this line
print (p)
图1:上述代码的图。
但是,您在图1中看到的是后续刻面的第一个和最后一个标签重叠。这可以通过增加构面之间的空间来解决。其他选项是删除xlim
和ylim
范围,如图2所示,但这会在构面本身中保留不必要的空间。
图2:删除了行p = p + coord_cartesian(xlim=c(0,1), ylim=c(0,1))
的绘图。
我试图增加小平面之间的空间,但到目前为止我一直无法做到这一点。你有什么建议吗?
我使用ggplot2版本0.9.1。
答案 0 :(得分:5)
对于0.9.1使用:p + opts(panel.margin = unit(2, "lines"))
但是你有很多额外的空白区域,IMO会失去一些分面效果(注意0.9.2现在使用theme
代替{{1 }})
多年来ggplot2 API发生了变化,截至2018-02-01这是更新的解决方案:
opts