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]
Re: st: use tempfile
From
Maarten Buis <[email protected]>
To
[email protected]
Subject
Re: st: use tempfile
Date
Tue, 19 Jun 2012 16:18:45 +0200
On Tue, Jun 19, 2012 at 4:07 PM, Lythgoe, Dan wrote:
> Phil your suggested code makes perfect sense to me but still doesn't seem to quite do the job; I want it to clear the current data set and use the `tempresults' data set instead.
In that case you must -restore- before you -use- the temporary
datafile. That way Stata has nothing to restore to when the program
finishes, so it will leave you temporary datafile as the current data
in memory.
This way you will change your data in a major way. For Stata programs
the standard way for dealing with that is to add the option -clear-,
and you will only change the data if a user explicitly specifies that
option. Schematically, such a program would look something like this:
program define foobar
syntax <whatever>, [clear <whatever>]
preserve
<do stuff>
restore
if "`clear'" != "" {
use `tempresults', clear
}
end
Hope this helps,
Maarten
--------------------------
Maarten L. Buis
Institut fuer Soziologie
Universitaet Tuebingen
Wilhelmstrasse 36
72074 Tuebingen
Germany
http://www.maartenbuis.nl
--------------------------
*
* 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/