We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edfca6e commit d641f7fCopy full SHA for d641f7f
lectures/prob_dist.md
@@ -289,21 +289,13 @@ The mean and variance are:
289
```{code-cell} ipython3
290
λ = 2
291
u = scipy.stats.poisson(λ)
292
-```
293
-
294
-```{code-cell} ipython3
295
u.mean(), u.var()
296
```
297
298
-The the expectation of Poisson distribution is $\lambda$ and the variance is also $\lambda$.
+
+The expectation of Poisson distribution is $\lambda$ and the variance is also $\lambda$.
299
300
Here's the PMF:
301
302
303
-λ = 2
304
-u = scipy.stats.poisson(λ)
305
306
307
308
u.pmf(1)
309
0 commit comments