@@ -35,8 +35,8 @@ horizontal scrolling, auto-detection of width/height.
35
35
To appropriately address all these environments, the display behavior is controlled
36
36
by several options, which you're encouraged to tweak to suit your setup.
37
37
38
- As of 0.11.0, the relavent options are all under the `display ` namespace,
39
- (e.g. display.width, display.height, etc'):
38
+ As of 0.11.1, these are the relavent options, all under the `display ` namespace,
39
+ (e.g. display.width, etc'):
40
40
- notebook_repr_html: if True, IPython frontends with HTML support will display
41
41
dataframes as HTML tables when possible.
42
42
- expand_repr (default True): when the frame width cannot fit within the screen,
@@ -45,10 +45,10 @@ As of 0.11.0, the relavent options are all under the `display` namespace,
45
45
- max_columns: max dataframe columns to display. a wider frame will trigger
46
46
a summary view, unless `expand_repr ` is True and HTML output is disabled.
47
47
- max_rows: max dataframe rows display. a longer frame will trigger a summary view.
48
- - width: width of display screen in characters. When using a terminal, setting this to None
49
- will trigger auto-detection of terminal width.
50
- - height: height of display screen. When using a terminal, setting this to None
51
- will trigger auto-detection of terminal height .
48
+ - width: width of display screen in characters, used to determine the width of lines
49
+ when expand_repr is active, Setting this to None will trigger auto-detection of terminal
50
+ width, this only works for proper terminals, not IPython frontends such as ipnb.
51
+ width is ignored in IPython notebook, since the browser provides horizontal scrolling .
52
52
53
53
IPython users can use the IPython startup file to import pandas and set these
54
54
options automatically when starting up.
0 commit comments