Skip to content
Merged
Show file tree
Hide file tree
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
9 changes: 9 additions & 0 deletions .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -2396,6 +2396,15 @@
"contributions": [
"doc"
]
},
{
"login": "RishavKumarSinha",
"name": "Rishav Kumar Sinha",
"avatar_url": "https://avatars.githubusercontent.com/u/136772607?s=400&v=4",
"profile": "https://github.com/RishavKumarSinha",
"contributions": [
"doc"
]
}
],
"commitType": "docs"
Expand Down
4 changes: 2 additions & 2 deletions aeon/datasets/tests/test_load_forecasting.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ def test_forecasting_data_loaders(dataset):

dataset: dictionary with values to assert against should contain:
'columns' : list with column names in correct order,
'len_y' : lenght of the y series (int),
'len_X' : lenght of the X series/dataframe (int),
'len_y' : length of the y series (int),
'len_X' : length of the X series/dataframe (int),
'data_types_X' : dictionary with column name keys and dtype as value,
'data_type_y' : dtype if y column (string)
'data' : tuple with y series and X series/dataframe if one is not
Expand Down
2 changes: 1 addition & 1 deletion aeon/transformations/outlier_detection.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class HampelFilter(BaseTransformer):
Parameters
----------
window_length : int, default=10
Lenght of the sliding window
Length of the sliding window
n_sigma : int, optional
Defines how strong a point must outly to be an "outlier", by default 3
k : float, optional
Expand Down