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

จะเพิ่มขนาดตัวอักษรของตำนานในพล็อต Seaborn ของฉันโดยใช้ Matplotlib ได้อย่างไร


ในการเพิ่มขนาดตัวอักษรของคำอธิบายในแผนภาพ Seaborn เราสามารถใช้ตัวแปรขนาดตัวอักษรและใช้ใน legend() อาร์กิวเมนต์ของเมธอด

ขั้นตอน

  • สร้าง data frame โดยใช้ Pandas แป้นมีตัวเลข นับ และเลือก

  • พล็อตบาร์ใน Seaborn โดยใช้ barplot() วิธีการ

  • เริ่มต้นตัวแปร ขนาดฟอนต์ เพื่อเพิ่ม ขนาดตัวอักษร แห่งตำนาน

  • ใช้ legend() วิธีการวางคำอธิบายบนรูปภาพด้วยขนาดฟอนต์ในอาร์กิวเมนต์

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

ตัวอย่าง

import pandas
import matplotlib.pylab as plt
import seaborn as sns
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
df = pandas.DataFrame(dict(
   number=[2, 5, 1, 6, 3],
   count=[56, 21, 34, 36, 12],
   select=[29, 13, 17, 21, 8]
))
bar_plot1 = sns.barplot(x='number', y='count', data=df, label="count", color="red")
bar_plot2 = sns.barplot(x='number', y='select', data=df, label="select", color="green")
fontsize = 20
plt.legend(loc="upper right", frameon=True, fontsize=fontsize)
plt.show()

ผลลัพธ์

จะเพิ่มขนาดตัวอักษรของตำนานในพล็อต Seaborn ของฉันโดยใช้ Matplotlib ได้อย่างไร