Recipes Feature Engineering Patterns

Automate pattern-based feature engineering for tabular data in R.

9|1|Updated Jan 10, 2026
One-click install
npx skills add https://github.com/choxos/BiostatAgent --skill recipes-feature-engineering-patterns
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Recipes Feature Engineering Patterns
Source: https://github.com/choxos/BiostatAgent/tree/main/plugins/r-tidy-modeling/skills/recipes-patterns
Command: npx skills add https://github.com/choxos/BiostatAgent --skill recipes-feature-engineering-patterns

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Automatically standardizes and accelerates feature engineering workflows in R by providing ready-to-use recipes steps for numeric, categorical, and text data while preventing information leakage and enabling reproducible pipelines.

Core Features & Use Cases

  • Provides a library of recipe steps for normalization, imputation, encoding, transformation, and feature selection.
  • Enforces best-practice step ordering to improve robustness and auditability of preprocessing in machine learning workflows.
  • Use case: data scientists can compose reliable preprocessing pipelines for tabular data in R, streamlining model development and deployment across projects.

Quick Start

Create a preprocessing recipe from the provided patterns and apply it to new data to produce ready-to-model features.

Frequently Asked Questions about Recipes Feature Engineering Patterns

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I prevent information leakage when building preprocessing pipelines for machine learning in R?

Preventing information leakage in preprocessing pipelines requires applying feature engineering steps like imputation and normalization only to training data. This approach uses recipe step organization to ensure transformations are learned from train data and applied to test workflows reproducibly.

How do I standardize feature engineering steps for categorical and numeric predictors in tidymodels?

Standardizing feature engineering for categorical and numeric predictors uses pattern-driven recipe steps like step_normalize, step_impute, and step_dummy. This enforces best-practice step ordering for impute, transform, encode, and normalize operations to improve robustness and auditability.

Can I use recipes to preprocess text data for machine learning workflows in R?

Yes, preprocessing text data for machine learning workflows in R is supported through step_tokenize. This integrates text predictors alongside numeric and categorical data into a unified preprocessing recipe pipeline producing ready-to-model features.

What is the best way to organize reproducible data preprocessing pipelines for tabular data?

The best way to organize reproducible data preprocessing pipelines is using pattern-driven recipe steps. This standardizes step ordering for imputation, transformation, encoding, and normalization while ensuring transformations are consistently applied across train and test workflows.

Does tidymodels support dimensionality reduction like PCA during feature engineering?

Yes, tidymodels supports dimensionality reduction during feature engineering using step_pca. This step integrates into the preprocessing recipe pipeline alongside normalization and encoding steps to produce ready-to-model features for tabular data.

Why should I use recipes for preprocessing instead of manual data cleaning in R?

Using recipes for preprocessing instead of manual data cleaning in R ensures reproducibility and prevents information leakage. Pattern-driven recipe steps enforce best-practice step ordering, streamlining model development and deployment across projects with auditable preprocessing pipelines.