Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Commit

Permalink
strip out hide_progress (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
palday authored Sep 12, 2023
1 parent 3429a11 commit 96f211a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions kb07.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,7 @@ The pseudo-random number generator is initialized to a fixed value for reproduci

```{julia}
Random.seed!(1234321)
hide_progress = true
kbm02samp = parametricbootstrap(2000, kbm02; hide_progress)
kbm02samp = parametricbootstrap(2000, kbm02)
kbm02tbl = kbm02samp.tbl
```

Expand Down
2 changes: 1 addition & 1 deletion kwdyz11.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ We generate 2500 samples for the 15 model parameters (4 fixed effect, 4 VCs, 6 C
```{julia}
#| code-fold: true
Random.seed!(1234321)
samp = parametricbootstrap(2500, m1; hide_progress=true)
samp = parametricbootstrap(2500, m1)
tbl = samp.tbl
```

Expand Down
2 changes: 1 addition & 1 deletion sleepstudy.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ Simulating and fitting a substantial number of model fits, 5000 in this case, ta

```{julia}
rng = Random.seed!(42) # initialize a random number generator
m1bstp = parametricbootstrap(rng, 5000, m1; hide_progress=true)
m1bstp = parametricbootstrap(rng, 5000, m1)
tbl = m1bstp.tbl
```

Expand Down

0 comments on commit 96f211a

Please sign in to comment.