Differences between revisions 4 and 5
Revision 4 as of 2023-06-08 20:17:48
Size: 575
Comment:
Revision 5 as of 2023-06-08 20:31:05
Size: 575
Comment:
Deletions are marked like this. Additions are marked like this.
Line 36: Line 36:
The number of dropped rows is stored in `r(N drop)`. The number of dropped rows is stored in `r(N_drop)`.
Line 38: Line 38:
The number of dropped variables is stored in `r(k drop)`. The number of dropped variables is stored in `r(k_drop)`.

Stata Drop

The drop command is used to subset cases or variables. See also the keep command.


Usage

Variables

drop foo bar baz

Cases

drop if foo==1
drop in 1/10


Stored Results

The number of dropped rows is stored in r(N_drop).

The number of dropped variables is stored in r(k_drop).


See also

Stata manual for drop


CategoryRicottone

Stata/Drop (last edited 2023-06-08 20:31:05 by DominicRicottone)