溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Python?NumPy數(shù)組的基本操作方法有哪些

發(fā)布時(shí)間:2022-08-25 16:33:07 來源:億速云 閱讀:131 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要介紹了Python NumPy數(shù)組的基本操作方法有哪些的相關(guān)知識,內(nèi)容詳細(xì)易懂,操作簡單快捷,具有一定借鑒價(jià)值,相信大家閱讀完這篇Python NumPy數(shù)組的基本操作方法有哪些文章都會有所收獲,下面我們一起來看看吧。

Numpy中的N維數(shù)組(ndarray)

Numpy 中的數(shù)組是一個(gè)元素表(通常是數(shù)字),所有元素類型相同,由正整數(shù)元組索引。在 Numpy 中,數(shù)組的維數(shù)稱為數(shù)組的秩。給出數(shù)組沿每個(gè)維的大小的整數(shù)元組稱為數(shù)組的形狀。Numpy 中的數(shù)組類稱為ndarray。Numpy 數(shù)組中的元素可以使用方括號訪問,并且可以使用嵌套的 Python 列表進(jìn)行初始化。

例子 :

[[ 1, 2, 3],
      [ 4, 2, 5]]

Here, rank = 2 (as it is 2-dimensional or it has 2 axes)
First dimension(axis) length = 2, second dimension has length = 3
overall shape can be expressed as: (2, 3)
# 演示基本數(shù)組特征的 Python 程序
import numpy as np
 
# 創(chuàng)建數(shù)組對象
arr = np.array( [[ 1, 2, 3],
                 [ 4, 2, 5]] )
 
# arr 對象的打印類型
print("Array is of type: ", type(arr))
 
# 打印數(shù)組維度(軸)
print("No. of dimensions: ", arr.ndim)
 
# 陣列的打印形狀
print("Shape of array: ", arr.shape)
 
# 數(shù)組的打印大?。ㄔ乜倲?shù))
print("Size of array: ", arr.size)
 
# 打印數(shù)組中元素的類型
print("Array stores elements of type: ", arr.dtype)

輸出 :

Array is of type:  <class 'numpy.ndarray'>
No. of dimensions:  2
Shape of array:  (2, 3)
Size of array:  6
Array stores elements of type:  int64

數(shù)組創(chuàng)建

在 NumPy 中有多種創(chuàng)建數(shù)組的方法。

  • 例如,您可以使用array函數(shù)從常規(guī) Python列表元組創(chuàng)建一個(gè)數(shù)組。 結(jié)果數(shù)組的類型是從序列中元素的類型推導(dǎo)出來的。****

  • 通常,數(shù)組的元素最初是未知的,但它的大小是已知的。因此,NumPy 提供了幾個(gè)函數(shù)來創(chuàng)建具有初始占位符內(nèi)容的數(shù)組。這些最大限度地減少了增長陣列的必要性,這是一項(xiàng)昂貴的操作。
    例如:  np.zeros、np.ones、np.full、np.empty 等。

  • 為了創(chuàng)建數(shù)字序列,NumPy 提供了一個(gè)類似于 range 的函數(shù),它返回?cái)?shù)組而不是列表。

  • arange: 返回給定間隔內(nèi)均勻分布的值。長是指定的。

  • linspace: 返回給定間隔內(nèi)均勻分布的值。編號_ 的元素被返回。

  • 重塑數(shù)組: 我們可以使用reshape方法來重塑數(shù)組。考慮一個(gè)形狀為 (a1, a2, a3, ..., aN) 的數(shù)組。我們可以重新整形并將其轉(zhuǎn)換為另一個(gè)形狀為 (b1, b2, b3, ..., bM) 的數(shù)組。唯一需要的條件是:
    a1 x a2 x a3 &hellip; x aN = b1 x b2 x b3 &hellip; x bM 。(即數(shù)組的原始大小保持不變。)

  • 扁平化數(shù)組: 我們可以使用扁平化方法將數(shù)組的副本折疊成一維。它接受order參數(shù)。默認(rèn)值為“C”(用于行優(yōu)先順序)。使用“F”表示列主要順序。

注意: 數(shù)組的類型可以在創(chuàng)建數(shù)組時(shí)顯式定義。

# 演示數(shù)組創(chuàng)建技術(shù)的 Python 程序
import numpy as np
 
# 從浮點(diǎn)類型的列表創(chuàng)建數(shù)組
a = np.array([[1, 2, 4], [5, 8, 7]], dtype = 'float')
print ("Array created using passed list:\n", a)
 
# 從元組創(chuàng)建數(shù)組
b = np.array((1 , 3, 2))
print ("\nArray created using passed tuple:\n", b)
 
# 創(chuàng)建一個(gè)全為零的 3X4 數(shù)組
c = np.zeros((3, 4))
print ("\nAn array initialized with all zeros:\n", c)
 
# 創(chuàng)建一個(gè)復(fù)雜類型的常量值數(shù)組
d = np.full((3, 3), 6, dtype = 'complex')
print ("\nAn array initialized with all 6s."
            "Array type is complex:\n", d)

輸出 :

Array created using passed list:
 [[ 1.  2.  4.]
 [ 5.  8.  7.]]

Array created using passed tuple:
 [1 3 2]

An array initialized with all zeros:
 [[ 0.  0.  0.  0.]
 [ 0.  0.  0.  0.]
 [ 0.  0.  0.  0.]]

An array initialized with all 6s. Array type is complex:
 [[ 6.+0.j  6.+0.j  6.+0.j]
 [ 6.+0.j  6.+0.j  6.+0.j]
 [ 6.+0.j  6.+0.j  6.+0.j]]

數(shù)組索引

了解數(shù)組索引的基礎(chǔ)知識對于分析和操作數(shù)組對象很重要。NumPy 提供了許多方法來進(jìn)行數(shù)組索引。

  • 切片: 就像 python 中的列表一樣,NumPy 數(shù)組可以切片。由于數(shù)組可以是多維的,因此您需要為數(shù)組的每個(gè)維度指定一個(gè)切片。

  • 整數(shù)數(shù)組索引: 在此方法中,傳遞列表以對每個(gè)維度進(jìn)行索引。完成對應(yīng)元素的一對一映射以構(gòu)造一個(gè)新的任意數(shù)組。

  • 布爾數(shù)組索引: 當(dāng)我們想從數(shù)組中選擇滿足某些條件的元素時(shí)使用此方法。

# 在 numpy 中演示索引的 Python 程序
import numpy as np
 
# 一個(gè)示例數(shù)組
arr = np.array([[-1, 2, 0, 4],
                [4, -0.5, 6, 0],
                [2.6, 0, 7, 8],
                [3, -7, 4, 2.0]])
 
# 切片數(shù)組
temp = arr[:2, ::2]
print ("Array with first 2 rows and alternate"
                    "columns(0 and 2):\n", temp)
 
# 整數(shù)數(shù)組索引示例
temp = arr[[0, 1, 2, 3], [3, 2, 1, 0]]
print ("\nElements at indices (0, 3), (1, 2), (2, 1),"
                                    "(3, 0):\n", temp)
 
# 布爾數(shù)組索引示例
cond = arr > 0 # cond is a boolean array
temp = arr[cond]
print ("\nElements greater than 0:\n", temp)

輸出 :

Array with first 2 rows and alternatecolumns(0 and 2):
 [[-1.  0.]
 [ 4.  6.]]

Elements at indices (0, 3), (1, 2), (2, 1),(3, 0):
 [ 4.  6.  0.  3.]

Elements greater than 0:
 [ 2.   4.   4.   6.   2.6  7.   8.   3.   4.   2. ]

基本操作

NumPy 提供了大量的內(nèi)置算術(shù)函數(shù)。

