I have the dataset df4:
Cumulexr Cumulcoun SignB
1 43.035714 24.603175 Yes
3 71.785714 50.513539 No
0 89.107143 75.241208 No
2 100.000000 100.000000 No
And I am plotting them as:
plt.plot(df4["Cumulcoun"], df4["Cumulexr"], label="4 Cl."). But I want additionally to mark the point(with a dot) that has SignB=Yes. Any idea?
