and it drops var4 and var7 due multicollinearity. And
I use lincom:
lincom var4
These are not a MEE set of dummies. If they were, there would not be
more than one dropped due to collinearity. In the obs. leading 0.524,
there is a 1 in both var3 and var7. So first of all you have to get
your dummies straightened out.
Re lincom, include all but one of the dummies in a MEE set in a
regression. Say that you have created dummies from rep78 in auto, so
there are 5.
reg price rep1-rep4
The constant term is rep5.
forv i=1/4 {
lincom _cons + rep`i'
}
will give you the means of price for each of the other categories.