回答編集履歴
1
説明の追記
answer
CHANGED
@@ -1,7 +1,9 @@
|
|
1
|
+
> TypeError: must be real number, not str
|
2
|
+
|
1
3
|
```python
|
2
4
|
ax.scatter(...linewidths='2')
|
3
5
|
```
|
4
|
-
↓ 修正(二ヶ所)
|
6
|
+
↓ 修正 (二ヶ所)
|
5
7
|
```python
|
6
8
|
ax.scatter(...linewidths=2)
|
7
9
|
```
|