matthieugomez / sumup

summarize by groups in Stata
MIT License
26 stars 6 forks source link

sumup = summarize by group

sumup allows to summarize your data by groups defined by one or more variable

sysuse nlsw88.dta, clear
sumup hours, by(race) 

sumup hours, by(union married) 

sumup is ten times faster than table, contents() or tabstat. Another difference is that the result returned by sumup can be saved as a dataset with the option replace or save(...).

Installation

sumup is now available on SSC.

ssc install sumup

To install the latest version on Github