在R函数中是否有查找数组索引的功能?

lymnna71  于 2022-12-06  发布在  其他
关注(0)|答案(2)|浏览(110)

这将是特定问题的主体。
我们在数组中使用函数

dsekswqp

dsekswqp1#

您可以通过函数which()或match()查找元素的索引
使用which()的示例:

# vector created
    v <- c(0, 1, 2, 3, 4,
        5, 6, 7, 8, 9)
    
    # which function is used
    # to get the index
    which(v == 5) # output is: 6

使用match()的示例:

# vector created
v <- c(0, 1, 2, 3, 4,
    5, 6, 7, 8, 9)

# match function is
# used to get the index
match( 5 , v )  # output is: 6

您可以查看here更多信息

lo8azlld

lo8azlld2#

若为矩阵或数组,请设定参数arr.ind = TRUE

which(myarray == 5, arr.ind = TRUE)

相关问题