Answers for "give cell format to condition pandas dataframe"

0

give cell format to condition pandas dataframe

import pandas as pd
df = pd.DataFrame([[2,3,1], [3,2,2], [2,4,4]], columns=list("ABC"))

df.style.apply(lambda x: ["background: red" if v > x.iloc[0] else "" for v in x], axis = 1)
Posted by: Guest on January-25-2021

Code answers related to "give cell format to condition pandas dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language