【发布时间】:2021-05-19 06:41:32
【问题描述】:
是否可以轻松更改轴上标签的大小?
%matplotlib inline
import matplotlib.pyplot as plt
from mplsoccer.pitch import Pitch
plt.style.use('ggplot')
import matplotlib.pyplot as plt
pitch = Pitch(pitch_type='uefa',figsize=(16,10),axis=True,label=True, tick = True,
line_zorder=2, background_zorder=1, linewidth=4, spot_scale=0.0047)
fig, ax = pitch.draw()
【问题讨论】:
-
试试这个:
plt.show()
标签: python matplotlib