初探Matplotlib 例子来自此书: <Python编程从入门到实战>[美]Eric Matthes 使用pyplot绘图,一般的导入方法import matplotlib.pyplot as plt 以下代码均在Jupyter Notebook中运行 折线图 先看一个简单的例子 import matplotlib.pyplot as plt in_values = [1, 2 ,3, 4, 5] squares = [1, 4, 9 ,16, 25] # 第一个参数是X轴输入,第二个参数…