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

จะเปลี่ยน linewidth และ markersize แยกกันใน factorplot ใน Matplotlib ได้อย่างไร?


หากต้องการเปลี่ยน linewidth และ markersize แยกกันใน factorplot เราสามารถใช้ขั้นตอนต่อไปนี้ -

  • กำหนดขนาดรูปและปรับช่องว่างภายในระหว่างและรอบๆ แผนผังย่อย
  • โหลดชุดข้อมูลตัวอย่างจากที่เก็บออนไลน์
  • ใช้ factorplot() วิธีการที่มี มาตราส่วน เพื่อเปลี่ยนขนาดมาร์กเกอร์
  • หากต้องการแสดงรูป ให้ใช้ show() วิธีการ

ตัวอย่าง

import seaborn as sns
from matplotlib import pyplot as plt

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

exercise = sns.load_dataset("exercise")

g = sns.factorplot(x="time", y="pulse", hue="kind", data=exercise, ci=95,
                  markers=['o', '*', 'd'],
                  scale=1, height=7.0)

plt.show()

ผลลัพธ์

จะเปลี่ยน linewidth และ markersize แยกกันใน factorplot ใน Matplotlib ได้อย่างไร?