我有一个 Pandas 数据框,我想将其绘制为 matplotlib 表。到目前为止,我的那部分正在使用以下代码:
import numpy as np
randn = np.random.randn
from pandas import *
idx = Index(arange(1,11))
df = DataFrame(randn(10, 5), index=idx, columns=['A', 'B', 'C', 'D', 'E'])
vals = np.around(df.values,2)
fig = plt.figure(figsize=(15,8))
ax = fig.add_subplot(111, frameon=True, xticks=[], yticks=[])
the_table=plt.table(cellText=vals, rowLabels=df.index, colLabels=df.columns,
colWidths = [0.03]*vals.shape[1], loc='center')
table_props = the_table.properties()
table_cells = table_props['child_artists']
clm = cm.hot(vals)
for cell in table_cells:
cell.set_height(0.04)
# now i would like to set the backgroundcolor of the cell
最后,我想根据颜色图设置单元格的背景颜色 - 但是我如何在没有索引的 clm 数组中查找它?
另一个问题:我可以以某种方式将格式字符串传递给表格,以便将文本格式化为小数点后 2 位吗?
任何提示表示赞赏,安迪