Display Setup¶
It is good idea to configure output setup as prefered
In [134]:
pd.set_option( 'display.notebook_repr_html', False) # render Series and DataFrame as text, not HTML pd.set_option( 'display.max_column', 7) # number of columns pd.set_option( 'display.max_rows', 10) # number of rows pd.set_option( 'display.width', 60) # number of characters per row