pandas 如何使用calplot在日历热图上显示标题?

bihw5rsg  于 2023-02-14  发布在  其他
关注(0)|答案(1)|浏览(132)

我试图保存一个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作为堆栈

yws3nbqq

yws3nbqq1#

增大字体大小

fontsize=20

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)

fig = calplot.calplot(
    events, 
    figsize=(20,4),
    cmap='Spectral_r',
    )
fig.suptitle('lorem ipsum', fontsize=20)
pylab.savefig('foo.png')

更新定义的fig

相关问题