https://www.qeios.com/read/QIH0Q1
When to Adjust Alpha During Multiple Testing - Article (v1) by Mark Rubin | Qeios
Every time I think I know what's going on, suddenly there's another layer of complications.
https://www.qeios.com/read/QIH0Q1
When to Adjust Alpha During Multiple Testing - Article (v1) by Mark Rubin | Qeios
proc sort data=have(keep=key1 key2); by key1 key2; run;data want; do count=1 by 1 until(last.key2); set have; by key1 key2; end; run;