我一直在高低搜索,只显示 2 位浮点数。这是一个变量“浓缩”,它等于 31.5925925926....... 有没有办法在 matplotlib.pyplot 中显示以下内容?

想要的情节标题:

ROC Curve; Enrichment factor 1% = 31.59

这是代码
plt.title('ROC Curve; Enrichment factor 1% = '+str(enrichment))

这将显示
ROC Curve; Enrichment factor 1% = 31.5925925926

谢谢!

最佳答案

Matplotlib 在这里无关紧要。只需使用字符串格式
plt.title('ROC Curve; Enrichment factor 1% = {:.2f}'.format(enrichment))

关于python - matplotlib.pyplot 标题调整以浮点形式显示的位数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26772456/

10-11 02:38