I would like to calculate the mean and the standard deviation of multiple variable at once
I know I can use this using the sum command, but I would like to store estimated mean and SD separately to export them in a compacted way into a descriptive statistic table (I do not want to report the number of OBS and the Min and Max values I would get from using the sum command
For instance take the following example: I am calculating mean values for both the whole sample and foreign cars.
Code:
sysuse auto mean price mpg rep78 headroom eststo avgall mean price mpg rep78 headroom if foreign==1 eststo avgfor esttab avgall avgfor , nostar not label b(2)
Thanks a lot
Code:
sd price mpg rep78 headroom eststo sdall sd price mpg rep78 headroom if foreign==1 eststo sdfor esttab avgall sdall avgfor sdfor, nostar not label b(2)
0 Response to Calculate the standard deviation of multiple variable at once.
Post a Comment