Python之pandas:pandas.set_option函数的参数详细解释

目录

pandas.set_option函数的参数解释


函数API:pandas.set_option

pandas.set_option函数的参数解释

pandas.set_option(patvalue) = <pandas._config.config.CallableDynamicDoc object>

Available options:

  • compute.[use_bottleneck, use_numba, use_numexpr]

  • display.[chop_threshold, colheader_justify, column_space, date_dayfirst, date_yearfirst, encoding, expand_frame_repr, float_format]

  • display.html.[border, table_schema, use_mathjax]

  • display.[large_repr]

  • display.latex.[escape, longtable, multicolumn, multicolumn_format, multirow, repr]

  • display.[max_categories, max_columns, max_colwidth, max_info_columns, max_info_rows, max_rows, max_seq_items, memory_usage, min_rows, multi_sparse, notebook_repr_html, pprint_nest_depth, precision, show_dimensions]

  • display.unicode.[ambiguous_as_wide, east_asian_width]

  • display.[width]

  • io.excel.ods.[reader, writer]

  • io.excel.xls.[reader, writer]

  • io.excel.xlsb.[reader]

  • io.excel.xlsm.[reader, writer]

  • io.excel.xlsx.[reader, writer]

  • io.hdf.[default_format, dropna_table]

  • io.parquet.[engine]

  • mode.[chained_assignment, sim_interactive, use_inf_as_na, use_inf_as_null]

  • plotting.[backend]

  • plotting.matplotlib.[register_converters]

 

Parameters:pat:str

Regexp which should match a single option. Note: partial matches are supported for convenience, but unless you use the full option name (e.g. x.y.z.option_name), your code may break in future versions if new options with similar names are introduced.

value:object,New value of option.

Returns None

Raises OptionError if no such option exists

 

Notes

The available options with its descriptions:

compute.use_bottleneckbool

Use the bottleneck library to accelerate if it is installed, the default is True Valid values: False,True [default: True] [currently: True]

compute.use_numbabool

Use the numba engine option for select operations if it is installed, the default is False Valid values: False,True [default: False] [currently: False]

compute.use_numexprbool

Use the numexpr library to accelerate computation if it is installed, the default is True Valid values: False,True [default: True] [currently: True]

display.chop_thresholdfloat or None

if set to a float value, all float values smaller then the given threshold will be displayed as exactly 0 by repr and friends. [default: None] [currently: None]

display.colheader_justify‘left’/’right’

Controls the justification of column headers. used by DataFrameFormatter. [default: right] [currently: right]

display.column_space No description available.

[default: 12] [currently: 12]

display.date_dayfirstboolean

When True, prints and parses dates with the day first, eg 20/01/2005 [default: False] [currently: False]

display.date_yearfirstboolean

When True, prints and parses dates with the year first, eg 2005/01/20 [default: False] [currently: False]

display.encodingstr/unicode

Defaults to the detected encoding of the console. Specifies the encoding to be used for strings returned by to_string, these are generally strings meant to be displayed on the console. [default: utf-8] [currently: utf-8]

display.expand_frame_reprboolean

Whether to print out the full DataFrame repr for wide DataFrames across multiple lines,max_columnsis still respected, but the output will wrap-around across multiple “pages” if its width exceedsdisplay.width. [default: True] [currently: True]

display.float_formatcallable

The callable should accept a floating point number and return a string with the desired format of the number. This is used in some places like SeriesFormatter. See formats.format.EngFormatter for an example. [default: None] [currently: None]

display.html.borderint

Aborder=valueattribute is inserted in the<table>tag for the DataFrame HTML repr. [default: 1] [currently: 1]

display.html.table_schemaboolean

Whether to publish a Table Schema representation for frontends that support it. (default: False) [default: False] [currently: False]

display.html.use_mathjaxboolean

When True, Jupyter notebook will process table contents using MathJax, rendering mathematical expressions enclosed by the dollar symbol. (default: True) [default: True] [currently: True]

