为什么ggplot stat_function只用dpois打印出一个值而不用dnorm?

时间:2016-06-12 11:03:36

标签: r ggplot2 poisson

ggplot()+aes(X)+geom_density()+ 
  stat_function(fun = dpois, colour = "red", args = list(lambda=parms$estimate))+
  xlab( "confirmation time [s]") + ggtitle("Shape of curve");

导致:

enter image description here

但是如果args = list(mean = mean(X),sd = sd(X)))我们得到一个很好的正态分布:

enter image description here

你怎么解释这种奇怪的行为?

0 个答案:

没有答案