Python中的 Pandas.describe_option()函数
Pandas 有一个选项系统,可让您自定义其行为的某些方面,与显示相关的选项是用户最有可能调整的选项。让我们看看如何查看指定选项的描述。
描述选项()
Syntax : pandas.describe_option(pat, _print_desc = False)
Parameters :
- pat : Regexp which should match a single option.
- _print_desc : 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 : None by default, the description(s) as a unicode string if _print_desc is False
示例 1:获取 max_columns 的描述。
Python3
# importing the module
import pandas as pd
# description for max_columns
print(pd.describe_option("display.max_columns"))
Python3
# importing the module
import pandas as pd
# description for all the options
print(pd.describe_option())
输出 :
示例 2:通过在参数中不传递任何内容来获取所有选项的描述。
Python3
# importing the module
import pandas as pd
# description for all the options
print(pd.describe_option())
输出 :