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
相關文章
相關標籤/搜索