注释seaborn群集图时如何避免科学记数法?

时间:2015-06-25 16:01:30

标签: python pandas seaborn

我有一个包含百分比的数据框。如果我使用seaborn以clusterplot形式1001+e01数字标记为OnTabChanged

有什么方法可以避免这种情况吗?

我在绘制它们之前尝试舍入百分比,但这不会影响情节。

1 个答案:

答案 0 :(得分:2)

使用fmt="d",如this example

import seaborn as sns
sns.set()

flights_long = sns.load_dataset("flights")
flights = flights_long.pivot("month", "year", "passengers")
flights = flights.reindex(flights_long.iloc[:12].month)

sns.heatmap(flights, annot=True, fmt="d")

enter image description here

fmtheatmap的参数,但其他clustermap个kwargs会传递到主热图。