Skip to content

problem reading csv file

4 messages · Uwe Ligges, David Winsemius, PIKAL Petr

#
Dear all

I have several files which claim to be *.csv (one attached, maybe it
will come through) . They can be read to Open Office without much
problem, however I can not read them into R. I tried
read.table("H2O.CSV", sep=",", dec=".")
V1
1 ??1
2
3
....
Error in read.table("H2O.CSV", sep = ",", dec = ".", skip = 1) :
empty beginning of file
[1] "??1"
[1] "??1" "" "" "" ""


readChar("H2O.CSV", 10)
[1] "??1"
[1] 9.456937e-308


This is how first two lines appear in Notepad

1,1.77436423301697,"BV
",91.0779418945313,7.35872077941895,0.178956836462021,1.70007145404816,1.90102112293243
2,1.94783389568329,"VV
",1341.51489257812,9.04244899749756,1.76539707183838,1.90102112293243,3.52783703804016
....

The problem seems to be in first item "??1" which somehow blocks
further values to be read.

Does anybody have idea what to do or where to look for some help? I do
not want to transfer files through spreadsheet manually.

Best regards
Petr
#
On 19.04.2011 20:47, Petr Pikal wrote:
Can you provide the file on some webspace or send it to me privately, I 
will take a look tomorrow then.

Uwe Ligges
#
Not attached. You might succeed if you rename the file with a .txt  
extension and re-post.

Almost surely an encoding issue. We may need your session Info to get  
"locale".
#
Thank you. 

r-help-bounces at r-project.org napsal dne 19.04.2011 22:00:56:
Maybe you are right. After some further thorough documentation search I 
tried encoding, which was not success. After that I tried fileEncoding = 
UCS-2LE and bingo, that was it.