search for: point2007

Displaying 1 result from an estimated 1 matches for "point2007".

Did you mean: point0000
2007 Oct 11
1
A read.table mystery (data for Framemaker Mac)
..."" files, which is what Filemaker exports as a text file. It seems to be a semicolon delimited file, with all data item enclosed in double quotes, and header items not delimited. So, first attempt is : In bash : # Convert from apparent Latin-1 to UTF-8 charpent at yod:/media/EMTEC/MARS-Point2007$ cat export.mer | iconv -f latin1 -t utf8 > export-utf8.mer # Check size (line count) charpent at yod:/media/EMTEC/MARS-Point2007$ wc export-utf8.mer 122 8632 311252 export-utf8.mer In R : foo<-read.table("export-utf8.mer", header=TRUE, sep=";", dec=",", check...