我有一个带有布尔值的数据框,并且想要在包含数字的相似数据框中标记所有真值。
如何使用<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
进行重新评估。