Ho seguito una serie di domande qui che chiedono come convertire i vettori di caratteri in classi datetime. Vedo spesso 2 metodi, i metodi strptime e as.POSIXct / as.POSIXlt. Ho esaminato le 2 funzioni ma non è chiaro quale sia la differenza.
strptime
function (x, format, tz = "")
{
y <- .Internal(strptime(as.character(x), format, tz))
names(y$year) <- names(x)
y
}
<bytecode: 0x045fcea8>
<environment: namespace:base>
come POSIXct
function (x, tz = "", ...)
UseMethod("as.POSIXct")
<bytecode: 0x069efeb8>
<environment: namespace:base>
as.POSIXlt
function (x, tz = "", ...)
UseMethod("as.POSIXlt")
<bytecode: 0x03ac029c>
<environment: namespace:base>
Fare un microbenchmark per vedere se ci sono differenze di prestazioni:
library(microbenchmark)
Dates <- sample(c(dates = format(seq(ISOdate(2010,1,1), by='day', length=365), format='%d-%m-%Y')), 5000, replace = TRUE)
df <- microbenchmark(strptime(Dates, "%d-%m-%Y"), as.POSIXlt(Dates, format = "%d-%m-%Y"), times = 1000)
Unit: milliseconds
expr min lq median uq max
1 as.POSIXlt(Dates, format = "%d-%m-%Y") 32.38596 33.81324 34.78487 35.52183 61.80171
2 strptime(Dates, "%d-%m-%Y") 31.73224 33.22964 34.20407 34.88167 52.12422
strptime sembra leggermente più veloce. quindi cosa succede? perché ci sarebbero 2 funzioni simili o ci sono differenze tra loro che mi sono perse?
as.POSIXct
eas.POSIXlt
sui vettori di caratteri, guardaas.POSIXct.default
eas.POSIXlt.character
, rispettivamente.