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

จะเพิ่มขีดระดับที่สามใน Python Matplotlib ได้อย่างไร?


ในการเพิ่มขีดระดับที่สามใน Python Matplotlib เราสามารถทำตามขั้นตอนต่อไปนี้ -

  • กำหนดขนาดรูปและปรับช่องว่างภายในระหว่างและรอบๆ แผนผังย่อย
  • สร้าง t และ s จุดข้อมูลโดยใช้ตัวเลข
  • สร้างร่างและชุดแผนย่อย
  • พล็อต t และ s โดยใช้ plot() วิธีการ
  • สร้างแกนคู่ที่แชร์แกน Y
  • พล็อต t และ s โดยใช้ plot() วิธีบนแกนที่หนึ่ง
  • กำหนดตำแหน่งขีดแกน X
  • สร้าง วิชาเอก , ผู้เยาว์ และค่าขีดระดับที่สาม (สาม) .
  • ตั้งค่า วิชาเอก และ ผู้เยาว์ เห็บตัวระบุตำแหน่งด้วย วิชาเอก ผู้เยาว์ และค่าขีดที่สาม (สาม)
  • กำหนดความยาวของขีดโดยใช้ tick_params() .
  • พล็อตเส้นแนวนอนด้วยสีเทา
  • หากต้องการแสดงรูป ให้ใช้ show() วิธีการ

ตัวอย่าง

import matplotlib.pyplot as plt
import numpy as np
import matplotlib.ticker

plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

t = np.arange(0.0, 100.0, 0.1)
s = np.sin(0.1 * np.pi * t) * np.exp(-t * 0.01)
fig, ax = plt.subplots()
plt.plot(t, s)

ax1 = ax.twiny()
ax1.plot(t, s)
ax1.xaxis.set_ticks_position('bottom')

majors = np.linspace(0, 100, 6)
minors = np.linspace(0, 100, 11)
thirds = np.linspace(0, 100, 101)

ax.xaxis.set_major_locator(matplotlib.ticker.FixedLocator(majors))
ax.xaxis.set_minor_locator(matplotlib.ticker.FixedLocator(minors))
ax1.xaxis.set_major_locator(matplotlib.ticker.FixedLocator([]))
ax1.xaxis.set_minor_locator(matplotlib.ticker.FixedLocator(thirds))

ax1.tick_params(which='minor', length=2)
ax.tick_params(which='minor', length=4)
ax.tick_params(which='major', length=6)
ax.grid(which='both', axis='x', linestyle='--')

plt.axhline(color='gray')

plt.show()

ผลลัพธ์

จะเพิ่มขีดระดับที่สามใน Python Matplotlib ได้อย่างไร?