美文网首页
26. matplotlib的使用

26. matplotlib的使用

作者: 十里江城 | 来源:发表于2019-11-12 09:28 被阅读0次
import numpy as np
import matplotlib.pyplot as plt
# import之后保存没有错误 则正确引入模块

x = np.array([1,2,3,4,5,6,7,8])
y = np.array([3,5,7,6,2,6,10,15])
# 折线图
plt.plot(x, y, 'r')  # ‘r’: 红色
plt.plot(x, y, 'g', lw = 10) # 绿色线条宽度
# 三大图表: 折线 饼状(不涉及) 柱状

x = np.array([1,2,3,4,5,6,7,8])
y = np.array([13,25,17,36,21,16,10,15])
# 柱状图
# 每个柱子的占用宽度比例:0.5 透明度:alpha 
plt.bar(x, y, 0.5, alpha = 1, color = 'b')

绘图结果如下:


image.png

相关文章

网友评论

      本文标题:26. matplotlib的使用

      本文链接:https://www.haomeiwen.com/subject/ynlfictx.html