เพื่อให้การวางแนวแถบสีในแนวนอนใน Python เราสามารถใช้ orientation="horizontal" ในการโต้แย้ง
ขั้นตอน
- กำหนดขนาดรูปและปรับช่องว่างภายในระหว่างและรอบๆ แผนผังย่อย
- สร้างแบบสุ่ม x , ย และ z จุดข้อมูลโดยใช้ตัวเลข
- สร้างร่างและชุดแผนย่อย
- ใช้ scatter() วิธีการพล็อต x , ย และ z จุดข้อมูล
- สร้างแถบสีสำหรับ ScalarMappable เช่น มีการวางแนวในแนวนอน
- หากต้องการแสดงรูป ให้ใช้ show() วิธีการ
ตัวอย่าง
import numpy as np import matplotlib.pyplot as plt plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x, y, z = np.random.rand(3, 50) f, ax = plt.subplots() points = ax.scatter(x, y, c=z, s=50, cmap="plasma") f.colorbar(points, orientation="horizontal") plt.show()
ผลลัพธ์