Hi All,
Suppose I have data like this:
--------------------- copy starting from the next line -----------------------
In the above, if I were to run a regression of y on x, rows 7 and 9 would not be included in the regression as Stata ignores rows when at least one variable has a missing value. The dataset I am working with is quite large. Is there a quick way of tagging which observations have been ignored from the regression? The brute force way would be to tag missing values for all variables, but that can be cumbersome when the design matrix is big.
Best,
Chinmay
Suppose I have data like this:
--------------------- copy starting from the next line -----------------------
Code:
* Example generated by -dataex-. To install: ssc install dataex clear input float(y x) 213 3 23 4 32 23 12 34 321 43 21 2 . . 1 3 3 . end
Best,
Chinmay
Comment