数据可视化
文章平均质量分 67
Eng1ne1
这个作者很懒,什么都没留下…
展开
-
matplotlib绘制折线图与散点图
# -*- coding: utf-8 -*-import numpy as npimport matplotlib.pyplot as plt#折线图,figure_no表示显示图的顺序def simple_line_plot(x,y,figure_no): plt.figure(figure_no) plt.plot(x,y) plt.xl原创 2017-11-26 11:09:11 · 4193 阅读 · 0 评论 -
matplotlib设置轴标签
# -*- coding: utf-8 -*-import numpy as npimport matplotlib.pyplot as pltdef x_y_axis_labeling(x,y,x_label,y_label,figure_no):#设置图片生成顺序figure_no plt.figure(figure_no) plt.plot(x原创 2017-11-26 12:59:56 · 15178 阅读 · 0 评论 -
matplotlib绘制热图
# -*- coding: utf-8 -*-import numpy as npimport matplotlib.pyplot as pltdef plot_heat_map(x,figure_no): plt.figure(figure_no) plt.pcolor(x) plt.colorbar()if __name__=='__m原创 2017-11-26 13:15:45 · 3026 阅读 · 0 评论