質問編集履歴
1
ソースコードにつき修正しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,15 +16,19 @@
|
|
16
16
|
|
17
17
|
```python3
|
18
18
|
|
19
|
+
from matplotlib import pylab as plt
|
20
|
+
|
21
|
+
|
22
|
+
|
19
23
|
dict = {0: [1,2,6,2,3], 0: [2,1,2,3,4], 1: [3,3,4,2,1], 1: [4,3,4,5,1]}
|
20
24
|
|
21
25
|
x = [1,2,3,4,5]
|
22
26
|
|
23
|
-
y = dic[0]
|
27
|
+
y = dict[0]
|
24
28
|
|
25
29
|
plt.plot(x, y, label=0)
|
26
30
|
|
27
|
-
y = dic[1]
|
31
|
+
y = dict[1]
|
28
32
|
|
29
33
|
plt.plot(x, y, label=1)
|
30
34
|
|