質問編集履歴
1
誤字訂正
test
CHANGED
File without changes
|
test
CHANGED
@@ -44,11 +44,11 @@
|
|
44
44
|
|
45
45
|
#イベント場面積のTOP10の抽出
|
46
46
|
|
47
|
-
df_event_area_sort = df_event['イベント
|
47
|
+
df_event_area_sort = df_event['イベント場面積(ha)'].sort_values(ascending=False)
|
48
48
|
|
49
49
|
df_event_area_sort_10 = df_event_area_sort[:10]
|
50
50
|
|
51
|
-
print(df_
|
51
|
+
print(df_event_area_sort_10)
|
52
52
|
|
53
53
|
```
|
54
54
|
|
@@ -84,7 +84,7 @@
|
|
84
84
|
|
85
85
|
```python
|
86
86
|
|
87
|
-
plt.plot(df_
|
87
|
+
plt.plot(df_event_area_sort_10);
|
88
88
|
|
89
89
|
```
|
90
90
|
|