I have a dataframe (df3) with some values.
One of these values ββis daedlines.
The data for this value looks something like this:
deadline 1419397140 1418994978 1419984000 1418702400
These are days, and I want to convert them to this:
df3$deadline <- as.POSIXct(df3$deadline, origin="1970-01-01")
As a rule, it worked for me with other data files from other files.
However, he does return this error to me:
Error in as.POSIXlt.character(as.character(x), ...) : character string is not in a standard unambiguous format
How can i fix this?
Polya source share