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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。