【发布时间】:2016-11-24 08:15:06
【问题描述】:
如何更改 matplotlib 图形的颜色?现在标题是黑色的,但其他文本是灰色的。我正在使用 Pandas 图创建一个 Hexbin 图。我已经试过了
matplotlib.rcParams.update({'text.color': 'black'})
正如我从http://matplotlib.org/users/customizing.html 了解到的,但它不起作用。
import matplotlib.pyplot as plt
import matplotlib
matplotlib.style.use('ggplot')
font = {'family' : 'normal',
'weight' : 'bold',
'size' : 22}
matplotlib.rc('font', **font)
t = pessoas.plot.hexbin(x='qteViagens',y='qteDestUnicos',cmap=plt.cm.jet,gridsize=20,norm=matplotlib.colors.LogNorm(),colorbar=False)
t.set_xlabel('Number of Trips in Period')
t.set_ylabel('Number of Unique Destinations')
t.set_title('Number of Users')
【问题讨论】:
-
你可以试试
ax.set_xlabel("Number of Trips in Period",color = 'green') -
@HanZhengzu 谢谢,成功了!
标签: python pandas matplotlib styles data-visualization