display.large_repr‘truncate’/’info’

For DataFrames exceeding max_rows/max_cols, the repr (and HTML repr) can show a truncated table (the default from 0.13), or switch to the view from df.info() (the behaviour in earlier versions of pandas). [default: truncate] [currently: truncate]

display.latex.escapebool

This specifies if the to_latex method of a Dataframe uses escapes special characters. Valid values: False,True [default: True] [currently: True]

display.latex.longtable :bool

This specifies if the to_latex method of a Dataframe uses the longtable format. Valid values: False,True [default: False] [currently: False]

display.latex.multicolumnbool

This specifies if the to_latex method of a Dataframe uses multicolumns to pretty-print MultiIndex columns. Valid values: False,True [default: True] [currently: True]

display.latex.multicolumn_formatbool

This specifies if the to_latex method of a Dataframe uses multicolumns to pretty-print MultiIndex columns. Valid values: False,True [default: l] [currently: l]

display.latex.multirowbool

This specifies if the to_latex method of a Dataframe uses multirows to pretty-print MultiIndex rows. Valid values: False,True [default: False] [currently: False]

display.latex.reprboolean

Whether to produce a latex DataFrame representation for jupyter environments that support it. (default: False) [default: False] [currently: False]

display.max_categoriesint

This sets the maximum number of categories pandas should output when printing out aCategoricalor a Series of dtype “category”. [default: 8] [currently: 8]

display.max_columnsint

If max_cols is exceeded, switch to truncate view. Depending onlarge_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 andlarge_reprequals ‘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_colwidthint or None

The maximum width in characters of a column in the repr of a pandas data structure. When the column overflows, a “…” placeholder is embedded in the output. A ‘None’ value means unlimited. [default: 50] [currently: 50]

display.max_info_columnsint

max_info_columns is used in DataFrame.info method to decide if per column information will be printed. [default: 100] [currently: 100]

display.max_info_rowsint or None

df.info() will usually show null-counts for each column. For large frames this can be quite slow. max_info_rows and max_info_cols limit this null check only to frames with smaller dimensions than specified. [default: 1690785] [currently: 1690785]

display.max_rowsint

If max_rows is exceeded, switch to truncate view. Depending onlarge_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 andlarge_reprequals ‘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_itemsint or None

when pretty-printing a long sequence, no more thenmax_seq_itemswill 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_usagebool, string or None

This specifies if the memory usage of a DataFrame should be displayed when df.info() is called. Valid values True,False,’deep’ [default: True] [currently: True]

display.min_rowsint

The numbers of rows to show in a truncated view (whenmax_rowsis exceeded). Ignored whenmax_rowsis set to None or 0. When set to None, follows the value ofmax_rows. [default: 10] [currently: 10]

display.multi_sparseboolean

“sparsify” MultiIndex display (don’t display repeated elements in outer levels within groups) [default: True] [currently: True]

display.notebook_repr_htmlboolean

When True, IPython notebook will use html representation for pandas objects (if it is available). [default: True] [currently: True]

display.pprint_nest_depthint

Controls the number of nested levels to process when pretty-printing [default: 3] [currently: 3]

display.precisionint

Floating point output precision (number of significant digits). This is only a suggestion [default: 6] [currently: 6]

display.show_dimensionsboolean or ‘truncate’

Whether to print out dimensions at the end of DataFrame repr. If ‘truncate’ is specified, only print out the dimensions if the frame is truncated (e.g. not display all rows and/or columns) [default: truncate] [currently: truncate]

display.unicode.ambiguous_as_wideboolean

Whether to use the Unicode East Asian Width to calculate the display text width. Enabling this may affect to the performance (default: False) [default: False] [currently: False]

display.unicode.east_asian_widthboolean

Whether to use the Unicode East Asian Width to calculate the display text width. Enabling this may affect to the performance (default: False) [default: False] [currently: False]

