📜  Jupyter 中的 Matplotlib | Jupyter 生成图表. - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:00.988000             🧑  作者: Mango

代码示例1
#%matplotlib inline magic — this enables Jupyter to generate the graphs.

import matplotlib.pyplot as plt
%matplotlib inline

plt.plot()
plt.show()