對單個(gè)數(shù)組的操作: 我們可以使用重載的算術(shù)運(yùn)算符對數(shù)組進(jìn)行元素操作以創(chuàng)建一個(gè)新數(shù)組。在 +=、-=、*= 運(yùn)算符的情況下,將修改現(xiàn)有數(shù)組。

# 演示單個(gè)數(shù)組的基本操作的 Python 程序
import numpy as np
 
a = np.array([1, 2, 5, 3])
 
# 每個(gè)元素加 1
print ("Adding 1 to every element:", a+1)
 
# 從每個(gè)元素中減去 3
print ("Subtracting 3 from each element:", a-3)
 
# 將每個(gè)元素乘以 10
print ("Multiplying each element by 10:", a*10)
 
# 平方每個(gè)元素
print ("Squaring each element:", a**2)
 
# 修改現(xiàn)有數(shù)組
a *= 2
print ("Doubled each element of original array:", a)
 
# 數(shù)組轉(zhuǎn)置
a = np.array([[1, 2, 3], [3, 4, 5], [9, 6, 0]])
 
print ("\nOriginal array:\n", a)
print ("Transpose of array:\n", a.T)

輸出 :

Adding 1 to every element: [2 3 6 4]
Subtracting 3 from each element: [-2 -1  2  0]
Multiplying each element by 10: [10 20 50 30]
Squaring each element: [ 1  4 25  9]
Doubled each element of original array: [ 2  4 10  6]

Original array:
 [[1 2 3]
 [3 4 5]
 [9 6 0]]
Transpose of array:
 [[1 3 9]
 [2 4 6]
 [3 5 0]]

一元運(yùn)算符:許多一元運(yùn)算作為 ndarray類的方法提供。這包括 sum、min、max 等。這些函數(shù)也可以通過設(shè)置軸參數(shù)來逐行或逐列應(yīng)用。

# 在 numpy 中演示一元運(yùn)算符的 Python 程序
import numpy as np
 
arr = np.array([[1, 5, 6],
                [4, 7, 2],
                [3, 1, 9]])
 
# 數(shù)組的最大元素
print ("Largest element is:", arr.max())
print ("Row-wise maximum elements:",
                    arr.max(axis = 1))
 
# 數(shù)組的最小元素
print ("Column-wise minimum elements:",
                        arr.min(axis = 0))
 
# 數(shù)組元素之和
print ("Sum of all array elements:",
                            arr.sum())
 
# 每行的累積總和
print ("Cumulative sum along each row:\n",
                        arr.cumsum(axis = 1))

輸出 :

Largest element is: 9
Row-wise maximum elements: [6 7 9]
Column-wise minimum elements: [1 1 2]
Sum of all array elements: 38
Cumulative sum along each row:
[[ 1  6 12]
 [ 4 11 13]
 [ 3  4 13]]

二元運(yùn)算符: 這些操作適用于數(shù)組元素并創(chuàng)建一個(gè)新數(shù)組。您可以使用所有基本的算術(shù)運(yùn)算符,如 +、-、/、等。如果是 +=、-=、  = 運(yùn)算符,則會修改現(xiàn)有數(shù)組。

# 在 Numpy 中演示二元運(yùn)算符的 Python 程序
import numpy as np
 
a = np.array([[1, 2],
            [3, 4]])
b = np.array([[4, 3],
            [2, 1]])
 
# 添加數(shù)組
print ("Array sum:\n", a + b)
 
# 乘法數(shù)組(元素乘法)
print ("Array multiplication:\n", a*b)
 
# 矩陣乘法
print ("Matrix multiplication:\n", a.dot(b))

輸出:

Array sum:
[[5 5]
 [5 5]]
Array multiplication:
[[4 6]
 [6 4]]
Matrix multiplication:
[[ 8  5]
 [20 13]]

