7
Matplotlib में सबप्लॉट में शीर्षक कैसे जोड़ें?
मेरे पास एक आंकड़ा है जिसमें कई सबप्लॉट हैं। fig = plt.figure(num=None, figsize=(26, 12), dpi=80, facecolor='w', edgecolor='k') fig.canvas.set_window_title('Window Title') # Returns the Axes instance ax = fig.add_subplot(311) ax2 = fig.add_subplot(312) ax3 = fig.add_subplot(313) मैं सबप्लॉट्स में शीर्षक कैसे जोड़ूं? fig.suptitleसभी ग्राफ़ में एक शीर्षक जोड़ता है और यद्यपि ax.set_title()मौजूद होता …
225
python
matplotlib
plot
subtitle