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

minor spell fix #2601

Merged
merged 1 commit into from
Nov 21, 2024
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
2 changes: 1 addition & 1 deletion examples/02-data-processing.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"\n",
"`DataTransformer` aims to provide a unified way of dealing with transformations of `TimeSeries`:\n",
"\n",
"- `transform()` is implemented by all transformers. This method takes in either a `TimeSeries` of a sequence of `TimeSeries`, applies the transformation and returns it as a new `TimeSeries`/sequence of `TimeSeries.\n",
"- `transform()` is implemented by all transformers. This method takes in either a `TimeSeries` or a sequence of `TimeSeries`, applies the transformation and returns it as a new `TimeSeries`/sequence of `TimeSeries.\n",
"- `inverse_transform()` is implemented by transformers for which an inverse transformation function exists. It works in a similar way as `transform()`\n",
"- `fit()` allows transformers to extract some information from the time series first before calling `transform()` or `inverse_transform()`\n"
]
Expand Down
Loading