원클릭으로
feature-engineering
Procedural knowledge for transforming raw data into high-value features for machine learning models.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Procedural knowledge for transforming raw data into high-value features for machine learning models.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Procedural knowledge for generating and maintaining code documentation, API specs, and architecture diagrams.
Procedural knowledge for orchestrating multi-agent systems and Agent-to-Agent (A2A) handoffs.
Procedural knowledge for designing autonomous AI agents with tools, memory, and reasoning loops.
Procedural knowledge for implementing the Model Context Protocol (MCP) to expose local tools to LLMs.
Procedural knowledge for ensuring frontend interfaces comply with WCAG standards.
Procedural knowledge for designing and configuring continuous integration and deployment pipelines.
| name | feature-engineering |
| description | Procedural knowledge for transforming raw data into high-value features for machine learning models. |
Procedural knowledge for transforming raw data into high-value features for machine learning models.
Enable the Data Scientist role to systematically clean, transform, and construct predictive features from raw data, ensuring maximum model performance while preventing data leakage.
Step 1: Handle Missing Values
- Determine the mechanism (Missing Completely At Random, Missing At Random, Not Missing At Random).
- Impute appropriately (mean, median, mode, predictive imputation) or drop.
- Create binary indicator columns for missingness if it carries signal.
Step 2: Outlier Treatment
- Identify outliers (Z-score, IQR).
- Cap/floor outliers or transform them (e.g., log transformation) to reduce their influence.
Step 1: Categorical Encoding
- Nominal data: One-Hot Encoding, Target Encoding.
- Ordinal data: Ordinal Encoding.
Step 2: Numerical Transformation
- Scaling/Standardization (MinMax, StandardScaler) for distance-based models or neural networks.
- Binning continuous variables into categories if relationships are highly non-linear.
Step 3: Domain-Specific Creation
- Extract date/time features (day of week, is_holiday).
- Create interaction terms (Feature A * Feature B).
- Aggregate historical data (e.g., "count of purchases in last 30 days").
"Apply the feature-engineering skill from .ace/skills/feature-engineering/SKILL.md
to the raw customer behavior dataset."