Can anyone explain this....
>strptime("19300307", "%Y%m%d")
"1930-03-07"
>unlist(strptime("19300307", "%Y%m%d"))
sec min hour mday mon year wday yday isdst
0 0 0 7 2 30 5 65 0
All of a sudden my strptime is confusing me... Why is mon = 2 rather than 3?