前提・実現したいこと
散布図において、それぞれのマーカーの上部に凡例を記載したいです。
以下のコードの例では、それぞれのマーカー上部に"Player1"、"Player2"...とつくイメージです。
実際にはPlayer1...ではなくPlayerの名前を記載したいので、Player1,2,3...と手動でつけていくのではなく、データフレームと紐づく形でお願い致します。
また、その文字サイズの調整の方法も併せていただけると嬉しいです。
↑上記の説明で伝わりますでしょうか。拙い説明で申し訳ありません。
ご教授の程、よろしくお願い致します。
初心者にもわかりやすいよう、若干の説明も加えていただけると幸いです。
発生している問題・エラーメッセージ
該当のソースコード
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() 38fig,ax = plt.subplots(figsize=(15,10)) 39dfx.loc[dfx.index[:-1]].plot.scatter(x=("Speed","90th"),y=("Angle","mean"),ax=ax) 40ax.set_xlabel("Speed") 41ax.set_ylabel("Angle") 42ax.set_xlim(80,100) 43ax.set_ylim(-20,20)
試したこと
補足情報(FW/ツールのバージョンなど)
windows11,python3.9.4,vscode
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。