Notice: On April 23, 2014, Statalist moved from an email list to a forum, based at statalist.org.
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
st: RE: Creating an X,Y variable from X and Y columns
From
"Martin Weiss" <[email protected]>
To
<[email protected]>
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: [email protected]
[mailto:[email protected]] On Behalf Of Martin Pszczola
Sent: Dienstag, 24. August 2010 22:28
To: [email protected]
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/