В этом коде ниже я хочу отметить две точки красным цветом, где можно увидеть изменения ... так как я могу это сделать
#Create a synthetic data set to test against
points=np.concatenate([np.random.rand(100)+5,
np.random.rand(100)+10,
np.random.rand(100)+5])
#CHANGEFINDER PACKAGE
f, (ax1, ax2) = plt.subplots(2, 1)
f.subplots_adjust(hspace=0.4)
ax1.plot(points)
ax1.set_title("data point")
#Initiate changefinder function
cf = changefinder.ChangeFinder()
scores = [cf.update(p) for p in points]
ax2.plot(scores)
ax2.set_title("anomaly score")
plt.show()