I can't visualize data frames with Styles in PyCharm. I'm using the following user guide: http://pandas-docs.github.io/pandas-docs-travis/user_guide/style.html
I only get a Pandas styler object (pandas.io.formats.style.Styler)
I'm using PyCharm 2018.3.7 and Pandas 0.25:
import pandas as pd
import numpy as np
np.random.seed(24)
df = pd.DataFrame({'A': np.linspace(1, 10, 10)})
df = pd.concat([df, pd.DataFrame(np.random.randn(10, 4), columns=list('BCDE'))],
axis=1)
df.iloc[0, 2] = np.nan
df.style
I would like to generate some data frames with styles e.g. color-coded cells, conditional formatting...etc. Thank you for your help!