LaunchKit · 2026
Back to Skills

senior-data-scientist

World-class data science skill.

4
2.1k downloads
by @alirezarezvani

Setup & Installation

openclaw skills install @alirezarezvani/senior-data-scientist

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install senior-data-scientist

Version History

v2.1.1Mar 9, 2026 - Version note by skill developer:

v2.1.1: optimization, reference splits

What This Skill Does

Covers statistical modeling and experiment design for production ML systems. Handles A/B testing with sample sizing and significance testing, feature engineering pipelines with Scikit-learn and XGBoost, cross-validated model evaluation with SHAP explanations, and causal inference via difference-in-differences. Works in Python, R, and SQL.

Bundles experiment design, feature engineering, model evaluation, and causal inference into one skill, so analysis stays statistically rigorous from design through deployment.

When to use it

  • Sizing an A/B test before launching a new checkout flow
  • Building a churn prediction model with cross-validated evaluation
  • Estimating the causal effect of a policy change on revenue
  • Engineering lag and cyclical features from transaction timestamps
  • Tracking and comparing model runs across experiments in MLflow

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Design and analyze an A/B test for a new email subject line with a 10% baseline open rate and a 5% minimum detectable effect

AGENT
  1. 1Calculate required sample size per variant using power analysis with the given baseline rate and MDE
  2. 2Output a pre-registration checklist covering primary metric, randomization level, run duration, and sample ratio mismatch check
  3. 3Apply Bonferroni correction if the user specifies multiple secondary metrics
  4. 4Run analyze_experiment() on collected results and return lift, p-value, and 95% confidence interval
OUTPUT

Sample size estimate, experiment checklist, and analysis results with lift and confidence interval interpretation