Skip to content

Commit

Permalink
Merge branch 'master' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
colin99d committed Jul 15, 2022
2 parents bdfa4ce + 8b6d1ab commit 87d15eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions darts/timeseries.py
Original file line number Diff line number Diff line change
Expand Up @@ -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":
Expand All @@ -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
Expand Down Expand Up @@ -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,
)
Expand Down

0 comments on commit 87d15eb

Please sign in to comment.