Python Pandas 选项和定制
Pandas提供了API来定制其行为的一些方面,其中显示功能被广泛使用。
该API由五个相关函数组成。它们是:
- get_option()
- set_option()
- reset_option()
- describe_option()
- option_context()
让我们现在了解这些函数如何操作。
get_option(param)
get_option接受一个参数并将其值返回为下面的输出所示:
display.max_rows
显示默认值。解释器读取此值并将行显示为此值作为显示上限。
import pandas as pd
print pd.get_option("display.max_rows")
它的 输出 如下:
60
display.max_columns
显示默认的数据值数量。 解释器读取此值,并将以此值作为显示的上限来显示行。
import pandas as pd
print pd.get_option("display.max_columns")
它的输出如下:
20
这里,60和20是默认的配置参数值。
set_option(param,value)
set_option接受两个参数,并将参数的值设置如下:
display.max_rows
使用 set_option() ,我们可以更改默认显示的行数。
import pandas as pd
pd.set_option("display.max_rows",80)
print pd.get_option("display.max_rows")
它的输出如下所示−
80
display.max_columns
使用 set_option() ,我们可以更改默认显示的行数。
import pandas as pd
pd.set_option("display.max_columns",30)
print pd.get_option("display.max_columns")
它的 输出 如下:
30
重置选项(param)
重置选项 接受一个参数,并将值设置为默认值。
display.max_rows
使用reset_option(),我们可以将值更改回默认的显示行数。
import pandas as pd
pd.reset_option("display.max_rows")
print pd.get_option("display.max_rows")
它的 输出 如下:
60
describe_option(param)
describe_option 打印参数的描述。
display.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()
option_context上下文管理器用于在 with语句 中临时设置选项。当退出 with块 时,选项值会自动恢复。
display.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 context 内部是临时的。在 with context 之后,第二个打印语句打印的是配置的值。
常用参数
Sr.No | 参数和描述 |
---|---|
1 | display.max_rows 显示要显示的最大行数 |
2 | display.max_columns 显示要显示的最大列数 |
3 | display.expand_frame_repr 显示要拉伸页面的DataFrame |
4 | display.max_colwidth 显示最大列宽 |
5 | display.precision 显示十进制数的精度 |