使用facet_grid()在ggplot2中释放y轴

时间:2016-08-20 15:12:56

标签: r plot ggplot2 facet

以下是使用ggplot2绘制数据的代码的一部分,下面您可以看到生成的图。

ggplot(dd_all, aes(x=sequence, y=value) + geom_line() + geom_point() +
  scale_colour_manual(values=c('orange', 'red', 'blue','sky blue','dark green'),labels=c('MLR', 'ANN', 'M5','M5 Bag','RF')) +
  facet_grid(measure ~ period, switch ='y', scales = "free")

enter image description here

我想为我的(八个)情节使用不同的(y)尺度。使用scales = 'free'scales = 'free_y',我只能设法为每一行获得不同的比例。但是,我想获得验证和校准数据的不同比例(例如右列和左列)。

为什么我想这样做,很明显很明显。

0 个答案:

没有答案