display.widthint

Width of the display in characters. In case python/IPython is running in a terminal this can be set to None and pandas will correctly auto-detect the width. Note that the IPython notebook, IPython qtconsole, or IDLE do not run in a terminal and hence it is not possible to correctly detect the width. [default: 80] [currently: 80]

io.excel.ods.readerstring

The default Excel reader engine for ‘ods’ files. Available options: auto, odf. [default: auto] [currently: auto]

io.excel.ods.writerstring

The default Excel writer engine for ‘ods’ files. Available options: auto, odf. [default: auto] [currently: auto]

io.excel.xls.readerstring

The default Excel reader engine for ‘xls’ files. Available options: auto, xlrd. [default: auto] [currently: auto]

io.excel.xls.writerstring

The default Excel writer engine for ‘xls’ files. Available options: auto, xlwt. [default: auto] [currently: auto]

io.excel.xlsb.readerstring

The default Excel reader engine for ‘xlsb’ files. Available options: auto, pyxlsb. [default: auto] [currently: auto]

io.excel.xlsm.readerstring

The default Excel reader engine for ‘xlsm’ files. Available options: auto, xlrd, openpyxl. [default: auto] [currently: auto]

io.excel.xlsm.writerstring

The default Excel writer engine for ‘xlsm’ files. Available options: auto, openpyxl. [default: auto] [currently: auto]

io.excel.xlsx.readerstring

The default Excel reader engine for ‘xlsx’ files. Available options: auto, xlrd, openpyxl. [default: auto] [currently: auto]

io.excel.xlsx.writerstring

The default Excel writer engine for ‘xlsx’ files. Available options: auto, openpyxl, xlsxwriter. [default: auto] [currently: auto]

io.hdf.default_formatformat

default format writing format, if None, then put will default to ‘fixed’ and append will default to ‘table’ [default: None] [currently: None]

io.hdf.dropna_tableboolean

drop ALL nan rows when appending to a table [default: False] [currently: False]

io.parquet.enginestring

The default parquet reader/writer engine. Available options: ‘auto’, ‘pyarrow’, ‘fastparquet’, the default is ‘auto’ [default: auto] [currently: auto]

mode.chained_assignmentstring

Raise an exception, warn, or no action if trying to use chained assignment, The default is warn [default: warn] [currently: warn]

mode.sim_interactiveboolean

Whether to simulate interactive mode for purposes of testing [default: False] [currently: False]

mode.use_inf_as_naboolean

True means treat None, NaN, INF, -INF as NA (old way), False means None and NaN are null, but INF, -INF are not NA (new way). [default: False] [currently: False]

mode.use_inf_as_nullboolean

use_inf_as_null had been deprecated and will be removed in a future version. Useuse_inf_as_nainstead. [default: False] [currently: False] (Deprecated, usemode.use_inf_as_nainstead.)

plotting.backendstr

The plotting backend to use. The default value is “matplotlib”, the backend provided with pandas. Other backends can be specified by providing the name of the module that implements the backend. [default: matplotlib] [currently: matplotlib]

plotting.matplotlib.register_convertersbool or ‘auto’.

Whether to register converters with matplotlib’s units registry for dates, times, datetimes, and Periods. Toggling to False will remove the converters, restoring any converters that pandas overwrote. [default: auto] [currently: auto]

 

