web-dev-qa-db-ja.com

棒グラフの棒を昇順に並べ替える方法は?

Matplotlib.pyplotとseabornライブラリを使用して棒グラフを作成しました。 Speedに従ってバーを昇順に並べ替えるにはどうすればよいですか?左側に最低速度、右側に最高速度のバーを表示します。

df =
    Id         Speed
    1          30
    1          35 
    1          31
    2          20
    2          25
    3          80

import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns

%matplotlib inline

result = df.groupby(["Id"])['Speed'].aggregate(np.median).reset_index()

norm = plt.Normalize(df["Speed"].values.min(), df["Speed"].values.max())
colors = plt.cm.Reds(norm(df["Speed"])) 

plt.figure(figsize=(12,8))
sns.barplot(x="Id", y="Speed", data=gr_vel_1, palette=colors)
plt.ylabel('Speed', fontsize=12)
plt.xlabel('Id', fontsize=12)
plt.xticks(rotation='vertical')
plt.show()
8
Dinosaurius
df.groupby(['Id']).median().sort_values("Speed").plot.bar()

または、それらを集計した後でsort_values( "Speed")を試してください。

編集:これを行う必要があります:

result = a.groupby(["Id"])['Speed'].aggregate(np.median).reset_index().sort_values('Speed')

そしてsns.barplotに次を追加します:

sns.barplot(x='Id', y="Speed", data=a, palette=colors, order=result['Id'])
10