我有 df1 和 df2。我想使用 df2 中的值在 df1 的单元格中显示条形图。我能够使用下面的代码应用其他形式的样式,但是对于条形图你不能使用这种方法。def color_cells(s): if s > 90: return 'color:{0}; font-weight:bold'.format('green') elif s>80: return 'background-color: light yellow;color:{0}; font-weight:regular'.format('dark yellow') else: return 'color:{0}; font-weight:bold'.format('red')df1.style.apply(lambda x: df2.applymap(color_cells), axis=None)我在 df2 中获取条形码的代码是df2.style.bar(color=['#d65f5f', '#5fba7d'])如何将以上代码应用于 df1?索引和列名相同。添加示例数据框:df1=pd.DataFrame(np.random.rand(15, 10))df2=pd.DataFrame(np.random.rand(15, 10)*100)
1 回答
慕侠2389804
TA贡献1719条经验 获得超6个赞
这是执行此操作的代码:
df1=pd.DataFrame(np.random.rand(15, 10))
df2=pd.DataFrame(np.random.rand(15, 10)*100)
pct = (df2 - df2.min()) / (df2.max() - df2.min() )*100
def make_bar_style(x):
return f"background: linear-gradient(90deg,#5fba7d {x}%, transparent {x}%); width: 10em"
pct.applymap(make_bar_style).shape
df1.style.apply(lambda x: pct.applymap(make_bar_style), axis=None)
结果是:
为了证明条形尺寸由 df2 驱动这一事实,请考虑以下内容:
df2 = pd.DataFrame(np.mgrid[0:15, 0:10][0])
结果是:
添加回答
举报
0/150
提交
取消