Reports the design properties a reviewer (or a preregistration reader) would want to see: condition counts, run-length distribution, number of alternations, and the lag-1 autocorrelation of the condition sequence.
Arguments
- schedule
A
nof1_schedulefromdesign_schedule(), or any data frame withdayandconditioncolumns.
Examples
sched <- design_schedule(n_days = 70, seed = 20260218)
check_schedule(sched)
#> $counts
#> cond
#> 0 1
#> 35 35
#>
#> $max_run
#> [1] 2
#>
#> $run_table
#>
#> 1 2
#> 30 20
#>
#> $alternations
#> [1] 49
#>
#> $lag1_autocor
#> [1] -0.4201681
#>