matplotlib.pyplot.xkcd #

matplotlib.pyplot。xkcd ( scale = 1 , length = 100 , randomness = 2 ) [source] #

打开xkcd素描风格的绘图模式。这只会对调用此函数后绘制的内容产生影响。

为获得最佳效果,应安装“Humor Sans”字体:它不包含在 Matplotlib 中。

参数
刻度浮动,可选

垂直于源线的摆动幅度。

长度浮动,可选

沿线摆动的长度。

随机浮动,可选

长度缩小或扩展的比例因子。

笔记

此函数由多个 rcParams 工作,因此它可能会覆盖您之前设置的其他函数。

如果你希望这个函数的效果是暂时的,它可以用作上下文管理器,例如:

with plt.xkcd():
    # This figure will be in XKCD-style
    fig1 = plt.figure()
    # ...

# This figure will be in regular style
fig2 = plt.figure()

使用#的示例matplotlib.pyplot.xkcd

XKCD

XKCD

XKCD