so this a section of my code, it runs and opens a graph but there is no plot points
fig =plt.figure(1)
data= [1.3,2.4]
for i in range(0,2):
emittx=data[i];
turns = 1+i;
plt.plot(turns,emittx,'-r')
plt.show()
stuck because I cant really understand why
data1? And I assumepltismatplotlib.pyplot?plot(...)in a loop? I think you should be constructing lists/arrays of your x and y points and callingplotonce.plot(turns, emittx, 'or')and you will get markers.pythonormatplotlib. There is enough information here for this to be a valid question. It would be better to include some fake-data to plot instead of trying to plot your actual data.