Skip to content
Snippets Groups Projects
Commit 9cfdff59 authored by Alexandre Gramfort's avatar Alexandre Gramfort
Browse files

missing pl.show() in plot_digits_agglomeration.py

parent 6de84662
No related branches found
No related tags found
No related merge requests found
...@@ -5,14 +5,12 @@ ...@@ -5,14 +5,12 @@
========================================================= =========================================================
Feature agglomeration Feature agglomeration
========================================================= =========================================================
These images how similiar features are merged together using These images how similiar features are merged together using
feature agglomeration. feature agglomeration.
""" """
print __doc__ print __doc__
# Code source: Gael Varoqueux # Code source: Gael Varoqueux
# Modified for Documentation merge by Jaques Grobler # Modified for Documentation merge by Jaques Grobler
# License: BSD # License: BSD
...@@ -61,3 +59,4 @@ pl.imshow(np.reshape(agglo.labels_, images[0].shape), ...@@ -61,3 +59,4 @@ pl.imshow(np.reshape(agglo.labels_, images[0].shape),
pl.xticks(()) pl.xticks(())
pl.yticks(()) pl.yticks(())
pl.title('Labels') pl.title('Labels')
pl.show()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment