Notice: On April 23, 2014, Statalist moved from an email list to a forum, based at statalist.org.
From | "Martin Weiss" <martin.weiss1@gmx.de> |
To | <statalist@hsphsun2.harvard.edu> |
Subject | st: RE: Creating an X,Y variable from X and Y columns |
Date | Tue, 24 Aug 2010 22:33:04 +0200 |
<> It is certainly possible via concatenation of strings, but what is this variable good for? *********** clear* inp byte(X Y) 1 0 0 0 1 1 1 1 1 1 end gen str5 mynewvar=string(X)+","+string(Y) list, noo *********** HTH Martin -----Original Message----- From: owner-statalist@hsphsun2.harvard.edu [mailto:owner-statalist@hsphsun2.harvard.edu] On Behalf Of Martin Pszczola Sent: Dienstag, 24. August 2010 22:28 To: statalist@hsphsun2.harvard.edu Subject: st: Creating an X,Y variable from X and Y columns Hi; I am wondering if it is possible to take two columns of values (X and Y) and combine them into one, new variable that is X, Y? For example, say I have 5 variables for X and Y each. X=1 0 1 1 1 Y=0 0 1 1 1 and I want to create a new variable X,Y= 1,0 0,0 1,1 1,1 1,1. Any help would be appreciated. Thank you. Martin * * 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/