I want to downsample some intraday data without adding in new days
df.resample(\'30Min\')
Will add weekends etc which is undesirable. Is there
The easiest workaround right now is probably something like:
rs = df.resample('30min') rs[rs.index.dayofweek < 5]