The following line of code prints the standard deviation and mean on my graph using matplotlib in python. My question is. How do I convert the values to 2 decimals?
ax.text(60, 0.01, r'$\mu={},\ \sigma={}$'.format(np.mean(stat_input),np.std(stat_input)))