如何将日期从秒转换为日期格式。
我有一个表,其中包含有关经度,时间和时间的信息。 table
f_table['dt'] = pd.to_datetime(f_table['dt'])
f_table["dt"]
结果如下: output
但是输出错误,实际上日期是20160628,但转换为1970。
我想要的输出:
24-April-2014
答案 0 :(得分:0)
这应该有效。
Detected errors in 1 module.
-- TOO MANY ARGS -------------------------------------------------- src/Main.elm
The `text` function expects 1 argument, but it got 3 instead.
5|> text "1"
6| text "2"
Are there any missing commas? Or missing parentheses?
答案 1 :(得分:0)
单位必须为纳秒,因此需要乘以1e9
f_table['dt'] = pd.to_datetime(f_table['dt'] * 1e9)