本文简要介绍 python 语言中 numpy.delete
的用法。
用法:
numpy.delete(arr, obj, axis=None)
返回一个新数组,其中删除了沿轴的子数组。对于一维数组,这将返回那些未返回的条目arr[对象].
- arr: array_like
输入数组。
- obj: 切片、int 或整数数组
指示要沿指定轴删除的子数组的索引。
- axis: 整数,可选
沿其删除由 obj 定义的子数组的轴。如果axis为None,则将obj应用于展平数组。
- out: ndarray
一份arr与指定的元素对象删除。注意
delete
不会发生在原地。如果轴是无,out是一个扁平数组。
参数:
返回:
注意:
通常最好使用布尔掩码。例如:
>>> arr = np.arange(12) + 1 >>> mask = np.ones(len(arr), dtype=bool) >>> mask[[0,2,4]] = False >>> result = arr[mask,...]
等效于 np.delete(arr, [0,2,4], axis=0),但允许进一步使用掩码。
例子:
>>> arr = np.array([[1,2,3,4], [5,6,7,8], [9,10,11,12]]) >>> arr array([[ 1, 2, 3, 4], [ 5, 6, 7, 8], [ 9, 10, 11, 12]]) >>> np.delete(arr, 1, 0) array([[ 1, 2, 3, 4], [ 9, 10, 11, 12]])
>>> np.delete(arr, np.s_[::2], 1) array([[ 2, 4], [ 6, 8], [10, 12]]) >>> np.delete(arr, [1,3,5], None) array([ 1, 3, 5, 7, 8, 9, 10, 11, 12])
相关用法
- Python numpy dec.setastest用法及代码示例
- Python numpy dec.slow用法及代码示例
- Python numpy degrees用法及代码示例
- Python numpy deprecate用法及代码示例
- Python numpy deg2rad用法及代码示例
- Python numpy dtype.isbuiltin用法及代码示例
- Python numpy dtype.shape用法及代码示例
- Python numpy dtype.ndim用法及代码示例
- Python numpy dtype.alignment用法及代码示例
- Python numpy diagonal用法及代码示例
- Python numpy dtype用法及代码示例
- Python numpy dtype.names用法及代码示例
- Python numpy dtype.__class_getitem__用法及代码示例
- Python numpy divmod用法及代码示例
- Python numpy dtype.flags用法及代码示例
- Python numpy diagflat用法及代码示例
- Python numpy dtype.fields用法及代码示例
- Python numpy dtype.subdtype用法及代码示例
- Python numpy dtype.descr用法及代码示例
- Python numpy datetime_as_string用法及代码示例
- Python numpy divide用法及代码示例
- Python numpy dtype.kind用法及代码示例
- Python numpy dtype.metadata用法及代码示例
- Python numpy diag用法及代码示例
- Python numpy dsplit用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.delete。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。