I am working with the following data, originally from Rice’s Mathematical Statistics and Data Analysis (page-256), representing the number of alpha particle counts per 10-second interval:
(* Number of clicks per 10-second interval *)
clicksPerTenSeconds = Range[0, 17];
(* Observed counts per interval *)
observedCounts = {1, 6, 11, 28, 56, 105, 126, 146, 164, 161,
123, 101, 74, 53, 23, 15, 9, 5};
(* Create list of points *)
points = Table[{clicksPerTenSeconds[[i]], observedCounts[[i]]},
{i, Length[clicksPerTenSeconds]}];
(* Plot observed data *)
ListLinePlot[
points,
PlotMarkers -> {"o", Medium},
PlotStyle -> Blue,
PlotRange -> All,
Frame -> True,
FrameLabel -> {"Number of Clicks per 10-Second Interval", "Observed Counts"},
FrameTicks -> {{Range[0, 160, 20], None}, {Range[0, 17, 1], None}},
PlotLabel -> "Observed Alpha Particle Emission per 10-Second Interval",
ImageSize -> Large,
GridLines -> {Range[0, 17, 1], Range[20, Max[observedCounts], 20]},
GridLinesStyle -> Directive[Gray, Dashed],
LabelStyle -> {Black, 16, FontFamily -> "Times"]
]
This produces the plot of observed counts vs. the number of clicks per interval. Now I would like to find the Poisson distribution $e^{-\lambda} \lambda^{k}/k!$ that best fits this data?
Now I wish proceed by calculating the sample mean and take that as the best guess of $\lambda$ and using that value of $\lambda$ plot that fit with the actual data plot given above. How can one achieve this?

![PoissonDistribution[8.36288] and histogram comparing data and fitted probability distribution](https://cdn.statically.io/img/i.sstatic.net/rK6jFckZ.png)

