为剧情添加额外信息!环R

时间:2016-08-12 12:09:10

标签: r violin-plot

我通过添加不同的情节和这一行来创建以下小提琴情节:

windows()
mat<-(matrix(1:3,ncol=3))
layout(mat,widths = rep.int(1, ncol(mat)),heights = rep.int(1,nrow(mat)),respect =F)
layout.show(n = 3)
par(mar=c(4, 0.2, 2, 0.2), oma=c(0, 7, 0, 0.5))

enter image description here

现在我想在Y轴上添加一条线,就像下图中的X轴所示:

enter image description here

正如您所看到的,X轴上的这一行添加了有关样本来自的大陆的信息。

如何将此信息添加到我的情节的Y轴?我需要提供更多代码吗?谢谢!

1 个答案:

答案 0 :(得分:0)

我发现添加这些行非常棘手,所以我只是将它们导入到Inkscape并在那里进行微调(添加行,图例等) 例如,如果绘图的名称是plotname,则键入:

svg(filename =“myplot.svg”,width = 16,height = 10)

plotname

dev.off()

希望这很有用,