ggplot()+aes(X)+geom_density()+
stat_function(fun = dpois, colour = "red", args = list(lambda=parms$estimate))+
xlab( "confirmation time [s]") + ggtitle("Shape of curve");
导致:
但是如果args = list(mean = mean(X),sd = sd(X)))
我们得到一个很好的正态分布:
你怎么解释这种奇怪的行为?