I am reading Excel sheets into R using ROBDC. However, I encountered some strange results. Sometimes, restarting the R console will help, but I tried 3 times now, and the following bug (?) persists.
The Excel sheet contains blocks of numbers, which I want read into an array.
This is my sqlQuery:
channel <- odbcConnectExcel(paste("~link to file~"))
as.matrix(sqlQuery(channel,paste("select F13,F14,F15 from \"",land,i,"$\"",sep="")))
Here is (a part of) the result:
32 NA NA NA
33 NA NA "Pf7"
34 "2.079975e+02" "6.762166e+01" NA
35 "1.721265e+02" "5.595971e+01" NA
36 "1.373673e+02" "4.465921e+01" NA
37 "1.200835e+02" "3.904013e+01" NA
38 "1.411489e+02" "4.588864e+01" NA
39 NA NA NA
40 NA NA NA
41 NA NA NA
42 NA NA "Pf7"
43 "1.443768e+00" "4.693807e-01" NA
44 "1.194778e+00" "3.884318e-01" NA
45 "9.535044e-01" "3.099920e-01" NA
46 "8.335332e-01" "2.709883e-01" NA
47 "9.797535e-01" "3.185257e-01" NA
48 NA NA NA
49 NA NA NA
In the Excel sheet, every block of numbers is preceded by Pf5:Pf7, and every description Pf5:Pf7 is followed by 5 numbers. All cells are formatted as number. The Excel sheet can be downloaded here.
In columns F13 and F14, RODBC drops the descriptions (which is strange but fine with me), in column F15 it drops the numbers (which is not fine with me at all!)
The strange thing is that exactly the same code worked just fine yesterday, and I did not update any R files or change the Excel sheets in any way, so I am puzzled regarding what might cause the error.
I am grateful for any comments that might help.
Thanks, Martin
UPDATE: I tried using odbcConnectExcel2007 instead of odbcConnectExcel, here are the results:
22 NA NA NA
23 NA NA NA
24 NA NA "Pf7"
25 "7.730711e+01" "1.958429e+01" "12,638675305"
26 "4.126044e+01" "1.045255e+01" "6,7455279987"
27 "4.293419e+01" "1.087656e+01" "7,0191635751"
28 "4.278764e+01" "1.083944e+01" "6,9952057822"
29 "4.073317e+01" "1.031897e+01" "6,6593269202"
30 NA NA NA
31 NA NA NA
32 NA NA NA
33 NA NA "Pf7"
34 "9.001111e+01" "2.280260e+01" "14,715610176"
35 "4.804083e+01" "1.217023e+01" "7,854032014"
36 "4.998963e+01" "1.266392e+01" "8,1726345871"
37 "4.981901e+01" "1.262070e+01" "8,1447397695"
38 "4.742692e+01" "1.201471e+01" "7,7536653665"
39 NA NA NA
40 NA NA NA
The "," instead of the "." could be caused by me using a German version of Excel. I could use sub() to replace the commas, but this (1) would not be an elegant solution, and (2) does not explain why it works with the first two cols but not with the third. (And also not why it worked yesterday but not today...)
odbcConnectExcel2007. – mzuba Apr 18 '11 at 13:56