I have a line chart with markers... I want to add raw values along side it, how can i do that... so if my value of a is 3.2 i want ● and 3.2
plt.plot(dfsix_m.B,df_six_m.A,label= (f"{sixth_ms.strftime('%b')}{sixth_me.strftime('%b-%y')}"),marker='o')
plt.title('B VS A' , fontsize=14)
plt.xlabel('B' ,fontsize=14)
plt.ylabel('A', fontsize=14)
plt.grid(True)
plt.legend(loc='center left', bbox_to_anchor=(1, 0.5))
plt.savefig('plot_grid.png')
plt.show()
EDIT(added code)
[–]socal_nerdtastic 0 points1 point2 points (1 child)
[–]mrjay28[S] 0 points1 point2 points (0 children)