> -----Original Message-----
> From: Patrick Sturgis [mailto:[email protected]]
> Sent: Tuesday, April 08, 2003 1:58 PM
> To: [email protected]
> Subject: st: RE: RE: copy values of matched cases
>
>
> Many thanks to both Nicks. One other thing which is probably
> very obvious
> but I can't find the answer to: I want to have data files and
> output in file
> rather than alphabetical/numerical order. How does one specify this?
>
> Patrick
>
Not quite sure what you are asking. But here's a guess: the data are in
some meaningful order before this merging operation, and you would like
the data to be in that order when you are done, notwithstanding the
resorting of the data to make the merge work.
If that's the issue, then add the following lines before and after all
the other code:
. gen n=_n
<< sorting and merging here>>
. sort n
. drop n
This just indexes the current sort order, then resorts at the end.
Note that if the data were -sort-ed on some other variables to start,
you could just re-sort- on those variables at the end, rather than
creating a new variable.
Nick W.
*
* 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/