この投稿で見たものに基づいて、このコードを書き込もうとしましたが、エラーが発生します。
ticklabels = ax.get_xticklabels()
set_color = operator.methodcaller('set_color("b")')
ticklabels[0].set_color('b') # this runs fine
map(set_color, ticklabels) #error is here
エラーコード:
map(set_color、ticklabels)AttributeError:'テキスト'オブジェクトに属性がありません'set_color( "b") '
methodcallerの関数に引数を渡せませんか?