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: Infile several ASCII files


From   Jeph Herrin <[email protected]>
To   [email protected]
Subject   Re: st: Infile several ASCII files
Date   Wed, 31 Mar 2010 15:41:26 -0400

Oops, obviously the -tempfile- isn't used or needed.

cheers,
J

Jeph Herrin wrote:
I think you have to loop over your files, something like:


clear all
local myfiles file1.txt file2.txt file3.txt
foreach F in `myfiles' {
    tempfile file`F'
    infile `F'
    capture confirm file myfile.dta
    if _rc==0 {
        append using myfile
    }
    save myfile, replace
    clear
}

hth,
Jeph


Andrzej Niemierko wrote:
I have a data management problem. My data are stored in several ASCII (.txt) files. Each file has the same number of observations (in the same order). I
can -infile- each file individually, but I would like to -infile- all of
them and combine them into a one dataset. I cannot figure out how to do it
as -infile- refuses to work if data are already in memory. I suspect that
someone has already faced that problem and knows the solution. Any ideas?
Andrzej




The information in this e-mail is intended only for the person to whom it is addressed. If you believe this e-mail was sent to you in error and the e-mail contains patient information, please contact the Partners Compliance HelpLine at http://www.partners.org/complianceline . If the e-mail was sent to you in error but does not contain patient information, please contact the sender and properly
dispose of the e-mail.

*
*   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/


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