Setup initial file structure

This commit is contained in:
2024-03-05 11:20:30 +01:00
parent 6183a6391b
commit 70e53e7760
708 changed files with 277486 additions and 0 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@