matplotlib绘制折线图与散点图

# -*- coding: utf-8 -*- import numpy as np import matplotlib.pyplot as plt #折线图,figure_no表示显示图的顺序 def simple_line_plot(x,y,figure_no):     plt.figure(figure_no)     plt.plot(x,y)     plt.xlabel('x val
相关文章
相关标签/搜索