我使用$ fitdist $函数在经验分布函数上拟合伽玛分布:
fit = fitdist(data=empdistr,distr="gamma")
然后我使用$ denscomp $函数将数据与拟合值进行比较:
dc = denscomp(fit)
但我想从$ fit $或$ dc $中提取实际拟合值,即在$ denscomp $函数中显示的伽马密度点(使用拟合参数)。
有没有人知道我该怎么做。
提前致谢!
答案 0 :(得分:4)
使用dgamma
预测给定分位数的密度:
dgamma(x, coef(fit)[1], coef(fit)[2])