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 配列でそれを調べるにはどうすればよいですか?
もう 1 つの質問: テーブルにフォーマット文字列を渡して、テキストを小数点以下 2 桁にフォーマットすることはできますか?
ヒントをいただければ幸いです、アンディ