Skip to content

Commit bf7b299

Browse files
RickyP24story645
authored andcommitted
tags for bayes, dynamic image, random walk, and strip chart
1 parent 202d347 commit bf7b299

File tree

4 files changed

+11
-0
lines changed

4 files changed

+11
-0
lines changed

galleries/examples/animation/bayes_update.py

+3
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,6 @@ def __call__(self, i):
6969
ud = UpdateDist(ax, prob=0.7)
7070
anim = FuncAnimation(fig, ud, init_func=ud.start, frames=100, interval=100, blit=True)
7171
plt.show()
72+
73+
# %%
74+
# .. tags:: animation, plot-type: line

galleries/examples/animation/dynamic_image.py

+3
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,6 @@ def f(x, y):
4646
# ani.save("movie.mp4", writer=writer)
4747

4848
plt.show()
49+
50+
# %%
51+
# .. tags:: animation

galleries/examples/animation/random_walk.py

+3
Original file line numberDiff line numberDiff line change
@@ -50,3 +50,6 @@ def update_lines(num, walks, lines):
5050
fig, update_lines, num_steps, fargs=(walks, lines), interval=100)
5151

5252
plt.show()
53+
54+
# %%
55+
# .. tags:: animation, plot-type: 3D

galleries/examples/animation/strip_chart.py

+2
Original file line numberDiff line numberDiff line change
@@ -67,3 +67,5 @@ def emitter(p=0.1):
6767
blit=True, save_count=100)
6868

6969
plt.show()
70+
71+
# ..tags:: animation, plot-type: line

0 commit comments

Comments
 (0)