如何增加 Matplotlib 图的大小?
How to increase the size of a Matplotlib plot?
我用 Matplotlib 做了一个马赛克图,但是由于数据点的数量巨大,图被挤压,单词相互重叠。我想增加地块的大小。我试过了:
plt.figure(figsize=())
没用。
这是我的代码:
from statsmodels.graphics.mosaicplot import mosaic
import matplotlib.pyplot as plt
plt.figure(figsize=(200,10)) #does not work
plt.rcParams['font.size'] = 10.0
mosaic(plants_sub, ['Symbol', 'Family'], gap=0.1);
输出:
添加这个:-
plt.rcParams["figure.figsize"]=(enter your fig width, enter your fig height)
我用 Matplotlib 做了一个马赛克图,但是由于数据点的数量巨大,图被挤压,单词相互重叠。我想增加地块的大小。我试过了:
plt.figure(figsize=())
没用。
这是我的代码:
from statsmodels.graphics.mosaicplot import mosaic
import matplotlib.pyplot as plt
plt.figure(figsize=(200,10)) #does not work
plt.rcParams['font.size'] = 10.0
mosaic(plants_sub, ['Symbol', 'Family'], gap=0.1);
输出:
添加这个:-
plt.rcParams["figure.figsize"]=(enter your fig width, enter your fig height)