I want to create a date_range with pandas that spans a whole year, have a frequency of 1min but only span from 9:30 to 16:00 every day
If I do like this:
rng = pd.date_range('2012-01-01', '2013-01-01', freq="1min")
...I get all 24 hours in the days. I only want from 9:30 to 16:00...