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

จะตั้งค่าตัวคูณแกนใน matplotlib ได้อย่างไร?


ในการตั้งค่าตัวคูณแกนใน matplotlib เราสามารถทำตามขั้นตอนต่อไปนี้ -

ขั้นตอน

  • กำหนดขนาดรูปและ ปรับช่องว่างระหว่างและรอบๆ แผนผังย่อย .

  • สร้างจุดข้อมูล x โดยใช้ numpy

  • พล็อต x และ x 2 โดยใช้ plot() วิธีการ

  • หาแกนปัจจุบันของรูป

  • เริ่มต้นตัวแปร ตัวคูณ ก็คือค่าของตัวคูณแกน

  • ทำเครื่องหมายบนแต่ละจำนวนเต็มคูณของฐานภายในช่วงเวลาการดู

  • ตั้งค่าตัวระบุตำแหน่งของทิกเกอร์หลัก

  • หากต้องการแสดงรูป ให้ใช้ show() วิธีการ

ตัวอย่าง

# Import matplotlib and numpy
from matplotlib import pyplot as plt
import numpy as np

# Set the figure size
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

# Create x data points
x = np.linspace(1, 100, 100)

# Plot x and x2
plt.plot(x, x**2)

# Get the current axis
ax = plt.gca()

# Axis multiplier
multiplier = 6

# Set a tick on each integer multiple
locator = plt.MultipleLocator(multiplier)

# Set the locator of the major ticker
ax.xaxis.set_major_locator(locator)

plt.show()

ผลลัพธ์

มันจะสร้างผลลัพธ์ต่อไปนี้ -

จะตั้งค่าตัวคูณแกนใน matplotlib ได้อย่างไร?