當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R recipes formula.recipe 從準備好的食譜創建配方


如果需要模型公式,可以在配方上使用公式方法來顯示可以使用哪些預測變量和結果。

用法

# S3 method for recipe
formula(x, ...)

參數

x

已準備好的配方對象。

...

注意當前使用的。

一個公式。

例子


formula(recipe(Species + Sepal.Length ~ ., data = iris) %>% prep())
#> Species + Sepal.Length ~ Sepal.Width + Petal.Length + Petal.Width
#> <environment: 0x561375f9c1f0>

iris_rec <- recipe(Species ~ ., data = iris) %>%
  step_center(all_numeric()) %>%
  prep()
formula(iris_rec)
#> Species ~ Sepal.Length + Sepal.Width + Petal.Length + Petal.Width
#> <environment: 0x561376d6d5b0>
源代碼:R/formula.R

相關用法


注:本文由純淨天空篩選整理自Max Kuhn等大神的英文原創作品 Create a Formula from a Prepared Recipe。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。