@@ -271,7 +271,7 @@ plot_kde(sample, ax)
|
271 | 271 | plt.show() |
272 | 272 | ``` |
273 | 273 | |
274 | | -The allocation of probability mass is similar to what was shown by the |
| 274 | +The allocation of probability density is similar to what was shown by the |
275 | 275 | histogram just above. |
276 | 276 | |
277 | 277 | ## Exercises |
@@ -427,7 +427,7 @@ freq = compute_freq()
|
427 | 427 | print(f"Frequency of at least two stock outs = {freq}") |
428 | 428 | ``` |
429 | 429 | |
430 | | -Try switching the `parallel` flag to `False` in the jitted function |
| 430 | +Try switching the `parallel` flag to `False` in the `@jit` decorator |
431 | 431 | above. |
432 | 432 | |
433 | 433 | Depending on your system, the difference can be substantial. |
|