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: Saving different parts of a dataset using foreach
From
"Martin Weiss" <[email protected]>
To
<[email protected]>
Subject
st: RE: RE: Saving different parts of a dataset using foreach
Date
Mon, 30 Aug 2010 19:52:27 +0200
<>
Or rather
***********
forv i = 2002/2008{
***********
to avoid confusion with the variable "year".
BTW, -keep-ing and -preserve-ing/-restore-ing is not the best way to achieve
your goal. Just condition your "commands" with the -if- qualifier.
Also, I cannot see where you actually -append- any data...
HTH
Martin
-----Original Message-----
From: [email protected]
[mailto:[email protected]] On Behalf Of Martin Weiss
Sent: Montag, 30. August 2010 19:39
To: [email protected]
Subject: st: RE: Saving different parts of a dataset using foreach
<>
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'
}
***********
HTH
Martin
-----Original Message-----
From: [email protected]
[mailto:[email protected]] On Behalf Of Matthew
Krauchunas
Sent: Montag, 30. August 2010 19:35
To: [email protected]
Subject: st: Saving different parts of a dataset using foreach
Hello,
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)?
Thanks,
Matt
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/
*
* 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/