Numpy 的 set_printoptions(~)
方法自定義 Numpy 數組的打印方式。
參數
1.precision
| int
或 None
| optional
要顯示的小數位數。精度為 3 意味著 3.1415
變為 3.142
。如果傳遞 None
並且 floatmode
不是 fixed
,則精度將使得它們的值唯一區分。默認情況下,precision=8
。
2. threshold
| int
| optional
如果數組中的值數量大於 threshold
,則不會打印每個值,而是使用 ...
截斷這些值。默認情況下,threshold=1000
。
3. edgeitems
| int
| optional
如果發生截斷,則顯示在前麵和後麵的值的數量。默認情況下,edgeitems=3
。
4. linewidth
| int
| optional
每行的字符數。默認情況下,linewidth=75
。
5. suppress
| boolean
| optional
是否以完整小數顯示值而不是使用科學記數法。僅適用於絕對值小於 1e-4
或數組中最大值與最小值之比大於 1000 的浮點數。默認為 suppress=False
。
6. nanstr
| string
| optional
用於替換數組中任何 nan
的字符串。默認情況下,nanstr="nan"
.
7. infstr
| string
| optional
用於替換數組中任何 inf
的字符串。默認情況下,infstr="inf"
。
8. sign
| string
| optional
如何處理值的符號:
值 |
說明 |
---|---|
"-" |
省略+。 |
"+" |
在正數前麵放置一個 +。 |
" " |
在正數前麵放置一個空格。 |
默認情況下,sign="-"
。
9. formatter
| dict<string,function>
| optional
適用於不同數據類型的映射。字典的鍵值對如下:
-
key:您希望應用映射的類型
-
value:一個函數,它將類型為
key
的值作為輸入,並返回一個新值。
以下是一些主要數據類型:
類型 |
說明 |
---|---|
"bool" |
轉換布爾值。 |
"int" |
轉換整數。 |
"float" |
轉換浮點數。 |
"timedelta" |
轉換時間增量。 |
"datatime" |
轉換日期時間。 |
以下是您可以提供的一些特殊 key :
鑰匙 |
說明 |
---|---|
"all" |
轉換所有數據類型。 |
"float_kind" |
轉換"float"和"longfloat" |
"str_kind" |
轉換"str"和"numpystr" |
默認情況下,formatter=None
。
10.floatmode
| string
| optional
如何處理浮點數的精度:
值 |
說明 |
---|---|
"fixed" |
始終顯示指定的 |
"unique" |
顯示最小小數位數,以便唯一標識值。這會忽略指定的 |
"maxprec" |
最多打印指定的 |
"maxprec_equal" |
最多打印指定的 |
默認情況下,floatmode="maxprec_equal"
。
返回值
沒有,因為此方法隻是打印在屏幕上。
例子
基本用法
顯示 3 個小數位:
np.set_printoptions(precision=3)
np.array([0.000005, 3.1416])
array([5.000e-06, 3.142e+00])
要獲得未修複的 precision
,請傳遞 None
:
np.set_printoptions(precision=None)
np.array([3.14, 3.1416])
array([3.14 , 3.142])
指定閾值
默認情況下, threshold=1000
,這意味著將匯總具有 1000 個或更多值的打印數組:
print(np.arange(1500))
[ 0 1 2 ... 1497 1498 1499]
這意味著小數組不會被匯總:
print(np.arange(7))
[0 1 2 3 4 5 6]
我們可以設置一個閾值,這樣即使是這些小數組也會被匯總:
np.set_printoptions(threshold=3)
np.arange(7)
array([0, 1, 2, ..., 4, 5, 6])
指定邊項目
默認情況下, edgeitems=3
,這意味著當匯總值時,左側將顯示 3 個值,右側將顯示 3 個值:
print(np.arange(1500))
[ 0 1 2 ... 1497 1498 1499]
我們可以通過設置我們自己的 edgeitems
來自定義它:
np.set_printoptions(edgeitems=4)
print(np.arange(1500))
[ 0 1 2 3 ... 1496 1497 1498 1499]
指定線寬
默認情況下, linewidth=75
,這意味著每打印行最多可以有 75 個字符:
print(np.array([12, 34, 5]))
[12 34 5]
每行最多隻打印 7 個字符:
np.set_printoptions(linewidth=7)
print(np.array([12, 34, 5]))
[12 34
5]
指定抑製
要顯示小於 1e-4
的數字的所有小數位:
np.set_printoptions(suppress=True)
print(np.array([1e-5]))
[0.00001]
suppress=False
的默認行為如下:
np.set_printoptions(suppress=False)
print(np.array([1e-5]))
[1.e-05]
指定nanstr
np.set_printoptions(nanstr="Missing!")
print(np.array([np.NaN, 3.14]))
[Missing! 3.14]
指定 infstr
np.set_printoptions(infstr="Infinity!")
print(np.array([np.inf, 3.14]))
[Infinity! 3.14]
指定標誌
要顯示正數的 +
符號:
np.set_printoptions(sign="+")
print(np.array([np.inf, 3.14, -2]))
[ +inf +3.14 -2. ]
要在正數前麵添加" "
:
np.set_printoptions(sign=" ")
print(np.array([np.inf, 3.14, -2]))
[ inf 3.14 -2. ]
這裏很難看到,但添加了一個空格。
指定格式化程序
將所有布爾值 True 轉換為 1
並將 False 轉換為 "-1"
。
mapping = {
"bool": lambda x: "1" if x else "-1"
}
np.set_printoptions(formatter=mapping)
print(np.array([True, False, True]))
[1 -1 1]
這裏,請確保您在映射中返回一個字符串,否則將引發錯誤。
指定浮點數模式
固定的
要打印具有相同小數位的浮點數(即默認為 8):
np.set_printoptions(floatmode="fixed")
print(np.array([5.05, 5.05001]))
[5.05000000 5.05001000]
獨特
要打印具有最少小數位數的浮點數,以便唯一標識這些值:
np.set_printoptions(floatmode="unique")
print(np.array([5.05, 5.05001]))
[5.05 5.05001]
請注意,這會忽略 precision
參數。
最大預測值
與 unique 相同,但浮點數最多可以有 precision
:
np.set_printoptions(floatmode="maxprec", precision=4)
print(np.array([5.05, 5.052999]))
[5.05 5.053]
maxprec_equal
與 maxprec
相同,但浮點數都具有相同的 precision
:
np.set_printoptions(floatmode="maxprec_equal")
print(np.array([5.05, 5.05001]))
[5.05000 5.05001]
相關用法
- Python NumPy set_string_function方法用法及代碼示例
- Python Django set用法及代碼示例
- Python Django set_language用法及代碼示例
- Python dict setdefault()用法及代碼示例
- Python calendar setfirstweekday()用法及代碼示例
- Python set clear()用法及代碼示例
- Python NumPy setdiff1d方法用法及代碼示例
- Python set構造函數用法及代碼示例
- Python OpenCV setWindowTitle()用法及代碼示例
- Python set()用法及代碼示例
- Python setattr()用法及代碼示例
- Python set copy()用法及代碼示例
- Python set add()用法及代碼示例
- Python set symmetric_difference_update()用法及代碼示例
- Python OpenCV setTrackbarPos()用法及代碼示例
- Python seaborn.swarmplot()用法及代碼示例
- Python NumPy searchsorted方法用法及代碼示例
- Python seaborn.residplot()用法及代碼示例
- Python Django serve用法及代碼示例
- Python seaborn.regplot()用法及代碼示例
- Python Django sensitive_variables用法及代碼示例
- Python BeautifulSoup select_one方法用法及代碼示例
- Python seaborn.PairGrid()用法及代碼示例
- Python Tableau server_info.get用法及代碼示例
- Python BeautifulSoup select方法用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 NumPy | set_printoptions method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。