1 介绍
matplotlib.pyplot.xkcd(scale=1,
length=100,
randomness=2
)
scale | 相对于不使用xkcd的风格图,褶皱的幅度 |
length | 褶皱长度 |
randomness | 褶皱的随机性 |
2 举例
2.0 不使用xkcd
import matplotlib.pyplot as plt
import numpy as np
x=np.random.randint(0,100,1000)
plt.hist(x,range=[0,10])
2.1 默认参数
with plt.xkcd(scale=1, length=100, randomness=2):
plt.hist(x,range=[0,10])
2.2 scale
with plt.xkcd(scale=10, length=100, randomness=2):
plt.hist(x,range=[0,10])
2.3 length
with plt.xkcd(scale=1, length=10, randomness=2):
plt.hist(x,range=[0,10])
2.4 randomness
with plt.xkcd(scale=1, length=100, randomness=200):
plt.hist(x,range=[0,10])
今天的文章matplotlib xtick_mac系统自带画流程图软件[通俗易懂]分享到此就结束了,感谢您的阅读。
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/84160.html