Suppose that I have a Poisson distribution with mean of 6. I would like to plot a probability mass function that includes an overlay of the approximating normal density.
This is what i have tried
plot( dpois( x=0:10, lambda=6 ))
this produces
which is wrong.
How do i go about this.




On the graph your $x$ values should start at $0$ not $1$. You should also extend to the right slightly more (there is no upper limit on a Poisson distribution)
For the normal distribution you can produce a suitable density using the
curvefunction. In this case, it is presumably sensible to suppose you want to compare with a $N(\lambda, \lambda)$ distribution which has the same mean and variance as the Poisson distribution. You may also want to extend to the leftYou could try something like
looking something like