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: using a loop to run multiple regression models
From 
 
Maria Ana Vitorino <[email protected]> 
To 
 
<[email protected]> 
Subject 
 
st: using a loop to run multiple regression models 
Date 
 
Sat, 5 Nov 2011 13:47:10 -0400 
Dear statalist users,
Can something similar to this be done in stata? The code I'm providing  
is *clearly incorrect* but I think it gives the idea of what I'm  
looking for.
 I'm basically trying to create sets of right-hand sets variables  
that can be used to generate several model specifications.
And can I also include a counter in the loop that keeps track of how  
many different model specifications were estimated so that I can  
generate fitted values using the counter value as an index?
counter=1
local rhssets ` "x1 x2" "x2 x3 "'
foreach rhs of loc rhssets{
corr `rhs'
reg Y `rhs'
counter=counter+1
predict yhat`counter'
}
Any help is appreciated.
Thanks!
Ana
*
*   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/