gpt4 book ai didi

r - 使用 native 管道将预测与变异结合使用

转载 作者:行者123 更新时间:2023-12-05 04:32:20 25 4
gpt4 key购买 nike

我想预测 dplyr 链中当前 df 的新列。尝试过:

library(tidyverse)

mod <- lm(price ~ x, data = diamonds)
newDF <- data.frame(x = rnorm(10, mean = mean(diamonds$x)))

newDF <- newDF |>
mutate(prediction = predict(mod, .$x)) # object '.' not found

newDF <- newDF |>
mutate(\(.) prediction = predict(mod, .$x)) # `..1` must be a vector, not a function.

如何使用 native 管道在我的 dply 链中引用字段 x

最佳答案

像这样使用dplyr::cur_data怎么样?

newDF <- newDF |> 
mutate(prediction = predict(mod, cur_data()))

关于r - 使用 native 管道将预测与变异结合使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71681073/

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