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: normalize variables
From
[email protected]
To
[email protected]
Subject
st: normalize variables
Date
Sun, 11 Apr 2010 17:45:14 +0100
Hello,
I am using panel data analysis and I want to generate an index but first I
must normalise the variables (x1,x2) contained in the index. I normalised
them by the following set of commands:
egen min_x1=min(x1)
egen max_x1=max(x1)
gen normal_x1=(x1-min_x1)/(max_x1-min_x1)
So, my question is whether I need to transform the commands to include the
"by(.)" option i.e.
egen min_x1=min(x1), by(.)
egen max_x1=max(x1), by(.)
gen normal_x1=(x1-min_x1)/(max_x1-min_x1)
and if so, should i include the panel or time variable.
Thanks
*
* 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/