如何改变R中Y轴的比例

时间:2018-02-24 01:37:18

标签: r plot

我有这张图,我正在密谋

enter image description here

正如您所看到的,我尝试绘制的黑线上的值与红线的值不同。 因此,我试图改变Y轴的比例,所以我基本上可以"缩小"。我该怎么做?

到目前为止我所做的是:

plot(d,vol1, type="l",xaxt="n", xlab="Date", ylab="Volatility Estimate", main="Nasdaq Pharmaceutical Index")

months= seq(min(d), max(d), "month")

axis(1, months, format(months, "%Y\n%b"))

lines(d, vol1, col="black")

1 个答案:

答案 0 :(得分:5)

您可以在ylim=c(a,b)命令中添加参数plot(),其中a是最小值,b是您想要的y轴的最大值。