回答編集履歴
1
Update
answer
CHANGED
@@ -1,6 +1,5 @@
|
|
1
1
|
```python
|
2
|
-
ax = dfx[("Speed", "90th")].sort_values().plot.bar()
|
2
|
+
ax = dfx[("Speed", "90th")].sort_values(ascending=False).plot.bar()
|
3
3
|
ax.set_ylabel("Speed 90th")
|
4
4
|
```
|
5
|
-
|
6
|
-

|