np.where()[0] 和 np.where()[1]的具体使用

作者:ysh1026 时间:2023-04-21 20:21:29 

本文主要介绍了np.where()[0] 和 np.where()[1]的具体使用,以及np.where()的具体用法,废话不多说,具体如下:


import numpy as np

a = np.arange(12).reshape(3,4)
print('a:', a)
print('np.where(a > 5):', np.where(a > 5))
print('a[np.where(a > 5)]:', a[np.where(a > 5)])
print('np.where(a > 5)[0]:', np.where(a > 5)[0])
print('np.where(a > 5)[1]:', np.where(a > 5)[1])
print(a[np.where(a > 5)[0], np.where(a > 5)[1]])

a: [[ 0 1 2 3]
[ 4 5 6 7]
[ 8 9 10 11]]
np.where(a > 5): (array([1, 1, 2, 2, 2, 2]), array([2, 3, 0, 1, 2, 3]))
a[np.where(a > 5)]: [ 6 7 8 9 10 11]
np.where(a > 5)[0]: [1 1 2 2 2 2]
np.where(a > 5)[1]: [2 3 0 1 2 3]
[ 6 7 8 9 10 11]

np.where()[0] 表示行索引,np.where()[1]表示列索引

numpy.where() 有两种用法:

1. np.where(condition, x, y)

满足条件(condition),输出x,不满足输出y。

如果是一维数组,相当于[xv if c else yv for (c,xv,yv) in zip(condition,x,y)]


>>> aa = np.arange(10)
>>> np.where(aa,1,-1)
array([-1, 1, 1, 1, 1, 1, 1, 1, 1, 1]) # 0为False,所以第一个输出-1
>>> np.where(aa > 5,1,-1)
array([-1, -1, -1, -1, -1, -1, 1, 1, 1, 1])

>>> np.where([[True,False], [True,True]],  # 官网上的例子
 [[1,2], [3,4]],
      [[9,8], [7,6]])
array([[1, 8],
 [3, 4]])

上面这个例子的条件为[[True,False], [True,False]],分别对应最后输出结果的四个值。第一个值从[1,9]中选,因为条件为True,所以是选1。第二个值从[2,8]中选,因为条件为False,所以选8,后面以此类推。类似的问题可以再看个例子:


>>> a = 10
>>> np.where([[a > 5,a < 5], [a == 10,a == 7]],
      [["chosen","not chosen"], ["chosen","not chosen"]],
      [["not chosen","chosen"], ["not chosen","chosen"]])

array([['chosen', 'chosen'],
   ['chosen', 'chosen']], dtype='<U10')

2. np.where(condition)

只有条件 (condition),没有x和y,则输出满足条件 (即非0) 元素的坐标 (等价于numpy.nonzero)。这里的坐标以tuple的形式给出,通常原数组有多少维,输出的tuple中就包含几个数组,分别对应符合条件元素的各维坐标。


>>> a = np.array([2,4,6,8,10])
>>> np.where(a > 5)  # 返回索引
(array([2, 3, 4]),)  
>>> a[np.where(a > 5)]   # 等价于 a[a>5]
array([ 6, 8, 10])

>>> np.where([[0, 1], [1, 0]])
(array([0, 1]), array([1, 0]))

上面这个例子条件中[[0,1],[1,0]]的真值为两个1,各自的第一维坐标为[0,1],第二维坐标为[1,0] 。

下面看个复杂点的例子:


>>> a = np.arange(27).reshape(3,3,3)
>>> a
array([[[ 0, 1, 2],
   [ 3, 4, 5],
   [ 6, 7, 8]],

[[ 9, 10, 11],
   [12, 13, 14],
   [15, 16, 17]],

[[18, 19, 20],
   [21, 22, 23],
   [24, 25, 26]]])

>>> np.where(a > 5)
(array([0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2]),
array([2, 2, 2, 0, 0, 0, 1, 1, 1, 2, 2, 2, 0, 0, 0, 1, 1, 1, 2, 2, 2]),
array([0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2, 0, 1, 2]))
# 符合条件的元素为
 [ 6, 7, 8]],

[[ 9, 10, 11],
   [12, 13, 14],
   [15, 16, 17]],

[[18, 19, 20],
   [21, 22, 23],
   [24, 25, 26]]]

所以np.where会输出每个元素的对应的坐标,因为原数组有三维,所以tuple中有三个数组。

需要注意的一点是,输入的不能直接是list,需要转为array或者为array才行。比如range(10)和np.arange(10)后者返回的是数组,使用np.where才能达到效果。

来源:https://blog.csdn.net/ysh1026/article/details/109559981

标签:np.where(),用法
0
投稿

猜你喜欢

  • python PyQt5 爬虫实现代码

    2022-10-19 20:24:42
  • Python time时间格式化和设置时区实现代码详解

    2023-05-17 00:09:17
  • Python 操作SQLite数据库的示例

    2024-01-28 00:23:59
  • SQL Server 2016的数据库范围内的配置详解

    2024-01-21 23:25:28
  • 教你轻松了解MySQL数据库中的结果字符串

    2009-02-23 17:29:00
  • CentOS7 LNMP+phpmyadmin环境搭建 第三篇phpmyadmin安装

    2023-10-17 03:23:18
  • python ImageDraw类实现几何图形的绘制与文字的绘制

    2023-10-14 10:58:13
  • Python实战之OpenCV实现猫脸检测

    2021-02-07 16:56:24
  • 一文详细聊聊vue3的defineProps、defineEmits和defineExpose

    2024-04-27 16:02:10
  • Python图片存储和访问的三种方式详解

    2021-01-27 08:18:22
  • pytorch 网络参数 weight bias 初始化详解

    2023-08-12 07:43:57
  • 更改SQL Server 2005数据库中tempdb位置的方法

    2024-01-25 17:46:35
  • 使用TensorFlow实现简单线性回归模型

    2022-11-30 19:51:48
  • Django中更新多个对象数据与删除对象的方法

    2021-08-13 13:31:46
  • IDEA配置GIT的详细教程

    2022-09-25 09:18:51
  • Python requests模块cookie实例解析

    2023-11-18 15:44:56
  • MySQL之where使用详解

    2024-01-16 11:11:08
  • 原生js实现tab选项卡切换

    2024-04-19 10:43:14
  • MySQL 8.0新特性 — 管理端口的使用简介

    2024-01-28 21:53:46
  • Go语言的IO库那么多纠结该如何选择

    2023-10-08 07:16:46
  • asp之家 网络编程 m.aspxhome.com