回答編集履歴

1

Update

2021/12/24 10:51

投稿

melian
melian

スコア19865

test CHANGED
@@ -30,9 +30,9 @@
30
30
 
31
31
  fig = plt.figure(figsize=(8, 10))
32
32
 
33
- plt.plot(total[[1]], total.index, label="Men", c="red")
33
+ plt.plot(total.iloc[:,1], total.index, label="Men", c="red")
34
34
 
35
- plt.plot(total[[2]], total.index, label="Wmen", c="blue")
35
+ plt.plot(total.iloc[:,2], total.index, label="Wmen", c="blue")
36
36
 
37
37
  plt.xlim(0, 100)
38
38
 
@@ -54,4 +54,4 @@
54
54
 
55
55
  ```
56
56
 
57
- ![plot](8a630b7b9ada2346240629912bce3a8d.png)
57
+ ![plot](8ec2ff7801a5b9ae07fd99fb5d26e5e6.png)