- Python pandas教程
- Python Pandas - 主页
- Python Pandas - 简介
- Python Pandas - 环境设置
- 数据结构简介
- Python pandas - 系列
- Python Pandas - 数据帧
- Python Pandas - 面板
- Python Pandas - 基本功能
- 描述性统计
- 功能应用
- Python Pandas - 重新索引
- Python Pandas - 迭代
- Python Pandas - 排序
- 处理文本数据
- 选项和定制
- 索引和选择数据
- 统计功能
- Python Pandas - 窗口函数
- Python Pandas - 聚合
- Python Pandas - 缺失数据
- Python Pandas - GroupBy
- Python Pandas - 合并/连接
- Python Pandas - 连接
- Python Pandas - 日期功能
- Python Pandas - Timedelta
- Python Pandas - 分类数据
- Python Pandas - 可视化
- Python Pandas - IO 工具
- Python Pandas - 稀疏数据
- Python Pandas - 注意事项和陷阱
- 与SQL的比较
- Python Pandas 有用资源
- Python Pandas - 快速指南
- Python Pandas - 有用的资源
- Python Pandas - 讨论
Python Pandas - 选项和自定义
Pandas 提供 API 来定制其Behave的某些方面,其中最常用的是显示。
API 由五个相关函数组成。他们是 -
- 获取选项()
- 设置选项()
- 重置选项()
- 描述选项()
- 选项上下文()
现在让我们了解这些功能是如何运作的。
获取选项(参数)
get_option 采用单个参数并返回以下输出中给出的值 -
显示.max_rows
显示默认值的数量。解释器读取该值并显示以该值作为显示上限的行。
import pandas as pd print pd.get_option("display.max_rows")
其输出如下 -
60
显示.max_columns
显示默认值的数量。解释器读取该值并显示以该值作为显示上限的行。
import pandas as pd print pd.get_option("display.max_columns")
其输出如下 -
20
这里,60和20是默认配置参数值。
set_option(参数,值)
set_option 接受两个参数并将值设置为参数,如下所示 -
显示.max_rows
使用set_option(),我们可以更改要显示的默认行数。
import pandas as pd pd.set_option("display.max_rows",80) print pd.get_option("display.max_rows")
其输出如下 -
80
显示.max_columns
使用set_option(),我们可以更改要显示的默认行数。
import pandas as pd pd.set_option("display.max_columns",30) print pd.get_option("display.max_columns")
其输出如下 -
30
重置选项(参数)
reset_option接受一个参数并将值设置回默认值。
显示.max_rows
使用reset_option(),我们可以将值更改回要显示的默认行数。
import pandas as pd pd.reset_option("display.max_rows") print pd.get_option("display.max_rows")
其输出如下 -
60
描述选项(参数)
describe_option 打印参数的描述。
显示.max_rows
使用reset_option(),我们可以将值更改回要显示的默认行数。
import pandas as pd pd.describe_option("display.max_rows")
其输出如下 -
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: 60]
选项上下文()
option_context上下文管理器用于临时设置with语句中的选项。当您退出with 块时,选项值会自动恢复-
显示.max_rows
使用 option_context(),我们可以临时设置该值。
import pandas as pd with pd.option_context("display.max_rows",10): print(pd.get_option("display.max_rows")) print(pd.get_option("display.max_rows"))
其输出如下 -
10 10
看看第一个和第二个打印语句之间的区别。第一条语句打印option_context()设置的值,该值在with 上下文本身中是临时的。在with context之后,第二个 print 语句打印配置的值。
常用参数
先生编号 | 参数及说明 |
---|---|
1 |
显示.max_rows 显示要显示的最大行数 |
2 |
2 显示.max_columns 显示要显示的最大列数 |
3 |
显示.expand_frame_repr 显示数据框以拉伸页面 |
4 |
显示.max_colwidth 显示最大列宽 |
5 |
显示精度 显示十进制数的精度 |