gpt4 book ai didi

r - 如何用函数包装公式的 RHS 项

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

我可以构建一个公式,从公式中术语的字符版本开始,我想要做什么,但我在从公式对象开始时遇到了困难:

form1 <- Y ~ A + B 
form1[-c(1,2)][[1]]
#A + B

现在如何构建一个如下所示的公式对象:
 Y ~ poly(A, 2) + poly(B, 2) + poly(C, 2)

或者:
 Y ~ pspline(A, 4) + pspline(B, 4) + pspline(C, 4)

似乎它可能涉及沿 RHS 递归行走,但我没有取得进展。我只是想到我可能会使用
> attr( terms(form1), "term.labels")
[1] "A" "B"

然后使用 as.formula (character-expr) 方法,但我非常喜欢看到 lapply (RHS_form, somefunc) polyize 的版本(或者 polymer ?)函数。

最佳答案

如果借用我原来写的一些函数here ,你可以做这样的事情。首先,辅助函数...

extract_rhs_symbols <- function(x) {
as.list(attr(delete.response(terms(x)), "variables"))[-1]
}
symbols_to_formula <- function(x) {
as.call(list(quote(`~`), x))
}
sum_symbols <- function(...) {
Reduce(function(a,b) bquote(.(a)+.(b)), do.call(`c`, list(...), quote=T))
}
transform_terms <- function(x, f) {
symbols_to_formula(sum_symbols(sapply(extract_rhs_symbols(x), function(x) do.call("substitute",list(f, list(x=x))))))
}

然后你可以使用
update(form1, transform_terms(form1, quote(poly(x, 2))))
# Y ~ poly(A, 2) + poly(B, 2)

update(form1, transform_terms(form1, quote(pspline(x, 4))))
# Y ~ pspline(A, 4) + pspline(B, 4)

关于r - 如何用函数包装公式的 RHS 项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35829487/

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