Skip to content

Commit

Permalink
docstring fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisholder committed Nov 20, 2024
1 parent 5cc63cf commit f8660d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aeon/clustering/dummy.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class DummyClusterer(BaseClusterer):
>>> X = np.array([[1, 2], [3, 4], [5, 6]])
>>> clusterer = DummyClusterer(strategy="uniform", n_clusters=2)
>>> clusterer.fit(X)
DummyClusterer(n_clusters=2, strategy='uniform')
DummyClusterer(n_clusters=2)
>>> clusterer.labels_
array([0, 1, 0])
>>> clusterer.predict(X)
Expand Down

0 comments on commit f8660d0

Please sign in to comment.