1
是否有直接的方法將第二個Y軸添加到圖表模型?我看到linePlusBar圖表具有此功能(通過y1Axis
y2Axis
和forceY
),但有沒有簡單的方法將其添加到其他模型?我想將它用於lineChart或scatter模型。添加第二個Y軸
是否有直接的方法將第二個Y軸添加到圖表模型?我看到linePlusBar圖表具有此功能(通過y1Axis
y2Axis
和forceY
),但有沒有簡單的方法將其添加到其他模型?我想將它用於lineChart或scatter模型。添加第二個Y軸
同一個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