摘要: 1、普通风格 代码 import numpy as np import matplotlib.pyplot as plt rng = np.random.RandomState(27) x = rng.normal(0, 1, 1000) plt.hist(x, bins=9) plt.show() 阅读全文
posted @ 2018-12-04 13:12 赏尔 阅读(283) 评论(0) 推荐(0) 编辑