pandas.describe_option(pat, _print_desc=False) = <pandas.core.config.CallableDynamicDoc object> Prints the description for one or more registered options.
Call with not arguments to get a listing for all registered options.
Available options:
| Parameters: |
pat : str Regexp pattern. All matching keys will have their description displayed. _print_desc : bool, default True If True (default) the description(s) will be printed to stdout. Otherwise, the description(s) will be returned as a unicode string (for testing). |
|---|---|
| Returns: |
|
The available options with its descriptions:
compute.use_bottleneck : bool compute.use_numexpr : bool display.chop_threshold : float or None display.colheader_justify : ‘left’/’right’ display.date_dayfirst : boolean display.date_yearfirst : boolean display.encoding : str/unicode display.expand_frame_repr : boolean max_columns is still respected, but the output will wrap-around across multiple “pages” if its width exceeds display.width. [default: True] [currently: True]display.float_format : callable display.html.border : int border=value attribute is inserted in the <table> tag for the DataFrame HTML repr. [default: 1] [currently: 1]display.html.table_schema : boolean display.html.use_mathjax : boolean display.large_repr : ‘truncate’/’info’ display.latex.escape : bool display.latex.multicolumn : bool display.latex.multicolumn_format : bool display.latex.multirow : bool display.latex.repr : boolean display.max_categories : int Categorical or a Series of dtype “category”. [default: 8] [currently: 8]display.max_columns : int If max_cols is exceeded, switch to truncate view. Depending on large_repr, objects are either centrally truncated or printed as a summary view. ‘None’ value means unlimited.
In case python/IPython is running in a terminal and large_repr equals ‘truncate’ this can be set to 0 and pandas will auto-detect the width of the terminal and print a truncated object which fits the screen width. The IPython notebook, IPython qtconsole, or IDLE do not run in a terminal and hence it is not possible to do correct auto-detection. [default: 0] [currently: 0]
display.max_colwidth : int display.max_info_columns : int display.max_info_rows : int or None display.max_rows : int If max_rows is exceeded, switch to truncate view. Depending on large_repr, objects are either centrally truncated or printed as a summary view. ‘None’ value means unlimited.
In case python/IPython is running in a terminal and large_repr equals ‘truncate’ this can be set to 0 and pandas will auto-detect the height of the terminal and print a truncated object which fits the screen height. The IPython notebook, IPython qtconsole, or IDLE do not run in a terminal and hence it is not possible to do correct auto-detection. [default: 60] [currently: 15]
display.max_seq_items : int or None when pretty-printing a long sequence, no more then max_seq_items will be printed. If items are omitted, they will be denoted by the addition of “…” to the resulting string.
If set to None, the number of items to be printed is unlimited. [default: 100] [currently: 100]
display.memory_usage : bool, string or None display.multi_sparse : boolean display.notebook_repr_html : boolean display.pprint_nest_depth : int display.precision : int display.show_dimensions : boolean or ‘truncate’ display.unicode.ambiguous_as_wide : boolean display.unicode.east_asian_width : boolean display.width : int html.border : int border=value attribute is inserted in the <table> tag for the DataFrame HTML repr. [default: 1] [currently: 1] (Deprecated, use display.html.border instead.)io.excel.xls.writer : string io.excel.xlsm.writer : string io.excel.xlsx.writer : string io.hdf.default_format : format io.hdf.dropna_table : boolean io.parquet.engine : string mode.chained_assignment : string mode.sim_interactive : boolean mode.use_inf_as_na : boolean mode.use_inf_as_null : boolean use_inf_as_na instead. [default: False] [currently: False] (Deprecated, use mode.use_inf_as_na instead.)plotting.matplotlib.register_converters : bool
© 2008–2012, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
Licensed under the 3-clause BSD License.
http://pandas.pydata.org/pandas-docs/version/0.23.4/generated/pandas.describe_option.html