Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
TonyBagnall committed Jul 13, 2024
1 parent b75f34e commit be9b0c2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions aeon/transformations/series/_bkfilter.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,9 @@ class BKFilter(BaseSeriesTransformer):
>>> from aeon.transformations.series._bkfilter import BKFilter
>>> X = np.random.random((1,100)) # Random series length 100
>>> bk = BKFilter()
# >>> X2 = bk.fit_transform(X)
# >>> X2.shape
>>> X2 = bk.fit_transform(X)
>>> X2.shape
(1, 76)
"""

_tags = {
Expand Down
2 changes: 1 addition & 1 deletion docs/api_reference/transformations.rst
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ Detrending
Filtering and denoising
~~~~~~~~~~~~~~~~~~~~~~~

.. currentmodule:: aeon.transformations.bkfilter
.. currentmodule:: aeon.transformations.series._bkfilter

.. autosummary::
:toctree: auto_generated/
Expand Down

0 comments on commit be9b0c2

Please sign in to comment.