Power BI环境中的SNS热图

时间:2018-10-11 22:05:35

标签: python data-visualization powerbi seaborn heatmap

我正在尝试使此热图更大,更易于阅读。到目前为止,我无法执行此操作,因为我不能将两个前N个过滤器用于父级名称和帐单处理程序。我怎样才能解决这个问题?请参阅链接以获取热图的图片。 Array.forEach()

import seaborn as sns
import matplotlib.pyplot as plt
from pandas import pivot_table
flight_matrix = dataset.pivot_table(values = "Probability Voided", index = 
"Bill Processor", columns = "Parent Name[enter image description here][1]")
fig = plt.figure(figsize=(9, 5))
r = sns.heatmap(flight_matrix, cmap='YlOrRd', annot= True)
plt.show()

0 个答案:

没有答案