如何在matplotplot标题中更改背景颜色?

时间:2018-05-12 04:54:16

标签: python matplotlib

enter image description here

这张照片是R的情节,我想知道的是如何用matplotlib。 我尝试过def multiples_of_3(x, y): y = y + 1 storage_list = [] for i in range(x, y): if i % 3 == 0: storage_list.append(i) print(storage_list) ,但它只会更改文字覆盖的背景颜色。

enter image description here

那么有什么方法可以做到这一点吗? 感谢

1 个答案:

答案 0 :(得分:0)

你可以试试这个:

import matplotlib.pyplot as plt
plt.rcParams['axes.facecolor'] = 'silver'