如何将图例从情节移动到适当的位置?
How can I move the legend from the plot to the appropriate place?
membership function
模糊算法中的隶属函数和图例的位置是错误的我该如何更改它的位置
对于你的图像,如果你使用 matplotlib,使用 loc='upper center' 或 loc='best'
import numpy as np
import matplotlib.pyplot as plt
plt.plot(x, y1, label ='1')
plt.plot(x, y2, label ='2')
# Function add a legend
plt.legend(loc='upper center')
# function to show the plot
plt.show()
但是如果你想把它放在一个特定的x,y坐标中
plt.legend(loc='upper right', bbox_to_anchor=(x, y))
membership function 模糊算法中的隶属函数和图例的位置是错误的我该如何更改它的位置
对于你的图像,如果你使用 matplotlib,使用 loc='upper center' 或 loc='best'
import numpy as np
import matplotlib.pyplot as plt
plt.plot(x, y1, label ='1')
plt.plot(x, y2, label ='2')
# Function add a legend
plt.legend(loc='upper center')
# function to show the plot
plt.show()
但是如果你想把它放在一个特定的x,y坐标中
plt.legend(loc='upper right', bbox_to_anchor=(x, y))