Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

parameter name change #1073

Merged
merged 1 commit into from
Jul 14, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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