RE: [R] Re: read dbf files into R

2004-09-29 Thread Ted Harding
On 29-Sep-04 Vikas Rawal wrote: Is there a linux-based/free command line tool for converting dbf files into txt? It might not be difficult to write one. You basically need to first decipher the file header, after which reading in the database records is straightfoward. DBF file structure

RE: [R] Re: read dbf files into R

2004-09-29 Thread Hisaji ONO
Is there a linux-based/free command line tool for converting dbf files into txt? How about DBF2CSV 1.0 in http://www.dirfile.com/dbf2csv.htm. This is a perl script. Best wishes. __ [EMAIL PROTECTED]

RE: [R] Re: read dbf files into R

2004-09-29 Thread Ted Harding
On 29-Sep-04 Hisaji ONO wrote: Is there a linux-based/free command line tool for converting dbf files into txt? How about DBF2CSV 1.0 in http://www.dirfile.com/dbf2csv.htm. This is a perl script. This seems to work well in extracting the field-names and data from a DBF file.

Re: [R] Re: read dbf files into R

2004-09-28 Thread Kevin Bartz
Vikas Rawal wrote: Is there a linux-based/free command line tool for converting dbf files into txt? Conceptually, it is not a great way of doing things. We have a dbf file with a well defined structure. We convert it into a text file, which has a loose structure, undefined variables types etc.