| |
[Date Prev][Date Next][Thread Prev][Thread Next][Date index][Thread index]
Re: st: RE: -save- with emptyok
Thanks Nick. I implemented a solution, much like the one you suggest, that
does not require emptyok. But it seems to me that emptyok is an "empty"
option if variables/observations need to be specified anyway before -save ,
emptyok- plays nicely with -append- or -merge-. Perhaps this is something for
the good folks at Statacorp to chew on.
cheers,
Partha
Nick Cox wrote:
The issue here is not with -save-, but with -append-.
-append- needs something more than almost nothing
to join on to. I think you need to -save- your dataset
with variables (even though there are no observations).
Fortunately, a token variable is sufficient (but evidently
necessary).
. clear
. gen completeanduttergarbage = .
. save empty, emptyok
. append using auto
. drop completeanduttergarbage
Admittedly, the error message here does not indicate
the problem.
Nick
[email protected]
Partha Deb
I'm having trouble getting -save- to work with emptyok in the
way I think it
should. Here's an example.
. save temp, emptyok
(note: dataset contains 0 observations)
file temp.dta saved
. use temp.dta
. append using auto.dta
no dataset in use
r(3);
Shouldn't I be able to append? What am I doing wrong? I'm
using Stata 9.2.
*
* For searches and help try:
* http://www.stata.com/support/faqs/res/findit.html
* http://www.stata.com/support/statalist/faq
* http://www.ats.ucla.edu/stat/stata/
--
Partha Deb
Department of Economics
Hunter College
ph: (212) 772-5435
fax: (212) 772-5398
http://urban.hunter.cuny.edu/~deb/
Emancipate yourselves from mental slavery
None but ourselves can free our minds.
- Bob Marley
*
* For searches and help try:
* http://www.stata.com/support/faqs/res/findit.html
* http://www.stata.com/support/statalist/faq
* http://www.ats.ucla.edu/stat/stata/