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