(I'm afraid this post didn't reach the list on last Wednesday, here it is again 
)

hi R-list,

And sorry for my frenglish !

I am running R < Good Sport > release ( i386-w64-mingw32/i386 (32-bit) ) ) 
under Windows 7 Professional, Service Pack 1.
My perl executable is ActivePerl build 817 [257965] (i.e. version 5.8.8.817). 
Usually it is working fine.

Using the gdata ::read.xls function I am used to, I am now facing a stupid, 
probably trivial problem I never encountered before... and can't fix it by 
myself.

I have received Excel files (saved as Excel 97-2003 files)  in which the values 
(say 11.6185410334347) are displayed in a user-defined format in the cells 
(here the format is defined as "0.00", giving a displayed value of 0.12) but 
fully and correctly displayed in the formula bar.
In these files, the cells in the 4 first lines are used for header information 
(strings).

I read any of the files using :

foo.data<- 
read.xls(xls=my.path.to.xls.file,sheet=sheet.number,perl=my.perl.path,as.is=TRUE,pattern="[0123456789]",head=FALSE)

The value I get in the resulting foo.data$the.variable is the displayed value 
(0.12), not the "true", "underlying" value of 11.6185...... and it is neither a 
factor, nor a string :

> is.what(foo.data$the.variable)
[1] "is.atomic"   "is.double"   "is.numeric"  "is.standard" "is.unsorted" 
"is.vector"

> foo.data$the.variable [2]*1e10
[1] 1.2e+09

Is this normal behavior ? Is this related to how I chose the read.xls arguments 
? How should I specify the arguments to recover the full, "true" values 
directly from the files (without changing the format manually to "standard", of 
course !) ? Or is this related to my perl executable ?

... Or do I miss a point ?

Thanks for helping, all the best , Olivier


        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to