-
Notifications
You must be signed in to change notification settings - Fork 23
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
Method for aggregation #164
Comments
Computing the daily mean from hourly data is easy, since it is simply 24 vales each, but the monthly or yearly mean would be harder, since not every period might be of the same length. |
@chiraganand @codetalker7 Your thoughts on this feature? |
One easy way is to simply apply the given method, i.e. |
Doesn't |
The method should accept a Dates.Period and apply a function to each of those periods in the TSFrame. Like computing the daily mean of hourly data. Control over the time index that is used in the output would also be nice. Like should the first be used or the last in the period.
The text was updated successfully, but these errors were encountered: