您好,登錄后才能下訂單哦!
這篇文章主要介紹了numpy.unique()函數(shù)怎么使用的相關(guān)知識(shí),內(nèi)容詳細(xì)易懂,操作簡(jiǎn)單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇numpy.unique()函數(shù)怎么使用文章都會(huì)有所收獲,下面我們一起來(lái)看看吧。
numpy.unique() 函數(shù)接受一個(gè)數(shù)組,去除其中重復(fù)元素,并按元素由小到大返回一個(gè)新的無(wú)元素重復(fù)的元組或者列表。
numpy.unique(ar, return_index=False, return_inverse=False, return_counts=False, axis=None, *, equal_nan=True)
ar:輸入數(shù)組,除非設(shè)定了下面介紹的axis參數(shù),否則輸入數(shù)組均會(huì)被自動(dòng)扁平化成一個(gè)一維數(shù)組。
return_index:(可選參數(shù),布爾類型),如果為T(mén)rue則結(jié)果會(huì)同時(shí)返回被提取元素在原始數(shù)組中的索引值(index)。
return_inverse:(可選參數(shù),布爾類型),如果為T(mén)rue則結(jié)果會(huì)同時(shí)返回元素位于原始數(shù)組的索引值(index)。
return_counts:(可選參數(shù),布爾類型),如果為T(mén)rue則結(jié)果會(huì)同時(shí)每個(gè)元素在原始數(shù)組中出現(xiàn)的次數(shù)。
axis:計(jì)算唯一性時(shí)的軸
返回值:返回一個(gè)排好序列的獨(dú)一無(wú)二的數(shù)組。
np.unique([1, 1, 2, 2, 3, 3]) a = np.array([[1, 1], [2, 3]])
結(jié)果
array([1, 2, 3])
a = np.array([[1, 0, 0], [1, 0, 0], [2, 3, 4]]) np.unique(a, axis=0)
結(jié)果
array([[1, 0, 0], [2, 3, 4]])
a = np.array(['a', 'b', 'b', 'c', 'a']) u, indices = np.unique(a, return_index=True)
結(jié)果
array([0, 1, 3])
array(['a', 'b', 'c'], dtype='<U1')
a = np.array([1, 2, 6, 4, 2, 3, 2]) u, indices = np.unique(a, return_inverse=True) u[indices]
結(jié)果
array([1, 2, 3, 4, 6])
array([0, 1, 4, 3, 1, 2, 1])
array([1, 2, 6, 4, 2, 3, 2])
示例:嘗試用參數(shù) return_counts 解決一個(gè)小問(wèn)題。
# coding: utf-8 import numpy as np # 任務(wù): 統(tǒng)計(jì) a 中元素個(gè)數(shù), 找出出現(xiàn)次數(shù)最多的元素 a = np.array([1, 1, 1, 3, 3, 2, 2, 2, 2, 4, 5, 5]) # numpy.unique() 測(cè)試 b = np.unique(a) print(b) # 使用 return_counts=True 統(tǒng)計(jì)元素重復(fù)次數(shù) b, count = np.unique(a, return_counts=True) print(b, count) # 使用 zip 將元素和其對(duì)應(yīng)次數(shù)打包成一個(gè)個(gè)元組, 返回元組的列表 zipped = zip(b, count) # for i, counts in zipped: # print("%d: %d" % (i, counts)) # 這里打印zipped出來(lái), # # 下面 max()會(huì)報(bào) # # ValueError: max() arg is an empty sequence # # 不知道為什么 >_< # 使用 max() 函數(shù)找出出現(xiàn)次數(shù)最多的元素 target = max(zipped, key=lambda x: x[1]) print(target)
關(guān)于“numpy.unique()函數(shù)怎么使用”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對(duì)“numpy.unique()函數(shù)怎么使用”知識(shí)都有一定的了解,大家如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。