当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R purrr array-coercion 强制数组列出


array_branch()array_tree() 通过将数组转换为列表,使数组能够与 purrr 的泛函一起使用。强制的详细信息由 margin 参数控制。 array_tree() 创建一个分层列表(树),其级别与 margin 中指定的维度一样多,而 array_branch() 则沿着所有提到的维度创建一个平面列表(通过类比,一个分支)。

用法

array_branch(array, margin = NULL)

array_tree(array, margin = NULL)

参数

array

强制转换为列表的数组。

margin

一个数字向量,指示要登记的索引的位置。如果 NULL ,则使用完整边距。如果是 numeric(0) ,则整个数组被包装在一个列表中。

细节

如果未指定边距,则默认使用所有尺寸。当 margin 是长度为零的数值向量时,整个数组将包装在列表中。

例子

# We create an array with 3 dimensions
x <- array(1:12, c(2, 2, 3))

# A full margin for such an array would be the vector 1:3. This is
# the default if you don't specify a margin

# Creating a branch along the full margin is equivalent to
# as.list(array) and produces a list of size length(x):
array_branch(x) |> str()
#> List of 12
#>  $ : int 1
#>  $ : int 2
#>  $ : int 3
#>  $ : int 4
#>  $ : int 5
#>  $ : int 6
#>  $ : int 7
#>  $ : int 8
#>  $ : int 9
#>  $ : int 10
#>  $ : int 11
#>  $ : int 12

# A branch along the first dimension yields a list of length 2
# with each element containing a 2x3 array:
array_branch(x, 1) |> str()
#> List of 2
#>  $ : int [1:2, 1:3] 1 3 5 7 9 11
#>  $ : int [1:2, 1:3] 2 4 6 8 10 12

# A branch along the first and third dimensions yields a list of
# length 2x3 whose elements contain a vector of length 2:
array_branch(x, c(1, 3)) |> str()
#> List of 6
#>  $ : int [1:2] 1 3
#>  $ : int [1:2] 2 4
#>  $ : int [1:2] 5 7
#>  $ : int [1:2] 6 8
#>  $ : int [1:2] 9 11
#>  $ : int [1:2] 10 12

# Creating a tree from the full margin creates a list of lists of
# lists:
array_tree(x) |> str()
#> List of 2
#>  $ :List of 2
#>   ..$ :List of 3
#>   .. ..$ : int 1
#>   .. ..$ : int 5
#>   .. ..$ : int 9
#>   ..$ :List of 3
#>   .. ..$ : int 3
#>   .. ..$ : int 7
#>   .. ..$ : int 11
#>  $ :List of 2
#>   ..$ :List of 3
#>   .. ..$ : int 2
#>   .. ..$ : int 6
#>   .. ..$ : int 10
#>   ..$ :List of 3
#>   .. ..$ : int 4
#>   .. ..$ : int 8
#>   .. ..$ : int 12

# The ordering and the depth of the tree are controlled by the
# margin argument:
array_tree(x, c(3, 1)) |> str()
#> List of 3
#>  $ :List of 2
#>   ..$ : int [1:2] 1 3
#>   ..$ : int [1:2] 2 4
#>  $ :List of 2
#>   ..$ : int [1:2] 5 7
#>   ..$ : int [1:2] 6 8
#>  $ :List of 2
#>   ..$ : int [1:2] 9 11
#>   ..$ : int [1:2] 10 12
源代码:R/arrays.R

相关用法


注:本文由纯净天空筛选整理自Hadley Wickham等大神的英文原创作品 Coerce array to list。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。