如何使用带有R的plot()在y轴的末端获得更高的精度

时间:2013-07-19 10:23:22

标签: r plot

我想要这样的图像。

enter image description here

我想绘制一个对数图,并设置y轴(以相同的间隔 显示)以下值。

values <- c(seq(0, 0.50, 0.25), seq(0.60, 0.90, 0.10), seq(0.91, 1, 0.01))

这就是我的代码现在的样子:

...
y_axis <- c(seq(0, 0.50, 0.25), seq(0.60, 0.90, 0.10), seq(0.91, 1, 0.01))
perc <- lapply(y_axis, function(x)quantile(data[,numCol], c(x), na.rm=TRUE, type=1))
graphPer <- tkrplot(fenetreGraph, function(){plot(perc, y_axis, type="l", col="blue", yaxt = "n"); axis(2, list_y_axis, las=2)})
tkgrid(graphPer, row=0, column=3)
...

它给了我这个

enter image description here

谢谢。

0 个答案:

没有答案