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()
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'])