在情节中错过了Seaborn的价值

时间:2019-09-19 15:46:39

标签: python plot seaborn

您好,我尝试使用以下代码创建一个带有seaborn的图,但是在图中获得了0.00%的值。

高度和总计正确,但只有0.00个值。 有什么想法吗? 谢谢enter image description here

guesser()

1 个答案:

答案 0 :(得分:0)

如果您使用的是python 2,

height/total * 100

返回整数。
我建议:

height/total * 100.0

编辑: 我建议:

float(height)/total * 100

以便python知道您要浮动。我之前的答案将数字转换为浮点数,但是只有一次为时已晚。整数除法(在python 2中是默认设置)与python 3中的int(height/total)等效。要更改此行为,还可以添加:

from __future__ import division