I have a dataframe which looks like:
d t
Var
1 20160719 08:26:00
2 20160719 08:54:00
I am intending to convert the two columns d and t to a timestamp using something along
pd.to_datetime(df)
Somehow, I don't succeed doing this. Combining the date in one column and the time in the other column doesn't seem to work. I can feed the individual columns\series into pd.to_datetime, which works fine. But then I miss either date or time. Any advice or example would be super useful. Many thanks!
Steffen