通用函數(shù) (ufunc):  NumPy 提供熟悉的數(shù)學(xué)函數(shù),例如 sin、cos、exp 等。這些函數(shù)還對數(shù)組進(jìn)行元素操作,生成數(shù)組作為輸出。

注意: 我們上面使用重載運(yùn)算符所做的所有操作都可以使用 ufunc 完成,例如 np.add、np.subtract、np.multiply、np.divide、np.sum 等。

# 在 numpy 中演示通用函數(shù)的 Python 程序
import numpy as np
 
# 創(chuàng)建一個(gè)正弦值數(shù)組
a = np.array([0, np.pi/2, np.pi])
print ("Sine values of array elements:", np.sin(a))
 
# exponential values
a = np.array([0, 1, 2, 3])
print ("Exponent of array elements:", np.exp(a))
 
# square root of array values
print ("Square root of array elements:", np.sqrt(a))

輸出:

Sine values of array elements: [  0.00000000e+00   1.00000000e+00   1.22464680e-16]
Exponent of array elements: [  1.           2.71828183   7.3890561   20.08553692]
Square root of array elements: [ 0.          1.          1.41421356  1.73205081]

數(shù)據(jù)類型

每個(gè) ndarray 都有一個(gè)關(guān)聯(lián)的數(shù)據(jù)類型 (dtype) 對象。這個(gè)數(shù)據(jù)類型對象(dtype)告訴我們數(shù)組的布局。這意味著它為我們提供了以下信息:

  • 數(shù)據(jù)類型(整數(shù)、浮點(diǎn)數(shù)、Python 對象等)

  • 數(shù)據(jù)大?。ㄗ止?jié)數(shù))

  • 數(shù)據(jù)的字節(jié)順序(小端或大端)

  • 如果數(shù)據(jù)類型是子數(shù)組,它的形狀和數(shù)據(jù)類型是什么。

ndarray的值存儲在緩沖區(qū)中,可以將其視為連續(xù)的內(nèi)存字節(jié)塊。所以這些字節(jié)將如何被解釋由 dtype 對象給出。

每個(gè) Numpy 數(shù)組都是一個(gè)元素表(通常是數(shù)字),所有元素類型相同,由正整數(shù)元組索引。每個(gè) ndarray 都有一個(gè)關(guān)聯(lián)的數(shù)據(jù)類型 (dtype) 對象。

此數(shù)據(jù)類型對象 (dtype) 提供有關(guān)數(shù)組布局的信息。ndarray 的值存儲在緩沖區(qū)中,可以將其視為可以由 dtype 對象解釋的連續(xù)內(nèi)存字節(jié)塊。Numpy 提供了大量可用于構(gòu)造數(shù)組的數(shù)值數(shù)據(jù)類型。

在創(chuàng)建數(shù)組時(shí),Numpy 會嘗試猜測數(shù)據(jù)類型,但構(gòu)造數(shù)組的函數(shù)通常還包含一個(gè)可選參數(shù)來顯式指定數(shù)據(jù)類型。

# Python Program to create a data type object
import numpy as np
 
# np.int16 is converted into a data type object.
print(np.dtype(np.int16))

輸出:

int16

# Python Program to create a data type object 
# containing a 32 bit big-endian integer
import numpy as np
 
# i4 represents integer of size 4 byte
# > represents big-endian byte ordering and
# < represents little-endian encoding.
# dt is a dtype object
dt = np.dtype('>i4')
 
print("Byte order is:",dt.byteorder)
 
print("Size is:",dt.itemsize)
 
print("Data type is:",dt.name)

輸出:

Byte order is: >
Size is: 4
Name of data type is: int32

關(guān)于“Python NumPy數(shù)組的基本操作方法有哪些”這篇文章的內(nèi)容就介紹到這里,感謝各位的閱讀!相信大家對“Python NumPy數(shù)組的基本操作方法有哪些”知識都有一定的了解,大家如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI