Ich mag würde meinen Datenrahmen von dieser Zeichenfolge auf ein nutzbares Format DatetimePandas to_datetime() Ausgabe mit bestimmtem Datums-Zeitformat
01/May/2016:06:38:13 +0100
Ich bin derzeit Python V 3.5.1 :: Anaconda 4.0.0(64-bit)
mit
Ich mag würde meinen Datenrahmen von dieser Zeichenfolge auf ein nutzbares Format DatetimePandas to_datetime() Ausgabe mit bestimmtem Datums-Zeitformat
01/May/2016:06:38:13 +0100
Ich bin derzeit Python V 3.5.1 :: Anaconda 4.0.0(64-bit)
mit
import time
from time import mktime
from datetime import datetime
df.time = df.time.apply(lambda x: datetime.fromtimestamp(mktime(time.strptime(x, '%d/%b/%Y:%I:%M:%S %z'))))
http://pandas.pydata.org/pandas-docs/stable/generated/pandas.to_datetime.html konvertieren https://docs.python.org/3.5/library/datetime.html#strftime-and-strptime-behavior How do you convert a Python time.struct_time object into a datetime object?
Valueerror: 'z' ist eine schlechte Richtlinie im Format '% d /% s /% Y:% I:% M:% S% z' – SerialDev
Die ‚z 'Anweisung wird derzeit nicht von Pandas 'to_datetime' unterstützt (https://github.com/pydata/pandas/issues/13486) – joris
@CMari überprüfen Sie es erneut –