I'm trying to color just a certain output, something like this
df['a'] = df['a'].fillna(df['b'].map(s)).style.applymap(lambda x: "background-color:yellow")
so I get the error
AttributeError: 'Series' object has no attribute 'style'
How can I make it right and color only the output that comes out of this?