qqline()等效于edf的正态概率图

时间:2013-02-28 17:51:55

标签: r plot ecdf

我使用plot.ecdf(x,...)制作了经验分布函数(EDF)图。 为了使正常性可视化,我在r中寻找相当于在我的情节中绘制简单对角线的qqline。 MATLAB中的normplot()函数也在做同样的事情(参见此链接图中的红线:http://www.mathworks.de/de/help/stats/normplot.html)。感谢。

1 个答案:

答案 0 :(得分:0)

如评论中所述,只需致电qqline()

x <- ecdf(rnorm(10))
plot.ecdf(x)
qqline(x)

enter image description here