回答編集履歴
2
コードの修正
test
CHANGED
@@ -14,19 +14,21 @@
|
|
14
14
|
|
15
15
|
plt.ylim(0, 205)
|
16
16
|
|
17
|
+
|
18
|
+
|
17
19
|
# plt.xticks(np.arange(0, 205,50))
|
18
20
|
|
19
21
|
# plt.yticks(np.arange(0, 205,50))
|
20
22
|
|
21
23
|
|
22
24
|
|
23
|
-
plt.gca().xaxis.set_major_locator(t
|
25
|
+
plt.gca().xaxis.set_major_locator(plt.MultipleLocator(50))
|
24
26
|
|
25
|
-
plt.gca().xaxis.set_minor_locator(t
|
27
|
+
plt.gca().xaxis.set_minor_locator(plt.MultipleLocator(25))
|
26
28
|
|
27
|
-
plt.gca().yaxis.set_major_locator(t
|
29
|
+
plt.gca().yaxis.set_major_locator(plt.MultipleLocator(50))
|
28
30
|
|
29
|
-
plt.gca().yaxis.set_minor_locator(t
|
31
|
+
plt.gca().yaxis.set_minor_locator(plt.MultipleLocator(25))
|
30
32
|
|
31
33
|
|
32
34
|
|
1
グラフの追加
test
CHANGED
@@ -33,3 +33,7 @@
|
|
33
33
|
plt.gca().tick_params(which='both', direction = "in")
|
34
34
|
|
35
35
|
```
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
![イメージ説明](b3b966d54036c6f22eb29a212a734165.png)
|