Python之pandas:pandas.set_option函数的参数详细解释相关推荐

  1. Python精讲Numpy基础,大牛笔记详细解释

    https://www.toutiao.com/a6664936105076326920/ 总认为Numpy是渣渣,直到深入接触以后才知道功能这么强大.堪比Matlab啊.果然是人生苦短,我用Pyth ...

  2. 运放参数详细解释与分析

    目录: 一.运放参数详细解释与分析 1.输入偏置电流和输入失调电流 2.如何测量输入偏置电流Ib.失调电流Ios 3.输入失调电压Vos及温漂 4.运放噪声快速计算 5.电源抑制比DC-PSRR 6. ...

  3. ThickBox 3.1参数详细解释

    ThickBox 3.1参数详细解释 class="thickbox" 调用特效: height 打开页面的高度: width 打开页面的宽度: title="Ifram ...

  4. 中国天气网天气API参数详细解释说明

    经常大家要使用到天气的API,但是,中国天气网天气api返回的JSON参数太多,那么给出中国天气网天气API参数详细解释说明,可以供给参考: view source print? 01 { 02    ...

  5. msde2000安装参数详细解释!

    解开安装包,里面有个setup.ini文件 用记事本打开setup.ini 有以下字段: [Options]      SECURITYMODE="SQL" DISABLENETW ...

  6. 关于python使用threadpool中的函数单个参数和多个参数用法举例

    1.对单个元素的函数使用线程池: # encoding:utf-8 __author__='xijun.gong' import threadpooldef func(name):print 'hi ...

  7. Python快速学习09: 函数的参数

    前言 系列文章:[传送门] 继续干起来!! 正文 我们已经接触过函数,函数是可以被引用的(访问或者以其他变量作为其别名),也作为参数传入函数,以及作为列表和字典等等容器对象的元素(function)的 ...

  8. Python中的两种函数可变长度参数类型:*args, **kwargs

    文章目录 1 简介 2 问题 3 分析 4 示例扩展 5 小结 1 简介 在Python的函数定义中, 我们可以看到有类似 fun(v1, *args, **kwargs) 这样的内容,其中*args ...

  9. python调用函数怎么错_在Python中从类调用函数时参数数目错误

    我试图用python编写一个遗传算法的实现.上面写着我用两个参数来调用它,而只有一个是允许的,但我肯定我不允许.在 以下是相关代码:class GA: def __init__(self, best, ...

最新文章

  1. 【ACM】杭电OJ 2027
  2. tensorflow实现梯度累计,再回传
  3. hdfs如何查找指定目录是否文件_在shell中如何判断HDFS中的文件目录是否存在
  4. 如何用oracle查看内存使用情况,oracle运维08内存使用情况分析查看
  5. 图片添加图片水印和文字水印
  6. C++:基于范围的for循环
  7. 对于PHP大型开发框架的看法
  8. 神器推荐!在浏览器中运行 VS Code,随时随地写代码
  9. Android 大位图加载
  10. 15-3 并发调度器
  11. python运用ico图标_如何优雅地处理Django中的favicon.ico图标详解
  12. Windows中使用包管理器(类似于apt/yum的) - Chocolatey
  13. 微服务架构实践之邮件通知系统改造
  14. Atitit 事务的一些概念 目录 1. 事务的另一个特性:数据隔离级别 1 2. Spring五个事务隔离级别和七个事务传播行为 1 3. 在TransactionDefinition接口中定义了
  15. vm虚拟机显卡是不是比服务器主板上的要好,自VM11起,虚拟显卡的性能是增强还是削弱?...
  16. 上海python数据分析_python数据分析项目——链家上海二手房数据分析(一)
  17. 2018年中国人均GDP接近1万美元,这在全球处于什么样的水平?
  18. PS利用色彩范围抠图
  19. 纸飞机飞行曲线matlab,从小到大只会做个纸飞机?关于折纸的「高端」技巧通通告诉你...
  20. 大数据研发能力模型(面试准备)

热门文章

  1. 更有效的加载较大的Bitmap
  2. 4kyu Sum by Factors
  3. python颜色的字母代码,如何在python中更改特定印刷字母的颜色?
  4. 2003引脚功能电压_嵌入式篇-IO引脚
  5. 使用object detection训练并识别自己的模型
  6. Spring MVC源码解析
  7. 区块链面试过程中的40个问题
  8. DBA基础(一)用户授权
  9. Spring Boot中如何干掉过多的if else!
  10. 从零单排学Redis【青铜】