Answers for "pandas set hour for timestamp"

0

pandas set hour for timestamp

In [18]: ts
Out[18]: Timestamp('2014-11-12 13:35:00')

In [19]: ts.replace(hour=0)
Out[19]: Timestamp('2014-11-12 00:35:00')
Posted by: Guest on January-20-2021

Python Answers by Framework

Browse Popular Code Answers by Language