Home

Awesome

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 hours, by(industry) detail

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