senior-data-scientist

Design experiments, engineer features, and evaluate statistical models with Python scripts.

2|Updated Jan 26, 2026
One-click install
npx skills add https://github.com/Nzettodess/Awesome-Agent-Skills --skill senior-data-scientist-nzettodess
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: senior-data-scientist
Source: https://github.com/Nzettodess/Awesome-Agent-Skills/tree/main/Skills/Data%20Analytic/Data%20Modeling/senior-data-scientist/senior-data-scientist
Command: npx skills add https://github.com/Nzettodess/Awesome-Agent-Skills --skill senior-data-scientist-nzettodess

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve? Data science work often lacks structure: experiments are designed ad hoc, feature engineering is inconsistent, and model evaluation is incomplete. This Skill provides a disciplined senior-level workflow for statistical modeling, experimentation, causal inference, and production ML practices. ## Core Features & Use Cases - Experiment Design: Run the experiment designer script to structure A/B tests and causal analyses with validated configurations. - Feature Engineering Pipelines: Apply repeatable feature engineering patterns documented in the references and executed via the pipeline script. - Model Evaluation: Use the evaluation suite script to assess models against defined performance targets and monitoring practices. - Use Case: A data scientist preparing an A/B test for a product launch can use this Skill to design the experiment, engineer the required features, and evaluate candidate models before deployment. ## Quick Start Ask the agent to design an A/B test for your dataset and evaluate the resulting model using the senior data scientist workflow.

Frequently Asked Questions about senior-data-scientist

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

FAQPage Schema
How do I design an A/B test with Python?▼

Run the experiment_designer.py script with an input data path and output path to structure the experiment. The references/experiment_design_frameworks.md guide covers step-by-step processes, architecture patterns, and troubleshooting for experiment setup.

How to build a feature engineering pipeline for machine learning?▼

Use the feature_engineering_pipeline.py script with --input and --output arguments to process datasets through a repeatable pipeline. The feature_engineering_patterns.md reference documents implementation examples, configuration practices, and deployment strategies.

What tools does this skill use for model evaluation?▼

The model_evaluation_suite.py script runs evaluation with a config file and produces structured JSON results. The skill documentation references Scikit-learn, XGBoost, MLflow, and Weights & Biases as the supporting evaluation and monitoring stack.

Does the experiment designer script require external Python packages?▼

No, the scripts use only Python standard library modules such as argparse, json, logging, and datetime. They run with a standard Python 3 installation without installing additional dependencies.

What are the limitations of the provided data science scripts?▼

The scripts provide scaffolding with validation and logging, but the core _execute methods contain placeholder logic returning success flags. You must implement the actual statistical computation, model training, and evaluation logic for your specific use case.