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

จะเปลี่ยนขนาดเครื่องหมายด้วย pandas.plot () ใน Matplotlib ได้อย่างไร


หากต้องการเปลี่ยนขนาดเครื่องหมายด้วย pandas.plot() เราสามารถทำตามขั้นตอนต่อไปนี้ -

  • กำหนดขนาดรูปและปรับช่องว่างภายในระหว่างและรอบๆ แผนผังย่อย
  • สร้างดาต้าเฟรม Pandas ที่มีสามคอลัมน์ col1, col2 และ col3.
  • ใช้ pandas.plot() ด้วย marker="*" และ markersize=15 .
  • หากต้องการแสดงรูป ให้ใช้ show() วิธีการ

ตัวอย่าง

import matplotlib.pyplot as plt
import pandas as pd

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

df = pd.DataFrame([[2, 1, 4], [5, 2, 1], [4, 0, 1]], columns=['col1', 'col2', 'col3'])

df.plot(marker="*", markersize=15)

plt.show()

ผลลัพธ์

จะเปลี่ยนขนาดเครื่องหมายด้วย pandas.plot () ใน Matplotlib ได้อย่างไร