Answers for "resample to monthly pandas"

1

resample ohlc pandas

In [101]: df.resample('1H').agg({'openbid': 'first', 
                                 'highbid': 'max', 
                                 'lowbid': 'min', 
                                 'closebid': 'last'})
Out[101]: 
                      lowbid  highbid  closebid  openbid
ctime                                                   
2015-09-30 23:00:00  1.11687  1.11712   1.11708    1.117
Posted by: Guest on May-16-2021
0

pandas resample friday

df.resample('W-FRI').last()  # e.g., gets friday closing prices
Posted by: Guest on August-24-2021

Python Answers by Framework

Browse Popular Code Answers by Language