gpt4 book ai didi

r - 使用以倒数第二个值作为 .init 参数的累加函数

转载 作者:行者123 更新时间:2023-12-04 11:48:13 25 4
gpt4 key购买 nike

我最近遇到了一个有趣的问题,即使用其倒数第二个值作为 .init 来计算向量值。参数加上一个额外的向量的当前值。这是示例数据集:

set.seed(13)
dt <- data.frame(id = rep(letters[1:2], each = 5), time = rep(1:5, 2), ret = rnorm(10)/100)
dt$ind <- if_else(dt$time == 1, 120, if_else(dt$time == 2, 125, as.numeric(NA)))

id time ret ind
1 a 1 0.005543269 120
2 a 2 -0.002802719 125
3 a 3 0.017751634 NA
4 a 4 0.001873201 NA
5 a 5 0.011425261 NA
6 b 1 0.004155261 120
7 b 2 0.012295066 125
8 b 3 0.002366797 NA
9 b 4 -0.003653828 NA
10 b 5 0.011051443 NA
我想计算的是:

ind_{t} = ind_{t-2}*(1+ret_{t})


我尝试了以下代码。自 .init在这里没用我尝试了无效原始 .init并创建了一个虚拟 .init但不幸的是,它不会将新创建的值(从第三行向下)拖到计算中:
dt %>%
group_by(id) %>%
mutate(ind = c(120, accumulate(3:n(), .init = 125,
~ .x * 1/.x * ind[.y - 2] * (1 + ret[.y]))))

# A tibble: 10 x 4
# Groups: id [2]
id time ret ind
<chr> <int> <dbl> <dbl>
1 a 1 0.00554 120
2 a 2 -0.00280 125
3 a 3 0.0178 122.
4 a 4 0.00187 125.
5 a 5 0.0114 NA
6 b 1 0.00416 120
7 b 2 0.0123 125
8 b 3 0.00237 120.
9 b 4 -0.00365 125.
10 b 5 0.0111 NA
我想知道是否可以对此代码进行调整并使其完全正常工作。
非常感谢您的帮助

最佳答案

使用由 ind 的当前值和 ind 的先验值组成的状态向量。这样,先验状态包含 ind 的第二个先验值。我们将其编码为复数值,实部等于 ind,虚部等于 ind 的先验值。最后,我们开始真正的部分。

library(dplyr)
library(purrr)

dt %>%
group_by(id) %>%
mutate(result = c(ind[1],
Re(accumulate(.x = tail(ret, -2),
.f = ~ Im(.x) * (1 + .y) + Re(.x) * 1i,
.init = ind[2] + ind[1] * 1i)))) %>%
ungroup
给予:
# A tibble: 10 x 5
id time ret ind result
<chr> <int> <dbl> <dbl> <dbl>
1 a 1 0.00554 120 120
2 a 2 -0.00280 125 125
3 a 3 0.0178 NA 122.
4 a 4 0.00187 NA 125.
5 a 5 0.0114 NA 124.
6 b 1 0.00416 120 120
7 b 2 0.0123 125 125
8 b 3 0.00237 NA 120.
9 b 4 -0.00365 NA 125.
10 b 5 0.0111 NA 122.
变化
这种变化消除了复数,并使用 2 个元素的向量代替每个复数,其中第一个数字对应于先前解中的实部,每对的第二个数字对应于虚部。这可以扩展到我们需要每个状态超过 2 个数字并且依赖关系涉及所有最后 N 个值的情况,但是对于这里的问题,额外的代码行的缺点是从对列表中提取结果比在先前的解决方案中使用 Re 更复杂的数字。
dt %>%
group_by(id) %>%
mutate(result = c(ind[1],
accumulate(.x = tail(ret, -2),
.f = ~ c(.x[2] * (1 + .y), .x[1]),
.init = ind[2:1])),
result = map_dbl(result, first)) %>%
ungroup
查看
我们检查上述结果是否正确。或者,这可以用作直接的解决方案。
calc <- function(ind, ret) {
for(i in seq(3, length(ret))) ind[i] <- ind[i-2] * (1 + ret[i])
ind
}

dt %>%
group_by(id) %>%
mutate(result = calc(ind, ret)) %>%
ungroup
给予:
# A tibble: 10 x 5
id time ret ind result
<chr> <int> <dbl> <dbl> <dbl>
1 a 1 0.00554 120 120
2 a 2 -0.00280 125 125
3 a 3 0.0178 NA 122.
4 a 4 0.00187 NA 125.
5 a 5 0.0114 NA 124.
6 b 1 0.00416 120 120
7 b 2 0.0123 125 125
8 b 3 0.00237 NA 120.
9 b 4 -0.00365 NA 125.
10 b 5 0.0111 NA 122.

关于r - 使用以倒数第二个值作为 .init 参数的累加函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68563542/

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