Bookmark and Share

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: RE: creating 2 datasets in memory without saving and merge


From   Nick Sanders <[email protected]>
To   "[email protected]" <[email protected]>
Subject   Re: st: RE: creating 2 datasets in memory without saving and merge
Date   Fri, 27 Apr 2012 10:29:16 -0700

Hello Tashi,

I'm assuming you don't want to save one of the data sets because you have no interest in those data by themselves, only the final merged data, and have no desire to have a bunch of .dta files lying around. If that's the case, one potential solution is the use of a temporary file (via -tempfile-) which will be deleted after closing out Stata (if you close out properly).

e.g.:

insheet using somefile.csv
sort var1
tempfile file1
save 'file1'

insheet using anotherfile.csv
sort var1
merge var1 using 'file1'


-Nick

On Apr 27, 2012, at 10:15 AM, Nick Cox <[email protected]> wrote:

> 1. You can hold precisely one (1) dataset in memory in Stata at once. This is circular in so far as what you hold in memory is always regarded as one (1) dataset, regardless of whether that dataset was originally two or more datasets in some sense, Stata or not Stata. Nevertheless the circularity is not vicious. 
> 
> 2. There are various ways of combining two or more datasets, including the use of -merge- or -append- and just typing or pasting in new data into the Editor. 
> 
> 3. Whether a dataset has been -save-d is a different question. No rule says that you must -save- data. It would be a waste of effort to combine datasets and not -save- the results if you intend to -use- that dataset later, but that's a practicality, not a rule. 
> 
> 4. Why you say that whatever you have in mind is "not good" is completely unclear to me. 
> 
> Nick 
> [email protected] 
> 
> tashi lama
> 
>       I will be using 2 diff databases to get my data in stata. And I need to merge those two data to use for my analysis. One obvious way is to get the data from  database 1 and save it with .dta file. Then use another database to pull data in stata memory(this is doable since my memory is clear) and use merge command. Unfortunately, this method is not good since i will have to save one dataset. Is there anyway I could pull two datasets in the memory without saving anyof the datasets? Or, what are my choices to get my intended result. Please let me know if my question is not clear. 
> 
> *
> *   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/


© Copyright 1996–2018 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   Site index