前提・実現したいこと
以下のような場合、"Average"もグラフに表示されてしまいます。
この"Average"をグラフには出現させないようにしたいです。
ただ、平均値としてデータフレーム内には含ませておきたいので、あくまでグラフには表示させないように、ということです。
ご教授の程、よろしくお願い致します。
発生している問題・エラーメッセージ
該当のソースコード
python
1import pandas as pd 2import numpy as np 3import matplotlib.pyplot as plt 4pd.options.display.float_format="{:.1f}".format 5start,end = "2021/4/1","2021/4/30" 6dates = pd.date_range(start=start,end=end,freq="D") 7players = [f"Player{i}"for i in range(1,6)] 8 9N = 200 10dates = np.random.choice(dates,size=N) 11dates.sort() 12players=np.random.choice(players,size=N) 13 14df = pd.DataFrame({ 15 "Date": dates, 16 "Player": players, 17 "Speed": np.random.sample(N) * 100.0, 18 "Angle": np.random.sample(N) * 40.0 - 20.0, 19 "Efficiency": np.random.sample(N) * 100.0, 20}) 21 22def percentile(n): 23 def percentile_(x): 24 return np.percentile(x, n) 25 percentile_.__name__ = '%sth' % n 26 return percentile_ 27 28def AA416(angle): 29 return 100*angle[(angle>=4.0)&(angle<16.0)].count()/angle.count() 30 31dfx = df.groupby("Player").agg({ 32 "Player":"count", 33 "Speed":[np.mean,percentile(90),np.max,np.std], 34 "Angle":[np.mean,np.std,AA416], 35 "Efficiency":[np.mean], 36}) 37dfx.loc['Average', :] = dfx.mean() 38plt.figure(figsize=(15,10)) 39ax= dfx[("Speed","90th")].sort_values(ascending=False).plot.bar() 40ax.set_ylabel("Speed") 41ax.set_ylim(80,130) 42ax.grid(axis="y")
試したこと
補足情報(FW/ツールのバージョンなど)
python3.9.4,vscode
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/11/26 13:50
2021/11/26 13:53