我尝试使用两个轴:Axis-1(下方)和Axis-3(上方),两个相关数据列。不幸的是,我的第三轴有问题。实际上,对于每条数据线,都有一个勾号。这是因为轴()函数中的参数“at”被查询。
有没有办法相对于另一个创建轴?
我的数据:
| NbConsumer | NbProvider |
|------------|------------|
| 10 | 5 |
| 110 | 85 |
| 210 | 165 |
| 310 | 245 |
| 410 | 325 |
在我的情节图片下面:
我的源代码:
plot(x=c(min(x),max(x)),y=c(min(yMin),max(yMax)),type="n", xlab=xlab,ylab=ylab)
axis(side=3, at=c(xThree), labels=xThreeLab)
#axis(side=3, at=seq(5,3000,by=100), labels = c(0,100,200))
title(main="Round Robin Mean Execution Time", col.main="black", font.main=4, line=3)
mtext("Number of Provider", side=3, line=2)
grid(col="black")
其中xThree = dataresult $ NbConsumer,xThreeLab = dataresult $ NbProvider
提前谢谢。