回答編集履歴
1
修正
test
CHANGED
@@ -7,6 +7,8 @@
|
|
7
7
|
[matplotlib.animation.FuncAnimation — Matplotlib 3.3.1 documentation](https://matplotlib.org/3.3.1/api/_as_gen/matplotlib.animation.FuncAnimation.html)
|
8
8
|
|
9
9
|
|
10
|
+
|
11
|
+
## テキストパース部分
|
10
12
|
|
11
13
|
|
12
14
|
|
@@ -66,6 +68,10 @@
|
|
66
68
|
|
67
69
|
|
68
70
|
|
71
|
+
## アニメーション作成部分
|
72
|
+
|
73
|
+
|
74
|
+
|
69
75
|
```python
|
70
76
|
|
71
77
|
fig = plt.figure(figsize=(9, 9))
|
@@ -79,6 +85,8 @@
|
|
79
85
|
ax.set_zlim(-2.5, 2.5)
|
80
86
|
|
81
87
|
|
88
|
+
|
89
|
+
# 空の散布図とタイトルオブジェクトを作成しておく。
|
82
90
|
|
83
91
|
scatter = ax.scatter([], [], [], c="b")
|
84
92
|
|
@@ -114,7 +122,7 @@
|
|
114
122
|
|
115
123
|
|
116
124
|
|
117
|
-
|
125
|
+
# アニメーションを作成する。
|
118
126
|
|
119
127
|
anim = FuncAnimation(fig, update, data, interval=100)
|
120
128
|
|