File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -472,8 +472,8 @@ $F(x) = 1 - e^{- \lambda x}$.
472472
473473``` {code-cell} ipython3
474474# Set parameters
475- n = 250 # Choice of n
476- k = 1_000_000 # Number of draws of Y_n
475+ n = 50 # Choice of n
476+ k = 10_000 # Number of draws of Y_n
477477distribution = st.expon(2) # Exponential distribution, λ = 1/2
478478μ, σ = distribution.mean(), distribution.std()
479479
@@ -523,8 +523,8 @@ You can choose any $\alpha > 0$ and $\beta > 0$.
523523
524524``` {code-cell} ipython3
525525# Set parameters
526- n = 250 # Choice of n
527- k = 1_000_000 # Number of draws of Y_n
526+ n = 50 # Choice of n
527+ k = 10_000 # Number of draws of Y_n
528528distribution = st.beta(2,2) # We chose Beta(2, 2) as an example
529529μ, σ = distribution.mean(), distribution.std()
530530
You can’t perform that action at this time.
0 commit comments