From f0ec4b9025d0081a01b28c0e597def0c13e367be Mon Sep 17 00:00:00 2001 From: Thomas KIENTZ <60552083+thomktz@users.noreply.github.com> Date: Wed, 13 Jul 2022 16:37:08 +0200 Subject: [PATCH] parameter name change --- darts/timeseries.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/darts/timeseries.py b/darts/timeseries.py index c4a001d124..ee07129e10 100644 --- a/darts/timeseries.py +++ b/darts/timeseries.py @@ -1797,7 +1797,7 @@ def concatenate( self, other: "TimeSeries", axis: Optional[Union[str, int]] = 0, - ignore_time_axes: Optional[bool] = False, + ignore_time_axis: Optional[bool] = False, ignore_static_covariates: bool = False, drop_hierarchy: bool = True, ) -> "TimeSeries": @@ -1810,7 +1810,7 @@ def concatenate( another timeseries to concatenate to this one axis : str or int axis along which timeseries will be concatenated. ['time', 'component' or 'sample'; Default: 0 (time)] - ignore_time_axes : bool, default False + ignore_time_axis : bool, default False Ignore errors when time axis varies for some timeseries. Note that this may yield unexpected results ignore_static_covariates : bool whether to ignore all requirements for static covariate concatenation and only transfer the @@ -1841,7 +1841,7 @@ def concatenate( return concatenate( series=[self, other], axis=axis, - ignore_time_axis=ignore_time_axes, + ignore_time_axis=ignore_time_axis, ignore_static_covariates=ignore_static_covariates, drop_hierarchy=drop_hierarchy, )