I have stored pre-trained recipes with recipes version <= 1.0.2 (when step_range() had no clipping = TRUE argument).
These stored recipes can no longer be baked because the old data structure contains no information on clipping, causing
Error in if (object$clipping) {: argument is of length zero
I can manually fix these old recipes by setting recipe$steps[[...]]$clipping <- TRUE, but it would be nice if there was backward compatibility out of the box.
I have stored pre-trained recipes with recipes version <= 1.0.2 (when
step_range()had noclipping = TRUEargument).These stored recipes can no longer be baked because the old data structure contains no information on
clipping, causingI can manually fix these old recipes by setting
recipe$steps[[...]]$clipping <- TRUE, but it would be nice if there was backward compatibility out of the box.