将数据框样式应用于另一个数据框,而无需重新评估

时间:2019-01-31 16:24:33

标签: python pandas dataframe formatting

我有一个带有布尔值的数据框,并且想要在包含数字的相似数据框中标记所有真值。 如何使用<dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-jpa</artifactId> <version>2.0.4.RELEASE</version> </dependency> 来做到这一点?

df.style

如何将这种样式应用于df = pd.DataFrame( [[0,1,0.1,-1], [1,2,0.2,-2], [2,3,0.3,-3], [3,4,0.4,-4]], columns=['x',1,2,3]) mask = df < 0 def mark_true(val): """ Takes a scalar and returns a string with the css property `'color: red'` for true, black otherwise. """ color = 'red' if val is True else 'black' return 'color: %s' % color style = mask.style.applymap(mark_true) ?出于比较目的,我不想使用df进行重新评估。

0 个答案:

没有答案