是否有直接的方法将第二个Y轴添加到图表模型中?我看到linePlusBar图表具有此功能(通过y1Axis
y2Axis
和forceY
)但是有一种简单的方法可以将其添加到其他模型中吗?我想将它用于lineChart或散点模型。
答案 0 :(得分:0)
相同的X轴,不同的Y值需要双Y轴。你可以试试这个:
plot(x,y1......,axes=F)
axis(2,....) # build the left Y axis
par(new=T) # means that the next chart will be draw on the picture you draw above
plot(x,y2......,axes=F)
axis(4,....) # build the right Y axis