0
の変更長さ:matplotlibの - 次の箱ひげ図でfancytextbox
import matplotlib.pyplot as plt
plt.text(0.7, 0.7, "test", size=50,
ha="right", va="top",
bbox=dict(boxstyle="square")
)
plt.show()
どのようにして幅を変更することなく、箱の長さを変更できますか?
EDIT:
私が欲しいものは次のとおりです。
plt.text(0.05, 0.7, " test ", size=50, va="top",
bbox=dict(boxstyle="square"))
しかし、文字列内のスペースを使用してはかなり醜いソリューションのように思えます。別の方法がありますか?
[matplotlibのテキスト寸法(http://stackoverflow.com/questions/5320205/matplotlib-text-dimensions)の可能性の重複 – smoggers