向量化这个 for 循环:将函数应用于子索引?

发布于 2024-10-22 07:47:36 字数 273 浏览 1 评论 0原文

有什么方法可以向量化以下内容吗?

# x: some vector
# index: some vector of indeces
n <- length(index)
y <- rep(NA, n)
for (i in 1:n) {
  y[i] = myfunction(x[1:index[i])
}

基本上,我想将 myfunction 应用于向量 x 的各个子集。似乎 apply 函数不是为了处理这个问题而构建的。

Is there some way to vectorize the following?

# x: some vector
# index: some vector of indeces
n <- length(index)
y <- rep(NA, n)
for (i in 1:n) {
  y[i] = myfunction(x[1:index[i])
}

Basically, I'd like to apply myfunction to various subsets of the vector x. It doesn't seem like the apply functions are built to handle this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

极度宠爱 2024-10-29 07:47:36

我不确定我是否明白你在做什么,但如果你想从 x 向量中获取第一个 index-es 元素的数量,而不是组成一些示例数据:

x <- runif(10)
index <- c(2,5,4,8)

并尝试:

> lapply(index, function(index) return(x[1:index]))
[[1]]
[1] 0.3869757 0.4060021

[[2]]
[1] 0.3869757 0.4060021 0.4843015 0.2064443 0.4614179

[[3]]
[1] 0.3869757 0.4060021 0.4843015 0.2064443

[[4]]
[1] 0.3869757 0.4060021 0.4843015 0.2064443 0.4614179 0.9278044 0.7351291
[8] 0.9792204

I am not sure if I understand what you are up to, but if you want to get from the x vector the first index-es number of elements, than make up some sample data:

x <- runif(10)
index <- c(2,5,4,8)

And try:

> lapply(index, function(index) return(x[1:index]))
[[1]]
[1] 0.3869757 0.4060021

[[2]]
[1] 0.3869757 0.4060021 0.4843015 0.2064443 0.4614179

[[3]]
[1] 0.3869757 0.4060021 0.4843015 0.2064443

[[4]]
[1] 0.3869757 0.4060021 0.4843015 0.2064443 0.4614179 0.9278044 0.7351291
[8] 0.9792204
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文