Notice: On April 23, 2014, Statalist moved from an email list to a forum, based at statalist.org.
From | Andrzej Niemierko <aniemierko@PARTNERS.ORG> |
To | Stata <statalist@hsphsun2.harvard.edu> |
Subject | Re: st: AW: summary table after tab1 |
Date | Sun, 27 Jun 2010 17:00:46 -0400 |
That's exactly what I needed: -stack- while -preserve-ing. Thank you, Martin. On 6/27/10 4:05 PM, "Martin Weiss" <martin.weiss1@gmx.de> wrote: > > <> > > -stack- the vars while -preserve-ing: > > *********** > clear* > > input byte var1 var2 var3 > 1 4 2 > 3 1 6 > 6 1 5 > 2 3 4 > 6 4 5 > end > > preserve > stack var?, into(myvar) clear > ta myvar > restore > > *********** > > > HTH > Martin > > -----Original Message----- > From: owner-statalist@hsphsun2.harvard.edu > [mailto:owner-statalist@hsphsun2.harvard.edu] On Behalf Of Andrzej Niemierko > Sent: Sonntag, 27. Juni 2010 21:45 > To: Stata > Subject: Re: st: AW: summary table after tab1 > > Thank you Martin and Don. Unfortunately, that's not what I need. > Let's say I have three variables var1-var3 and they contain integer numbers > between 1 and 6, e.g.: > > var1 var2 var3 > 1 4 2 > 3 1 6 > 6 1 5 > 2 3 4 > 6 4 5 > > -tab1 var*- gives me three tables of frequencies for each variable > separately. I need just one table that tells me the overall number of 1's, > 2's, 3's etc. > Andrzej > > > > > On 6/27/10 1:13 PM, "Martin Weiss" <martin.weiss1@gmx.de> wrote: > >> >> <> >> >> You may want to use -egen, group()- beforehand: >> >> >> ************* >> sysuse auto, clear >> tab1 turn trunk, sort >> egen mygroups=group(turn trunk), label >> ta mygroups >> ************* >> >> >> >> HTH >> Martin >> >> >> -----Ursprüngliche Nachricht----- >> Von: owner-statalist@hsphsun2.harvard.edu >> [mailto:owner-statalist@hsphsun2.harvard.edu] Im Auftrag von Andrzej >> Niemierko >> Gesendet: Sonntag, 27. Juni 2010 18:13 >> An: Stata >> Betreff: st: summary table after tab1 >> >> What's the simples way to generate a one-way summary table of frequencies >> over several variables. -tab1 varlist, sort- generates individual tables > but >> I need a single table with frequencies summed over varlist. >> Thank you, >> Andrzej >> >> >> >> >> The information in this e-mail is intended only for the person to whom it > is >> addressed. If you believe this e-mail was sent to you in error and the >> e-mail >> contains patient information, please contact the Partners Compliance >> HelpLine at >> http://www.partners.org/complianceline . If the e-mail was sent to you in >> error >> but does not contain patient information, please contact the sender and >> properly >> dispose of the e-mail. >> >> * >> * For searches and help try: >> * http://www.stata.com/help.cgi?search >> * http://www.stata.com/support/statalist/faq >> * http://www.ats.ucla.edu/stat/stata/ >> >> >> * >> * For searches and help try: >> * http://www.stata.com/help.cgi?search >> * http://www.stata.com/support/statalist/faq >> * http://www.ats.ucla.edu/stat/stata/ > > > * > * For searches and help try: > * http://www.stata.com/help.cgi?search > * http://www.stata.com/support/statalist/faq > * http://www.ats.ucla.edu/stat/stata/ > > > * > * For searches and help try: > * http://www.stata.com/help.cgi?search > * http://www.stata.com/support/statalist/faq > * http://www.ats.ucla.edu/stat/stata/ * * For searches and help try: * http://www.stata.com/help.cgi?search * http://www.stata.com/support/statalist/faq * http://www.ats.ucla.edu/stat/stata/