I have Date and timestamps in two different rows in Pandas DataFrame. Any pointer how to parse date and time together in one row which can be further used for time-series analysis further?
e.g.
Row 1 Date 2017-12-11 00:00:00 2017-12-11 00:00:00 2017-12-11 00:00:00 2017-12-11 00:00:00
Row 2 Timestamp 01:00:00 02:00:00 03:00:00 04:00:00
and then some more rows having more data
Can Row 1 and Row 2 be combined together to have complete date/timestamp information together?
I was thinking of applying Transpose and then using parse_dates on columns. Is there any other direct way of doing that in python?