使用matplotlib在一行上的某个点插入一个点

时间:2015-07-19 14:50:00

标签: python matplotlib

我想知道如何在matplotlib中的曲线/线上的不同点插入一个点(或某种标记)。使用教程文档http://matplotlib.org/users/pyplot_tutorial.html

我们绘制

import matplotlib.pyplot as plt
plt.plot([1,2,3,4], [1,4,9,16])
plt.axis([0, 6, 0, 20])
plt.show()

enter image description here

现在,我知道如何将此行转换为一系列点,此处使用红点'ro'

import matplotlib.pyplot as plt
plt.plot([1,2,3,4], [1,4,9,16], 'ro')
plt.axis([0, 6, 0, 20])
plt.show()

enter image description here

如何在不同点添加“点”?例如,在点[3,9]添加点?

1 个答案:

答案 0 :(得分:5)

您可以再次致电plt.plot(x, y, 'style'),例如:

import matplotlib.pyplot as plt
plt.plot([1,2,3,4], [1,4,9,16], 'ro') # Your original list
plt.plot(5, 25, 'go')                 # Additional point
plt.plot(6, 36, 'yo')                 # Additional point
plt.axis([0, 10, 0, 40])              # Modified axis
plt.show()

Result of running the program