【发布时间】:2020-08-14 08:24:23
【问题描述】:
我使用 library(fitdistrplus) 包来拟合数据如下:
set.seed(100)
x1<-rlnorm(500,1,3)
f.x1<-fitdist(x1,distr = "lnorm",method = "mme")
plot(f.x1)
以下是绘图结果: enter image description here
我的问题是:x1的数据其实是用rlnorm生成的,但是拟合后pp图不是那么完美,怎么解释?
谢谢。 光明
【问题讨论】:
标签: r fitdistrplus