array_branch()
和 array_tree()
通过将数组转换为列表,使数组能够与 purrr 的泛函一起使用。强制的详细信息由 margin
参数控制。 array_tree()
创建一个分层列表(树),其级别与 margin
中指定的维度一样多,而 array_branch()
则沿着所有提到的维度创建一个平面列表(通过类比,一个分支)。
例子
# 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 purrr accumulate 累积向量缩减的中间结果
- R purrr as_vector 将列表强制转换为向量
- R purrr auto_browse 包装一个函数,以便在出错时自动 browser()
- R purrr as_mapper 将对象转换为映射器函数
- R purrr attr_getter 创建属性 getter 函数
- R purrr imap 将函数应用于向量的每个元素及其索引
- R purrr list_transpose 转置列表
- R purrr map_if 有条件地将函数应用于向量的每个元素
- R purrr map2 映射两个输入
- R purrr pluck 安全地获取或设置嵌套数据结构深处的元素
- R purrr insistently 将函数转换为等待,然后在错误后重试
- R purrr map_depth 在给定深度映射/修改元素
- R purrr list_simplify 将列表简化为原子或 S3 向量
- R purrr rerun 多次重新运行表达式
- R purrr quietly 包装一个函数来捕获副作用
- R purrr list_flatten 压平列表
- R purrr pmap 同时映射多个输入(“并行”)
- R purrr possibly 包装函数以返回值而不是错误
- R purrr head_while 查找全部满足谓词的头/尾。
- R purrr rbernoulli 从伯努利分布生成随机样本
- R purrr rate-helpers 创建延迟率设置
- R purrr keep_at 根据元素的名称/位置保留/丢弃元素
- R purrr keep 根据元素的值保留/丢弃元素
- R purrr transpose 转置列表。
- R purrr flatten 将列表的列表展平为简单的向量
注:本文由纯净天空筛选整理自Hadley Wickham等大神的英文原创作品 Coerce array to list。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。