代码之家  ›  专栏  ›  技术社区  ›  rcorty

在函数F内,使用F的参数作为update()的参数

  •  1
  • rcorty  · 技术社区  · 7 年前

    my_lm ,示例如下:

    library(rlang)
    
    base_formula <- new_formula(lhs = quote(potato), 
                                rhs = quote(Sepal.Width + Petal.Length))
    
    my_lm <- function(response) {
        lm(formula = update(old = base_formula, new = quote(response) ~ . ),
           data = iris)
    }
    
    my_lm(response = Sepal.Length)
    

    但我遇到了以下错误:

    Error in model.frame.default(formula = update(old = base_formula, new = enquo(response) ~  : 
      object is not a matrix 
    

    我怀疑我滥用了 rlang ,但我似乎不知道引用、取消引用和公式化的什么组合可以解决这个问题。

    lm(formula = Sepal.Length ~ Sepal.Width + Petal.Length,
    

    数据=iris)

    EDIT2:我还应该澄清一下,我真的对使用 通过以下方式解决此问题: update 不仅仅是使用 paste , gsub formula

    1 回复  |  直到 7 年前
        1
  •  2
  •   MrFlick    7 年前

    这是一个有效的方法

    base_formula <- new_formula(lhs = quote(potato), 
                                rhs = quote(Sepal.Width + Petal.Length))
    
    my_lm <- function(response) {
      newf <- new_formula(get_expr(enquo(response)), quote(.))
      lm(formula = update(old = base_formula, new = newf),
         data = iris)
    }
    
    my_lm(response = Sepal.Length)
    

    这看起来有点混乱,因为quosure也基本上是公式,你试图用它们生成一个正则公式。然后 new_formula 似乎不允许 !! 膨胀

    my_lm <- function(response) {
      newf <- base_formula
      f_lhs(newf) <- get_expr(enquo(response))
      lm(formula = get_expr(newf),
         data = iris)
    }