Pandas 拥有一个选项系统,可以让您自定义其行为的某些方面,display-related选项是用户最有可能调整的选项。让我们看看如何查看指定选项的描述。
describe_option()
用法:pandas.describe_option(pat, _print_desc = False)
参数:
- pat:正则表达式应与单个选项匹配。
- _print_desc:如果为True(默认),说明将被打印到标准输出。否则,描述将以unicode字符串形式返回(用于测试)。
返回值:默认情况下为None,如果_print_desc为False,则描述为Unicode字符串
范例1:正在获取max_columns的描述。
# importing the module
import pandas as pd
# description for max_columns
print(pd.describe_option("display.max_columns"))
输出:
范例2:通过不传递任何参数来获取所有选项的描述。
# importing the module
import pandas as pd
# description for all the options
print(pd.describe_option())
输出量:
相关用法
- Python Wand function()用法及代码示例
- Python tell()用法及代码示例
- Python id()用法及代码示例
- Python map()用法及代码示例
- Python dir()用法及代码示例
- Python cmp()用法及代码示例
- Python int()用法及代码示例
- Python ord()用法及代码示例
- Python hex()用法及代码示例
- Python now()用法及代码示例
- Python oct()用法及代码示例
- Python str()用法及代码示例
- Python sum()用法及代码示例
- Python seek()用法及代码示例
- Python reversed()用法及代码示例
注:本文由纯净天空筛选整理自Yash_R大神的英文原创作品 Pandas.describe_option() function in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。