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: input statement inside a while loop
From
Ricardo Ovaldia <[email protected]>
To
Statalist <[email protected]>
Subject
st: input statement inside a while loop
Date
Thu, 8 Jul 2010 09:44:16 -0700 (PDT)
I am trying to create a data set inside a -while- loop but it keeps failing. I think that the -end- confuses Stata.
Here is a simplified version:
-----------------------------
local i 1
while `i'<=10 {
clear
set obs 100
gen x=uniform()
sum x
clear
input str5 lines1
"rec"
"dat"
end
save temp`i', replace
local i=`i'+1
}
-------------------------------------
output:
. local i 1
. while `i'<=10 {
2. clear
3. set obs 100
4. gen x=uniform()
5. sum x
6. clear
7. input str5 lines1
8. "rec"
9. "dat"
10. end
--Break--
r(1);
end of do-file
If I take out the -input- command it works. Any ideas?
Thank you,
Ricardo
Ricardo Ovaldia, MS
Statistician
Oklahoma City, OK
*
* 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/