Computed theoretical power for N=100 and N=200 scenarios

This commit is contained in:
2024-02-19 18:35:26 +01:00
parent ac9189d26a
commit 238852b08b
704 changed files with 261610 additions and 187 deletions

View File

@ -0,0 +1,35 @@
.-
help for ^dropvars^ [jw] Mar 14, 2000
.-
Drop variables
--------------
^dropvars^ list
Description
-----------
^dropvars^ drops the variables that match the varlist specifications in list.
In contrast with ^drop^, ^dropvars^ allows terms in list that do not match
any variables; ^drop^ complain if any variable does not exist, and then
drops nothing.
^dropvars list^ is equivalent to
^for any list : capture drop X^
Example
-------
. ^dropvars a* b*^
drop all variables that start with either a or b.
Also see
--------
Manual: ^[R] drop^
On-line: help for @drop@