回答編集履歴

1

d

2020/04/23 09:35

投稿

tiitoi
tiitoi

スコア21956

test CHANGED
@@ -12,7 +12,9 @@
12
12
 
13
13
 
14
14
 
15
- fruits.value_counts(ascending=True).to_frame("個数")
15
+ counts = fruits.value_counts(ascending=True).to_frame("個数")
16
+
17
+ counts
16
18
 
17
19
  ```
18
20