问题 I'm starting to get a handle on how base R handles dates/times, but still have some uncertainty. Using the following data set (exert from meteorological data), I was able to convert to POSIXct and POSIXlt using the as.character() function. The Date.Time is provided in the format yymmddhhmm. Date.Time <- c(1107151300, 1107151400, 1107151500, 1107151600, 1107151700, 1107151800) WindSpd <- c(11.8, 14.5, 14.9, 14.1, 15.2, 17.1) ##Using as.character()## #Note POSIXlt this time w <- data.frame(Date