Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计异常

data-science-feature-engineering数据科学特征工程

Agent Skill

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。它适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。

总安装

238

周安装

10

GitHub Stars

公开资料未说明

下载量

83
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:data-science-feature-engineering(数据科学特征工程)
来源仓库:https://github.com/legout/data-platform-agent-skills
仓库路径:skills/data-science-feature-engineering
安装命令:
npx skills add https://github.com/legout/data-platform-agent-skills --skill data-science-feature-engineering
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/legout/data-platform-agent-skills --skill data-science-feature-engineering

简介

专注于特征创建、转换与选择,提升机器学习模型性能表现。

  • 适用于数值缩放、类别编码、交互特征构造及维度约简等场景。
  • 提供标准化预处理流水线设计,支持多种数据类型灵活处理。
  • 集成特征重要性评估与选择策略,优化模型输入质量。data-science-feature-engineering 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 安装依赖 GitHub 仓库,适用于 Python 数据科学生态系统集成。

SKILL.md

Feature Engineering

Use this skill for creating, transforming, and selecting features that improve model performance.

When to use this skill

  • After EDA — convert insights into features
  • Model underperforming — need better representations
  • Handling different data types (numerical, categorical, text, datetime)
  • Reducing dimensionality or selecting most predictive features

Feature engineering workflow

  1. Numerical features

- Scaling (StandardScaler, MinMaxScaler, RobustScaler) - Transformations (log, sqrt, Box-Cox for skewness) - Binning (equal-width, quantile, custom) - Interaction features

  1. Categorical features

- One-hot encoding (low cardinality) - Target/Mean encoding (high cardinality) - Ordinal encoding (ordered categories) - Frequency/rare category handling

  1. Datetime features

- Extract components (year, month, day, hour, dayofweek) - Cyclical encoding (sin/cos for time cycles) - Time since/duration features

  1. Text features

- TF-IDF, CountVectorizer - Embeddings (sentence-transformers) - Basic text stats (length, word count)

  1. Feature selection

- Filter methods (correlation, mutual information) - Wrapper methods (recursive feature elimination) - Embedded methods (L1 regularization, tree importance)

Quick tool selection

TaskDefault choiceNotes
sklearn pipelinessklearn.pipeline + ColumnTransformerReproducible, cross-validation safe
Categorical encodingcategory_encodersBeyond sklearn's limited options
Feature selectionsklearn.feature_selectionMutual info, RFE, SelectFromModel
Text embeddingssentence-transformersPre-trained semantic embeddings
Auto feature engineeringFeature-engineComprehensive transformations

Core implementation rules

1) Use pipelines to prevent leakage

from sklearn.compose import ColumnTransformer
from sklearn.preprocessing import StandardScaler, OneHotEncoder
from sklearn.pipeline import Pipeline

preprocessor = ColumnTransformer([
    ('num', StandardScaler(), numerical_features),
    ('cat', OneHotEncoder(handle_unknown='ignore'), categorical_features)
])

pipeline = Pipeline([
    ('prep', preprocessor),
    ('model', RandomForestClassifier())
])

2) Fit on train only, transform on all

# Correct: fit_transform on train, transform on test
X_train_processed = preprocessor.fit_transform(X_train)
X_test_processed = preprocessor.transform(X_test)  # Only transform!

3) Handle unknown categories

OneHotEncoder(handle_unknown='ignore')  # Unknown → all zeros
# OR
OneHotEncoder(handle_unknown='infrequent_if_exist')  # Group rare/unknown

4) Document feature importance

Track which features were created, why, and their expected impact.

Common anti-patterns

  • ❌ Fitting preprocessors on full dataset (leakage!)
  • ❌ One-hot encoding high-cardinality features (dimension explosion)
  • ❌ Ignoring feature scaling for distance-based models
  • ❌ Creating features without domain reasoning
  • ❌ Not validating feature distributions match between train/test

Progressive disclosure

  • ../references/categorical-encoding.md — Comprehensive encoding guide
  • ../references/datetime-features.md — Time-based feature patterns
  • ../references/text-features.md — NLP feature engineering
  • ../references/feature-selection.md — Selection strategies and implementations

Related skills

  • @data-science-eda — Understand data before engineering
  • @data-science-model-evaluation — Validate feature impact
  • @data-engineering-core — Data processing fundamentals

References

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.46%
按下载量换算29

Claude

28.77%
按下载量换算24

Cursor

18.71%
按下载量换算16

Gemini CLI

8.8%
按下载量换算7

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills