How to delete column after applying styler? Here's my style function:
def highlight_late(x):
c1 = 'background-color: red'
#condition
m = x['price_1'] < x['price_main_x']
m2 = x['price_2'] < x['price_main_x']
m3 = x['price_3'] < x['price_main_x']
#empty DataFrame of styles
df1 = pd.DataFrame('', index=x.index, columns=x.columns)
#set column price_2 by condition
df1.loc[m, 'price_1'] = c1
df1.loc[m2, 'price_2'] = c1
df1.loc[m3, 'price_3'] = c1
df1.loc[m, 'url_x'] = c1
df1.loc[m2, 'url_y'] = c1
df1.loc[m3, 'url'] = c1
return df1
Method below return me TypeError: 'Styler' object does not support item deletion
styles = myDF.style.apply(highlight_late, axis=None)
del styles['price_1']
del styles['price_2']
del styles['price_3']
styles.to_excel('test.xlsx')
i also try:
mydf.style.hide_columns(['price_1', 'price_2', 'price_3']).to_excel('test.xlsx')
its not work, columns wont hide.
even this simple script from https://pandas.pydata.org/docs/reference/api/pandas.io.formats.style.Styler.hide_columns.html wont work
df = pd.DataFrame([[1, 2, 3], [4, 5, 6]], columns=["a", "b", "c"])
df.style.hide_columns(["a", "b"])
df.to_excel('test2.xlsx')
From pandas v1.4.0 use .hide with axis='columns'. .hide_columns is deprecated.
Try hide_columns:
styles = myDF.style.hide_columns(['price_1', 'price_2', 'price_3']).apply(highlight_late, axis=None)
Or delete them:
styles = myDF.style.hide_columns(['price_1', 'price_2', 'price_3'])
styles = styles.apply(highlight_late, axis=None)
You can specify the columns you want to write into Excel instead.
cols = [col for col in styles.columns if col == condition]
df.to_excel('test2.xlsx', columns=cols)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With