In my attempt to load data from Excel to R:
> book <- loadWorkbook(file.choose())
> signals = readWorksheet(book, sheet = "signals", header = TRUE)
> signals
which returns:
time signal1 signal2
1 1899-12-31 08:30:00 0.43 -0.20
2 1899-12-31 08:31:00 0.54 0.33
3 1899-12-31 08:32:00 0.32 -0.21
Why do I get the column with 1899-12-31? Those are definitely not in the Excel sheet. The rest is correct.
I found this paragraph in the docs:
Forcing conversion from Numeric to DateTime: since Excel understands Dates/Times as Nu- merics with some additional formatting, a conversion from a Numeric to a DateTime is ac- tually possible. Numerics in this case represent the number of days since 1900-01-00 (yes, day 00! - see http://www.cpearson.com/excel/datetime.htm). Note that in R 0 is represented as 1899-12-31 since there is no 1900-01-00. Fractional days represent hours, minutes, and seconds.
This seems to shed some light on the issue.