diff --git a/galleries/examples/animation/rain.py b/galleries/examples/animation/rain.py index d0b418b7fdfb..4303e567d074 100644 --- a/galleries/examples/animation/rain.py +++ b/galleries/examples/animation/rain.py @@ -72,3 +72,10 @@ def update(frame_number): # Construct the animation, using the update function as the animation director. animation = FuncAnimation(fig, update, interval=10, save_count=100) plt.show() + +# %% +# .. tags:: +# +# component: animation +# plot-type: scatter +# purpose: fun diff --git a/galleries/examples/animation/unchained.py b/galleries/examples/animation/unchained.py index 4c49d80bba81..40764798d425 100644 --- a/galleries/examples/animation/unchained.py +++ b/galleries/examples/animation/unchained.py @@ -74,3 +74,10 @@ def update(*args): # Construct the animation, using the update function as the animation director. anim = animation.FuncAnimation(fig, update, interval=10, save_count=100) plt.show() + +# %% +# .. tags:: +# +# component: animation +# plot-type: line +# purpose: fun diff --git a/galleries/examples/event_handling/pong_sgskip.py b/galleries/examples/event_handling/pong_sgskip.py index e93f89580621..583e51eacdc5 100644 --- a/galleries/examples/event_handling/pong_sgskip.py +++ b/galleries/examples/event_handling/pong_sgskip.py @@ -327,3 +327,10 @@ def start_anim(event): plt.show() print('FPS: %f' % (animation.cnt/(time.time() - tstart))) + +# +# %% +# .. tags:: +# +# interactivity: event-handling +# purpose: fun diff --git a/galleries/examples/images_contours_and_fields/barcode_demo.py b/galleries/examples/images_contours_and_fields/barcode_demo.py index 41ddd4aff25f..bdf48ca22531 100644 --- a/galleries/examples/images_contours_and_fields/barcode_demo.py +++ b/galleries/examples/images_contours_and_fields/barcode_demo.py @@ -45,3 +45,9 @@ # # - `matplotlib.axes.Axes.imshow` / `matplotlib.pyplot.imshow` # - `matplotlib.figure.Figure.add_axes` +# +# .. tags:: +# +# component: axes +# plot-type: imshow +# purpose: fun diff --git a/galleries/examples/shapes_and_collections/dolphin.py b/galleries/examples/shapes_and_collections/dolphin.py index 27330773853c..7c40eddcedd4 100644 --- a/galleries/examples/shapes_and_collections/dolphin.py +++ b/galleries/examples/shapes_and_collections/dolphin.py @@ -119,3 +119,9 @@ # - `matplotlib.transforms` # - `matplotlib.transforms.Affine2D` # - `matplotlib.transforms.Affine2D.rotate_deg` +# +# .. tags:: +# +# component: patch +# styling: shape +# purpose: fun diff --git a/galleries/examples/shapes_and_collections/donut.py b/galleries/examples/shapes_and_collections/donut.py index 464075336279..8764101beb3e 100644 --- a/galleries/examples/shapes_and_collections/donut.py +++ b/galleries/examples/shapes_and_collections/donut.py @@ -81,3 +81,9 @@ def make_circle(r): # - `matplotlib.axes.Axes.set_xlim` # - `matplotlib.axes.Axes.set_ylim` # - `matplotlib.axes.Axes.set_title` +# +# .. tags:: +# +# component: patch +# styling: shape +# purpose: fun diff --git a/galleries/examples/showcase/xkcd.py b/galleries/examples/showcase/xkcd.py index 7708e5f5c747..3d6d5418a13f 100644 --- a/galleries/examples/showcase/xkcd.py +++ b/galleries/examples/showcase/xkcd.py @@ -62,3 +62,11 @@ ha='center') plt.show() + +# +# %% +# .. tags:: +# +# plot-type: line +# plot-type: bar +# purpose: fun