如何更改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')
答案 0 :(得分:0)
为了改变轴的颜色,可以这样做
axes.xaxis.label.set_color("yellow")
axes.yaxis.label.set_color("green")
或者,可以在使用 matplotlib.axes.Axes.set_xlabel
创建标签时传递标签的颜色,例如
ax.set_xlabel('Number of Trips in Period', color='yellow')