The summarize
command creates various scalars in Stata. For instance, one can store the mean or min/max values through gen mean=r(mean)
afterwards.
It is also possible to get more sophisticated measures via the summarize varname, detail
option. Through this, one also obtains the median in form of the 50% percentile.
My goal is to store the median. Is there a corresponding scalar?
Where can I obtain information on stored scalars after standard operations like summarize
? As far as I can see they are not listed in the Stata manuals.