-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
All days instead of business days? #44
Comments
For the moment i solved the problem by copying creating a calendar days class, CDay, which is a copy of BDay, but with 7 days in the week. But i guess i am just missing a nicer solution.. |
No need for a calendar days class for this purpose. I think you want:
I actually plan to make this work (right now it does, but not with NaNs...making a note to make the change to the code soon):
For converting to calendar day frequency, ts.asfreq(datetools.day) will do Hope this helps |
Nice, that's what i was looking for! Thanks a lot, |
Wes, I can't find the answer in the documentation, thus asking here again:
|
Hi,
I am very new to github and miss a discussion board for pandas. Not sure if issues is the right place for my question, so feel free to delete it, but please point to the right place for questions.
The question: I need to aggregate hourly time series to the daily scale, that would include all days, 7 per week. Currently i find only bday class in datetools:
But bday will skip weekends. datetools.day seem to return timeseries with the same time resolution.
How to include weekend days?
Many thanks for developing pandas, it's truly nice, and really fast, even when working with large datasets!
The text was updated successfully, but these errors were encountered: