我想要这样的图像。
我想绘制一个对数图,并设置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)
...
它给了我这个
谢谢。