tests/testthat/_snaps/ns.md

check_name() is used

Code
  prep(rec, training = dat)
Condition
  Error in `step_ns()`:
  Caused by error in `bake()`:
  ! Name collision occurred. The following variable names already exist:
  * `mpg_ns_1`

bake method errors when needed non-standard role columns are missing

Code
  bake(with_ns, new_data = biomass_tr[, c(-3)])
Condition
  Error in `step_ns()`:
  ! The following required column is missing from `new_data`: carbon.

empty printing

Code
  rec
Message

  -- Recipe ----------------------------------------------------------------------

  -- Inputs 
  Number of variables by role
  outcome:    1
  predictor: 10

  -- Operations 
  * Natural splines on: <none>
Code
  rec
Message

  -- Recipe ----------------------------------------------------------------------

  -- Inputs 
  Number of variables by role
  outcome:    1
  predictor: 10

  -- Training information 
  Training data contained 32 data points and no incomplete rows.

  -- Operations 
  * Natural splines on: <none> | Trained

keep_original_cols - can prep recipes with it missing

Code
  rec <- prep(rec)
Condition
  Warning:
  `keep_original_cols` was added to `step_ns()` after this recipe was created.
  i Regenerate your recipe to avoid this warning.

printing

Code
  print(rec)
Message

  -- Recipe ----------------------------------------------------------------------

  -- Inputs 
  Number of variables by role
  outcome:    1
  predictor: 10

  -- Operations 
  * Natural splines on: disp and wt
Code
  prep(rec)
Message

  -- Recipe ----------------------------------------------------------------------

  -- Inputs 
  Number of variables by role
  outcome:    1
  predictor: 10

  -- Training information 
  Training data contained 32 data points and no incomplete rows.

  -- Operations 
  * Natural splines on: disp and wt | Trained


tidymodels/recipes documentation built on Jan. 25, 2025, 7:30 a.m.