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
* found major peformance boost for time series creation
* first boosted time series version
* improve slicing with integers
* improve slicing with time stamps
* improve slicing with time stamps
* update from_xarray
* improve from_group_dataframe()
* remove test time series
* remove old time series
* add option to drop group columns from from_group_dataframe
* update changelog
* apply suggestions from PR review
Copy file name to clipboardexpand all lines: CHANGELOG.md
+6
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,12 @@ but cannot always guarantee backwards compatibility. Changes that may **break co
10
10
11
11
### For users of the library:
12
12
**Improved**
13
+
- Improvements to `TimeSeries`: [#2196](https://github.com/unit8co/darts/pull/2196) by [Dennis Bader](https://github.com/dennisbader).
14
+
- 🚀🚀🚀 Significant performance boosts for several `TimeSeries` methods resulting increased efficiency across the entire `Darts` library. Up to 2x faster creation times for series indexed with "regular" frequencies (e.g. Daily, hourly, ...), and >100x for series indexed with "special" frequencies (e.g. "W-MON", ...). Affects:
15
+
- All `TimeSeries` creation methods
16
+
- Additional boosts for slicing with integers and Timestamps
17
+
- Additional boosts for `from_group_dataframe()` by performing some of the heavy-duty computations on the entire DataFrame, rather than iteratively on the group level.
18
+
- Added option to exclude some `group_cols` from being added as static covariates when using `TimeSeries.from_group_dataframe()` with parameter `drop_group_cols`.
0 commit comments