1

我想要这样的图像。

在此处输入图像描述

我想绘制一个对数图,并将 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)
...

它给了我这个

在此处输入图像描述

谢谢你。

4

0 回答 0