Matplotlib文本不会以xkcd字体显示

时间:2014-09-05 05:52:40

标签: python matplotlib ipython

当使用带有matplotpib的xkcd()时,没有任何字体以通常的漫画字体显示。有什么改变或者我做错了吗?

    x = df['Time']
    y = df['Adjustment']

    fig = plt.figure()
    ax = fig.add_subplot(1,1,1)

    ax1 = fig.add_subplot(1,1,1)
    ax1.plot(x,y)

    ax1.xaxis.set_visible(False)
    ax1.yaxis.set_visible(False)

    plt.axvline(x=2.3, color='k', ls='dashed')
    plt.axvline(x=6, color='k', ls='dashed')

    ax.text(4,4,'Culture Shock', size=16)

    plt.title('Test title')

    plt.xkcd()
    plt.show()

感谢您的帮助。

我应该澄清一下,图表将以xkcd样式绘制,而不是任何字体。它打印的东西类似于Times New Roman。

1 个答案:

答案 0 :(得分:3)

作为examples show,您需要在所有绘图命令之前将plt.xkcd()放在代码的开头。因此:

from matplotlib import pyplot as plt
import numpy as np

x = np.arange(10)
y = np.sin(x)

plt.xkcd()
fig = plt.figure()
ax = fig.add_subplot(1,1,1)
ax1 = fig.add_subplot(1,1,1)
ax1.plot(x,y)
ax1.xaxis.set_visible(False)
ax1.yaxis.set_visible(False)
plt.axvline(x=2.3, color='k', ls='dashed')
plt.axvline(x=6, color='k', ls='dashed')
ax.text(4,4,'Culture Shock', size=16)
plt.title('Test title')
plt.show()

这导致我的这个数字:

enter image description here

如你所见,那些摇摆不定的线条,但字体是错误的,只是因为它在我的Linux机器上不可用(我也在命令行上收到警告)。 将plt.xkcd()放在代码的末尾会产生直截了当的matplotlib图,而不会出现摇摆不定的行。

以下是pyplot.xkcd()幕后工作的摘要;它只是设置了很多资源参数:

rcParams['font.family'] = ['Humor Sans', 'Comic Sans MS']
rcParams['font.size'] = 14.0
rcParams['path.sketch'] = (scale, length, randomness)
rcParams['path.effects'] = [
    patheffects.withStroke(linewidth=4, foreground="w")]
rcParams['axes.linewidth'] = 1.5
rcParams['lines.linewidth'] = 2.0
rcParams['figure.facecolor'] = 'white'
rcParams['grid.linewidth'] = 0.0
rcParams['axes.unicode_minus'] = False
rcParams['axes.color_cycle'] = ['b', 'r', 'c', 'm']
rcParams['xtick.major.size'] = 8
rcParams['xtick.major.width'] = 3
rcParams['ytick.major.size'] = 8
rcParams['ytick.major.width'] = 3