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: RE: RE: Saving different parts of a dataset using foreach
From
"Martin Weiss" <[email protected]>
To
<[email protected]>
Subject
st: RE: RE: RE: Saving different parts of a dataset using foreach
Date
Tue, 31 Aug 2010 12:02:40 +0200
<>
So if only Matthew had used the word "numlist" instead of "year", his syntax
would have been legal:
***********
foreach i of numlist 2002/2008 {
di `i'
}
***********
-forvalues- still looks simpler to me...
HTH
Martin
-----Original Message-----
From: [email protected]
[mailto:[email protected]] On Behalf Of Nick Cox
Sent: Dienstag, 31. August 2010 11:29
To: '[email protected]'
Subject: st: RE: RE: Saving different parts of a dataset using foreach
In other words, only certain keywords may appear after -of-. The relevant
syntax is
foreach <lname> of <listtype> <list> {
commands referring to `lname'
}
-- and the only allowed -listtype-s are
local global varlist newlist numlist
Nick
[email protected]
Martin Weiss
Look at the -foreach- syntax diagram, or read up on it in NJC`s
http://www.stata-journal.com/sjpdf.html?articlenum=pr0005. Even better:
-forvalues-
***********
forv year = 2002/2008{
di `year'
}
***********
Matthew Krauchunas
I am working with panel data and I need to separate the data by year,
run some commands, and then append it. The BY command will not work
with this particular command so that is not an option. I have tried
the following commands and it keeps telling me invalid syntax. Does
anyone see an error here or have a suggestion(s)?
use "G:\Merged_Joined_Appended
files\final_oshpd_oscar_merge_w_dp_first_set_variables"
sort year
cd g:\Years
preserve
foreach i of year 2002/2008 {
keep if year == `i'
* run my commands here *
save year_`i'
restore, preserve
}
*
* 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/