Pandas: Time zone information from a Time series data
Pandas Time Series: Exercise-19 with Solution
Write a Pandas program to remove the time zone information from a Time series data.
Sample Solution:
Python Code :
import pandas as pd
date1 = pd.Timestamp('2019-01-01', tz='Europe/Berlin')
date2 = pd.Timestamp('2019-01-01', tz='US/Pacific')
date3 = pd.Timestamp('2019-01-01', tz='US/Eastern')
print("Time series data with time zone:")
print(date1)
print(date2)
print(date3)
print("\nTime series data without time zone:")
print(date1.tz_localize(None))
print(date2.tz_localize(None))
print(date3.tz_localize(None))
Sample Output:
Time series data with time zone: 2019-01-01 00:00:00+01:00 2019-01-01 00:00:00-08:00 2019-01-01 00:00:00-05:00 Time series data without time zone: 2019-01-01 00:00:00 2019-01-01 00:00:00 2019-01-01 00:00:00
Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
Previous: Write a Pandas program to create a time series object with a time zone.
Next: Write a Pandas program to subtract two timestamps of same time zone or different time zone.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://198.211.115.131/python-exercises/pandas/time-series/pandas-time-series-exercise-19.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics