如果使用matplotlib绘制图形,如何标记顶点并将x和y值添加到坐标?
我的代码如下。谢谢。
import numpy as np
import matplotlib.pyplot as plt
def f(x):[![enter image description here][1]][1]
return x ** 2
If __name__ == '__main__':
x = np.arange(-2, 2, 0.1)
y = f(x)
plt.plot(x, y, label='f(x)')
plt.legend()
plt.show()
答案 0 :(得分:2)
您是说x和y标签吗?
您可以这样做:
plt.xlabel('xlabel')
plt.ylabel('ylabel')
要标记该特定点,您可以尝试:
plt.annotate('label', xy=(x, y) )