1. 程式人生 > >繪圖和數據可視化工具包——matplotlib

繪圖和數據可視化工具包——matplotlib

介紹 工具包 數據可視化工具 spa code ins 工具 引用 數據可視化

一、Matplotlib介紹

  Matplotlib是一個強大的Python**繪圖**和**數據可視化**的工具包。

# 安裝方法
pip install matplotlib
# 引用方法
import matplotlib.pyplot as plt

# 繪圖函數
plt.plot()
# 展示圖像
plt.show()

  執行後顯示效果如下:

  

繪圖和數據可視化工具包——matplotlib