Skip to content

Commit 1cb4cf5

Browse files
committed
Change to actual number of samples
1 parent 3393808 commit 1cb4cf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/inference.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -973,7 +973,7 @@ our original population; but since we do not have access to the population itsel
973973
this is often the best we can do.
974974

975975
```{code-cell} ipython3
976-
boot20000 = pd.concat([one_sample.sample(frac=1, replace=True).assign(replicate=n) for n in range(1_000)])
976+
boot20000 = pd.concat([one_sample.sample(frac=1, replace=True).assign(replicate=n) for n in range(20_000)])
977977
boot20000
978978
```
979979

0 commit comments

Comments
 (0)