前提・実現したいこと
adjustTextモジュールをインストールし、これを使用してみましたがうまくいきません。
https://www.wizard-notes.com/entry/python/matplotlib-adjust-text
↑のような例ではラベルを添付するコード全体に?リストを渡していますが、自分の以下のコードの例だとどこからどこまで、またどのようにリストを渡してadjust_text()に渡せばよいかわかりません。
ご教授の程、よろしくお願い致します。
初心者にもわかりやすいよう、若干の説明も加えていただけると幸いです。
発生している問題・エラーメッセージ
TypeError: 'Annotation' object is not iterable
該当のソースコード
python
1import pandas as pd 2import numpy as np 3import matplotlib.pyplot as plt 4from adjustText import adjust_text 5pd.options.display.float_format="{:.1f}".format 6start,end = "2021/4/1","2021/4/30" 7dates = pd.date_range(start=start,end=end,freq="D") 8players = [f"Player{i}"for i in range(1,6)] 9 10N = 200 11dates = np.random.choice(dates,size=N) 12dates.sort() 13players=np.random.choice(players,size=N) 14 15df = pd.DataFrame({ 16 "Date": dates, 17 "Player": players, 18 "Speed": np.random.sample(N) * 100.0, 19 "Angle": np.random.sample(N) * 40.0 - 20.0, 20 "Efficiency": np.random.sample(N) * 100.0, 21}) 22 23def percentile(n): 24 def percentile_(x): 25 return np.percentile(x, n) 26 percentile_.__name__ = '%sth' % n 27 return percentile_ 28 29def AA416(angle): 30 return 100*angle[(angle>=4.0)&(angle<16.0)].count()/angle.count() 31 32dfx = df.groupby("Player").agg({ 33 "Player":"count", 34 "Speed":[np.mean,percentile(90),np.max,np.std], 35 "Angle":[np.mean,np.std,AA416], 36 "Efficiency":[np.mean], 37}) 38dfx.loc['Average', :] = dfx.mean() 39fig,ax = plt.subplots(figsize=(15,10)) 40dfx[:-1].plot.scatter(x=("Speed","90th"),y=("Angle","mean"),ax=ax) 41ax.set_xlabel("Speed") 42ax.set_ylabel("Angle") 43ax.set_xlim(80,100) 44ax.set_ylim(-20,20) 45#Tag playerlabel 46x = ("Speed","90th") 47y = ("Angle","mean") 48dfx[:-1].plot.scatter(x=x, y=y, ax=ax) 49for i, label in enumerate(dfx[:-1].index): 50 texts=ax.annotate( 51 label, ha="center", fontsize=12, 52 xy=(dfx[:-1][x][i], dfx[:-1][y][i]), 53 xytext=(dfx[:-1][x][i], dfx[:-1][y][i]+.5)) 54adjust_text(texts) 55plt.savefig("test",facecolor="white")
試したこと
例に倣って同じような形で試みましたが出来ませんでした。
textsに代入する範囲/方法が理解できません。
参照
https://irukanobox.blogspot.com/2019/12/matplotlib.html
補足情報(FW/ツールのバージョンなど)
windows11,python3.9.4,vscode
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/11/28 01:32