I have a graph with 6 cycles for one cycle i given data given bilow and for next cycles same data repeating pasted the graph the star points are actual data points and the black which i manually kept that data has to be extract how to do it in python This is my data:
Efficiency
0
0
59.02
60
56.54
56.54
62.63
61.94
61.94
62.9
59.02
0
And I plotted the graph with this data:

This is the code i used for plotting:
x=df["Efficiency"]
import matplotlib.pyplot as plt
import numpy as np
fig= plt.figure(figsize=(25,6))
axes= fig.add_axes([0.1,0.1,0.8,0.8])
axes.plot(x,color='green',lw=3,marker="*",ms=15,mec = 'r')
plt.xlim(0,72)
plt.ylim(0,65)
plt.show()
