Dear All, Suppose that the data set is
How can I obtain the frequency/percentage of missing data of the variable `mvalue' for each `company'? Thanks.
Code:
webuse grunfeld, clear set seed 1234 replace mvalue = . if uniform() < .1 drop if uniform() < .1
Comment