要在Matplotlib中設置圖表的標題和軸標簽,可以使用以下方法:
plt.title('Title of the plot')
plt.xlabel('X-axis label')
plt.ylabel('Y-axis label')
例如,下面是一個完整的示例代碼,展示如何設置圖表的標題和軸標簽:
import matplotlib.pyplot as plt
# 創建數據
x = [1, 2, 3, 4, 5]
y = [2, 3, 5, 7, 11]
# 繪制折線圖
plt.plot(x, y)
# 設置標題和軸標簽
plt.title('Prime numbers')
plt.xlabel('X-axis')
plt.ylabel('Y-axis')
# 顯示圖表
plt.show()