回答編集履歴
1
修正
answer
CHANGED
@@ -12,11 +12,11 @@
|
|
12
12
|
plt.scatter(x, y)
|
13
13
|
plt.xlabel('x')
|
14
14
|
plt.ylabel('y')
|
15
|
+
plt.axis([0, 512, 512, 0]) #画像サイズに合わせて表示
|
15
16
|
plt.savefig("plot.png", dpi=300)
|
16
17
|
plt.show()
|
17
18
|
```
|
18
19
|
|
19
20
|
出力結果
|
20
21
|
|
21
|
-
|
22
|
-

|