-
Notifications
You must be signed in to change notification settings - Fork 777
Issue - period length for time series decomposition #77
Comments
I got into same error. The problem is in the missing
|
Thanks @mvadu for your reply. |
after granulation from sec to min, assign 'min' so the switch instruction can now work properly
I got into same error... my dataset is: Any help would be appreciated |
@Gypsying did you get it working? |
The library currently tries to convert the second granularity into minutes, by aggregating it but it does not set the new granularity. Few folks have tried to fix that in their own repos (see the linked PRs above). But I think the right thing to do is to not to touch the actual data set as sum of input numbers might not make sense in all cases (e.g. temperature, speed or stockprice). Right thing is to remove the logic in L164, and add switch condition for sec here with value of 86400. On the other hand, the timeseries dataset in the OP and above by @nikhiljay do not have the point separated by seconds. So may be we need to check why its deciding to use |
Hello team,
I started exploring this package and I am struck.
I have a data.frame which contains some parameter values captured every 15 minutes , hence 96 records for one day. I have data for 27 days.
I get the below error when I try to run:
I tried longterm = T but didnt help. Please let me know how to solve this.
The text was updated successfully, but these errors were encountered: