gpt4 book ai didi

r - 制作一个等长向量的列表

转载 作者:行者123 更新时间:2023-12-04 09:45:40 24 4
gpt4 key购买 nike

在 SO ( LINK ) 上的一个问题中,一张海报提出了一个问题,我给出了一个有效的答案,但有一部分让我感到困扰,创建了一个 list从一个向量作为索引列表传递。所以 les 说我有这个向量:

n <- 1:10
#> n
# [1] 1 2 3 4 5 6 7 8 9 10

假设我想把它分解成一个向量列表,每个向量的长度为 3。实现这一点的最佳(最短代码和或最快)方法是什么?我们想扔掉第 10 项,因为它在 10/3 ( 10 %% 3 ) 中有 1 ( length(n) - 10 %% 3 ) 的余数。

这是想要的结果
list(1:3, 4:6, 7:9)

这将为我们提供不能组成三人组的索引:
(length(n) + 1 - 10 %% 3):length(n)

编辑

这是 Wojciech Sobala 在 other thread 上发布的一个有趣的方法。这是链接到(我要求他们在这里回答,如果他们这样做,我将删除此编辑)
n <- 100
l <- 3
n2 <- n - (n %% l)
split(1:n2, rep(1:n2, each=l, length=n2))

作为一个函数:
indices <- function(n, l){
if(n > l) stop("n needs to be smaller than or equal to l")
n2 <- n - (n %% l)
cat("numbers", (n + 1 - n %% l):n, "did not make an index of length", l)
split(1:n2, rep(1:n2, each=l, length=n2))
}

最佳答案

不确定这是否有效?

x = function(x, n){ 
if(n > x) stop("n needs to be smaller than or equal to x")
output = matrix(1:(x-x%%n), ncol=(x-x%%n)/n, byrow=FALSE)
output
}

编辑:将输出更改为列表
x = function(x, n){ 
if(n > x) stop("n needs to be smaller than or equal to x")
output = matrix(1:(x-x%%n), ncol=(x-x%%n)/n, byrow=TRUE)
split(output, 1:nrow(output))
}

Example:
x(10, 3)
$`1`
[1] 1 2 3

$`2`
[1] 4 5 6

$`3`
[1] 7 8 9

关于r - 制作一个等长向量的列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10661937/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com