如何将具有两个索引列和一个值列的 pandas 数据框转换为热图?

How to transform a pandas dataframe with two index columns and one value column into a heat map?

我有一个 df,导出到 excel 时看起来像这样。其中列 A 和 B 为索引列。 excel output of df

如何转换成这种格式? wanted output

使用pandas.DataFrame.unstack

df = df.unstack(level=-1)