R中具有相同x轴的带状图

时间:2018-11-08 15:58:48

标签: r charts strip

我想使用R为以下两个具有相同x轴的向量中的每个向量制作带状图。 两个向量是: x <-c(40,35,30,45,35,45,65,65,70,70) y <-c(45,45,45,45,45,45,45,45,45,95)

当我为两者制作带状图时,结果如下:

enter image description here

如何使两个x轴相同?

谢谢

1 个答案:

答案 0 :(得分:0)

  

如何使两个x轴相同?

stripchart() function采用可选的xlim参数,可用于定义水平绘图限制。例如:

x <- c(40,35,30,45,35,45,65,65,70,70)
y <- c(45,45,45,45,45,45,45,45,45,95)
par(bty="n", mfrow=c(2,1), mar=c(2,1,3,1)+0.1)
stripchart(x, xlim=c(20,100), method="stack", pch=16)
stripchart(y, xlim=c(20,100), method="stack", pch=21)

sample plot