我试图保存一个calplot图像,但似乎无法显示标题。在documentation之后,我需要使用属性:副标题。
import calplot
import pylab
import numpy as np; np.random.seed(sum(map(ord, 'calplot')))
import pandas as pd
all_days = pd.date_range('1/1/2019', periods=730, freq='D')
days = np.random.choice(all_days, 500)
events = pd.Series(np.random.randn(len(days)), index=days)
calplot.calplot(
events,
figsize=(20,4),
suptitle='lorem ipsum',
cmap='Spectral_r',
)
pylab.savefig('foo.png')
以上是在文档中找到的最小代码。我使用pylab将映像保存在我的驱动器
上
我几乎注意不到标题。我如何显示标题?我使用Windows和Continuum Anaconda作为堆栈
1条答案
按热度按时间yws3nbqq1#
增大字体大小
更新定义的
fig