Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

จะสร้างแผนภูมิแท่ง Matplotlib ด้วยเส้นเกณฑ์ได้อย่างไร?


ในการสร้างแผนภูมิแท่ง Matplotlib ที่มีเส้นเกณฑ์ เราต้องใช้ axhline() วิธีการ

ขั้นตอน

  • กำหนดขนาดรูปและปรับช่องว่างภายในระหว่างและรอบๆ แผนผังย่อย
  • เริ่มต้นตัวแปร เกณฑ์ .
  • สร้างรายการสำหรับ บาร์ ค่า
  • รับค่าแท่งด้านล่างและด้านบนตามค่าเกณฑ์
  • สร้างร่างและชุดแผนย่อยโดยใช้ แผนย่อย() วิธีการ
  • พล็อตแท่งด้วย x , a_threshold และ b_threshold ค่า
  • เพิ่มเส้นแนวนอนพาดผ่านแกนโดยใช้ axhline() วิธีการ
  • หากต้องการแสดงรูป ให้ใช้ show() วิธีการ

ตัวอย่าง

import numpy as np
import matplotlib.pyplot as plt

plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
threshold = 10
values = np.array([8.0, 10.0, 15.0, 9.0, 12.0])
x = range(len(values))

a_threshold = np.maximum(values - threshold, 0)
b_threshold = np.minimum(values, threshold)

fig, ax = plt.subplots()
ax.bar(x, b_threshold, 0.35, color="blue")
ax.bar(x, a_threshold, 0.35, color="yellow", bottom=b_threshold)

plt.axhline(threshold, color='red', ls='dotted')

plt.show()

ผลลัพธ์

จะสร้างแผนภูมิแท่ง Matplotlib ด้วยเส้นเกณฑ์ได้อย่างไร?