In my dataframe, I have columns like: "created_at" ,"date","time"
;
they are something like : "1558522813000", "2019-05-22","21:00:13"
I tried :
df['created_at'] = pd.to_datetime(df.created_at)
but it generated something like "1970-01-01 00:25:54.068778"
, which I know it's wrong because it doesn't match the "date" and "time" in the same row (it should be "2019-05-22...."
)
How is this possible?