You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Now, I would really like to be able to differenciate two series like these: same timestamps, same values, but originating from different base frequencies.
In order to do so, I was able to set the frequency back "by hand":
Well freq is not a label but rather describes the spacing between the timeseries. So once series1 drops the nans the timeseries no longer conforms to 'T' frequency:
Having two time series like:
One of them is 1-minute based, the other is 5-minutes based. They both have the same values (excluding nan) at the same timestamps.
I do not want to keep
nan
values, so I drop them. However, dropping them also drops the frequency information from the DatetimeIndex:Now, I would really like to be able to differenciate two series like these: same timestamps, same values, but originating from different base frequencies.
In order to do so, I was able to set the frequency back "by hand":
But since 0.23 it seems I can no longer do that:
What can I do now to keep that frequency information?
Also, is it incorrect to set a frequency "by hand" for an index that has that frequency but some missing values?
The text was updated successfully, but these errors were encountered: