python epoch to datetime
>>> datetime.datetime.fromtimestamp(1284286794)
datetime.datetime(2010, 9, 12, 11, 19, 54)
python epoch to datetime
>>> datetime.datetime.fromtimestamp(1284286794)
datetime.datetime(2010, 9, 12, 11, 19, 54)
datetime to epoch
>>> datetime.datetime(2012,4,1,0,0).timestamp()
1333234800.0
Unix time stamp epoch converter
# Unix-time to
df.Timestamp = pd.to_datetime(df.Timestamp, unit='s')
# Resampling to daily frequency
df.index = df.Timestamp
df = df.resample('D').mean()
# Resampling to monthly frequency
df_month = df.resample('M').mean()
# Resampling to annual frequency
df_year = df.resample('A-DEC').mean()
# Resampling to quarterly frequency
df_Q = df.resample('Q-DEC').mean()
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us