python--之np.delete
1.numpy.delete(arr,obj,axis=None)
arr:輸入向量
obj:表明哪一個子向量應該被移除。可以為整數或一個int型的向量
axis:表明刪除哪個軸的子向量,若預設,則返回一個被拉平的向量
a = np.array(np.arange(12).reshape(3,4))
a
Out[301]:
array([[ 0, 1, 2, 3],
[ 4, 5, 6, 7],
[ 8, 9, 10, 11]])
np.delete(a,1,0)
Out[302]:
array([[ 0, 1, 2, 3],
[ 8, 9, 10, 11]])
np.delete(a,1,1)
Out[303]:
array([[ 0, 2, 3],
[ 4, 6, 7],
[ 8, 10, 11]])
np.delete(a,[0,1],1)
Out[304]:
array([[ 2, 3],
[ 6, 7],
[10, 11]])
np.delete(a,np.s_[::2],1)
Out[306]:
array([[ 1, 3],
[ 5, 7],
[ 9, 11]])
轉載:https://blog.csdn.net/github_36669230/article/details/78157618?utm_medium=referral
註釋:np.delete不能刪除元素,只能刪除向量,
相關文章
- Python--之正規表示式一基礎Python
- python--字串Python字串
- python-- 使用Python
- 初遇python--之新手學資料分析(1)Python
- python--列表listPython
- python--字典dictPython
- python--安裝PILPython
- python--元組tuplePython
- Python--關於dictPython
- Python--關於setPython
- python--檔案操作指南Python
- python--事件event簡單用法Python事件
- python--多工執行緒Python執行緒
- Python--關於 join 和 splitPython
- Python--關於連線符+Python
- python--各種推導式Python
- python--表示式(運算表示式)Python
- python--介面自動化鑑權例項Python
- python--顏色的RGB轉BGR(opencv)PythonOpenCV
- 【python--爬蟲】彼岸圖網高清桌布爬蟲Python爬蟲
- python--進位制轉換和資料交換Python
- 入坑Python--輸出和互動式開發Python
- python--字串格式化用於批量讀取圖片Python字串格式化
- 【python--爬蟲】千圖網高清背景圖片爬蟲Python爬蟲
- python--設計模式--4--建立型--工廠方法模式Python設計模式
- Python--物件導向程式設計--時鐘例項開發Python物件程式設計
- python--建立一個與已有DataFrame行數相同的資料框的方式Python
- 每日一道演算法題--leetcode 169--求眾數--python--兩種方法演算法LeetCodePython
- oracle之 RAC Interconnect之HAIPOracleAI
- 漢字之美,拼音之韻
- Python基礎之(三)之字典Python
- 設計模式之禪之代理模式設計模式
- 程式碼之美---遞迴之美遞迴
- 科學之抽象管理之提升抽象
- JavaScript之thisJavaScript
- 若之
- 深入Spring之IOC之載入BeanDefinitionSpringBean
- PHP之string之ord()函式使用PHP函式