1

有没有一种直接的方法可以将第二个 Y 轴添加到图表模型中?我看到linePlusBar图表具有此功能(通过y1Axis y2AxisforceY),但有没有一种简单的方法可以将其添加到其他模型?我想将它用于 lineChart 或 scatter 模型。

4

1 回答 1

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
于 2013-03-31T14:02:13.400 回答