Hi Statalist
I'm encountering a problem in dtable command and would appreciate your help. When running the following code, I see that there's missing values that the dtable does not ignore automatically. How to not including the missing values?
even when I do
it does not work and shows the missing values included number!!
I'm encountering a problem in dtable command and would appreciate your help. When running the following code, I see that there's missing values that the dtable does not ignore automatically. How to not including the missing values?
Code:
dtable, svy factor(categorical_var, stat(fvfrequency fvpercent)) novarlabel nofvlabel
Code:
drop if categorical_var==.
Comment