اذهب إلى المحتوى

السؤال

نشر

لدي الكود التالي وأريد وضع عنوان لل Legend فكيف نقوم بذلك؟

import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(-2, 2, 50)
y1 = x**3
y2 = x**2
fig, ax = plt.subplots()
ax.plot(x, y1, c = 'black',label = 'x^3')
ax.plot(x, y2, c = 'c',label = 'x^2')
leg = plt.legend()
plt.show()

index.png.7a1f6a9cdf595fd8ee6bb856544a5fdf.png

Recommended Posts

  • 0
نشر

ضمن ال Kwargs الإضافية لدالة legend هناك خاصية title يمكنك إضافتها للحصول على المطلوب، والوسيط title_fontsize لتحديد حجمه ويأخذ القيم التالية:

 {'xx-small', 'x-small', 'small', 'medium', 'large', 'x-large', 'xx-large'}

وبالتالي يصبح الكود:

import numpy as np
import matplotlib.pyplot as plt
x = np.linspace(-2, 2, 50)
y1 = x**3
y2 = x**2
fig, ax = plt.subplots()
ax.plot(x, y1, c = 'black',label = 'x^3')
ax.plot(x, y2, c = 'c',label = 'x^2')
leg = plt.legend(title="your_title")
plt.show()

النتيجة:
index.png.23d164166b36e182de7ddc0e27bf1ca5.png

انضم إلى النقاش

يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.

زائر
أجب على هذا السؤال...

×   لقد أضفت محتوى بخط أو تنسيق مختلف.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   جرى استعادة المحتوى السابق..   امسح المحرر

×   You cannot paste images directly. Upload or insert images from URL.

  • إعلانات

  • تابعنا على



×
×
  • أضف...