Skip to content

matplotlib簡介

Matplotlib 是 Python 最常用的繪圖庫

以下是 pandas 使用方法的重點摘要:

1. 基本概念與安裝

  • 介紹 matplotlib 是 Python 的繪圖函式庫
  • 使用 pip 安裝:

pip install matplotlib
- pyplot 模組簡介:

import matplotlib.pyplot as plt

2. 畫出第一張圖

畫出簡單的折線圖:

import matplotlib.pyplot as plt

x = [1, 2, 3, 4, 5]
y = [10, 15, 7, 20, 18]

plt.plot(x, y)
plt.show()

3. 調整圖表外觀

  • 標題與標籤:
plt.xlabel("X 軸名稱")
plt.ylabel("Y 軸名稱")
plt.title("我的第一張折線圖")
  • 修改線條顏色與樣式:
plt.plot(x, y, color='red', linestyle='--', marker='o')
  • 加入網格:
plt.grid(True)

4. 畫不同類型的圖表

底下是不同的圖形的範例程式碼!

(1) 折線圖(Line Plot)

plt.plot(x, y, marker='o')
plt.show()

(2) 長條圖(Bar Chart)

plt.bar(["蘋果", "香蕉", "橘子"], [10, 15, 7])
plt.show()

(3) 圓餅圖(Pie Chart)

fruits = ["蘋果", "香蕉", "橘子"]
values = [10, 15, 7]

plt.pie(values, labels=fruits, autopct='%1.1f%%')
plt.show()

(4) 散點圖(Scatter Plot)

plt.scatter([1, 2, 3, 4, 5], [10, 15, 7, 20, 18], color='purple')
plt.show()

5. 儲存圖表

儲存圖片:

plt.savefig("my_chart.png")