前提・実現したいこと
以下のようなデータにおいて、"Speed"の"90th"値の棒グラフに"Speedの90th値"の平均線をcolor='red', ls='dotted'で追加したいです。
近しい方法↓を見つけましたが、何が何やら、です。
https://www.tutorialspoint.com/how-to-create-a-matplotlib-bar-chart-with-a-threshold-line
ご教授の程、よろしくお願い致します。
初心者にもわかりやすいよう、若干の説明も加えていただけると幸いです。
発生している問題・エラーメッセージ
該当のソースコード
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=(12,7)) 39ax= dfx.loc[dfx.index[:-1],("Speed","90th")].sort_values(ascending=False).plot.bar() 40ax.tick_params(axis="x",labelrotation=0,labelsize=12) 41ax.set_ylabel("Speed") 42ax.set_ylim(50,100) 43ax.grid(axis="y",linestyle="--")
試したこと
補足情報(FW/ツールのバージョンなど)
windows11,python3.9.4,vscode
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。