HomeFrameworksData Science & Analytics Engineering
EnterpriseNewv1.4L5 Semantic FrameworkUpdated July 2026

Data Science & Analytics Engineering

Build end-to-end data pipelines, ML models, and analytics dashboards with AI-assisted code generation

4.9(142 reviews)2.0K installs50 prompts6 stagesAI / ML
GPT-4ClaudeGoDaddy Airo

Data Science & Analytics Engineering is the definitive AI framework for data professionals who need to build production-grade data pipelines, ML models, and analytics systems. It covers the full data stack: Python pipelines, exploratory analysis, ML training and evaluation, feature engineering, dbt transformations, dashboard specifications, and data quality testing. Every prompt produces clean, documented, production-ready Python and SQL code.

Full Access Unlocked

All 50 prompts · All 6 modules

30-day money-back guarantee
Secure checkout via Stripe
Lifetime updates (currently v1.4)
Instant delivery after purchase

"The ML evaluation report prompt produces publication-quality model assessments. The SHAP integration..."

Senior Data Scientist · FinTech Company

Need expert implementation?

Hire an Orchestrator

Connect with a certified Prompt.Doctor Orchestrator to deploy this framework for you.

How to use this framework

No coding required. You will use ChatGPT or Claude as your AI tool. Follow these steps in order — do not skip ahead.

1

Purchase & download the framework

Click the buy button on this page. After checkout, go to the and hit Download .zip. Unzip it — you'll get a .md file (the full framework) and a .pdf (easy to read reference). Keep both open.

2

Open your project — new or existing

This dashboard is designed to integrate into any existing project or be built as a standalone app. If you already have a site in Airo (or Cursor, Bolt, etc.), open that project. If you're starting fresh, create a new project. The Orchestrator Prompt handles both cases — it scans what's already there and adds only what's missing.

3

Paste the Orchestrator Prompt into your builder's chat

Open the on this page. Copy the Orchestrator Prompt and paste it into your AI builder's chat. It will scaffold the full admin system — secure login, email marketing module, booking engine, and CMS — on top of your existing codebase. This takes 2–5 minutes.

4

Add your API keys as secrets

Critical — Novice Users

In your builder, go to Settings → Secrets and add the keys your app needs. For this framework: STRIPE_SECRET_KEY (for booking payments — get it from your Stripe dashboard), ANTHROPIC_API_KEY (for AI-assisted content — get it from console.anthropic.com), and DATABASE_URL (your MySQL connection string). No key is needed for the admin login, CMS, or email modules — those run on your existing infrastructure.

Don't have a MySQL server?

You can purchase a shared hosting plan with cPanel and MySQL at host.esgwon.dev. Once your account is set up, follow the step-by-step guide to create your database and connect it to your AI website builder.

How to set up cPanel MySQL & connect to your AI website →

Need help with Stripe?

Get your STRIPE_SECRET_KEY and STRIPE_PUBLISHABLE_KEY from your Stripe dashboard. The guide covers test keys, webhook setup, and going live.

Stripe API keys — setup & testing guide →

Need help with Anthropic?

Get your ANTHROPIC_API_KEY from console.anthropic.com. The guide covers model selection, cost management, and troubleshooting.

Anthropic API key — setup & model guide →

Prompting Airo after setup — always name the file

When asking Airo to add tables, columns, or features to the admin dashboard, always include src/server/lib/admin-db.ts in your prompt. Without it, Airo may target the wrong database. Example: "Add a bookings table in the admin database (src/server/lib/admin-db.ts) — do not touch any other database connection in this project."

See safe prompting examples →
5

Run the framework prompts inside your live app

Your app is now running in the builder's preview panel. Open the on this page, copy each prompt one at a time, and paste it into your builder's chat. Replace every [BRACKET] with your real data before sending. Work through the stages in order — each stage output feeds the next.

6

Test end-to-end, then publish or hand off to your client

Walk through the admin as a real user: log in, create a booking, send a test email campaign, update a CMS image, and run the Safe-to-Publish gate. Once everything passes, click Publish in your builder. Because this is a white-label dashboard, your client accesses it at /admin on their own domain — no Prompt.Doctor branding, no third-party login required.

Who is this for?

Data scientists building ML models and pipelines
Analytics engineers building dbt transformation layers
Data engineers building ingestion and processing pipelines
Business intelligence developers building dashboards

Everything you get

50 production-ready prompts across 6 data engineering areas
Pipeline system: Python data ingestion, transformation, and loading with Pandas/Polars
EDA system: structured exploratory analysis notebook with statistical summaries and visualizations
ML system: model training pipeline, hyperparameter tuning, cross-validation, and evaluation
Feature engineering: feature creation, selection, encoding, and scaling patterns
dbt system: staging, intermediate, and mart model templates with tests and documentation
Dashboard system: KPI definition framework, chart specification, and dashboard layout design

What's Inside

6 modules · 50 prompts · 6 workflow stages

Modules(6 total)

Data Pipeline System

Python ETL pipeline framework: data ingestion (API, database, file), transformation with Pandas/Polars, data validation, error handling, logging, and loading to target. Includes Airflow DAG template.

10 prompts

Exploratory Data Analysis System

Structured EDA notebook: data loading and inspection, missing value analysis, distribution analysis, correlation analysis, outlier detection, and visualization suite (matplotlib/seaborn/plotly).

8 prompts

ML Training & Evaluation System

ML pipeline: preprocessing, train/test split, model training (scikit-learn), hyperparameter tuning (Optuna), cross-validation, evaluation metrics, and model comparison report.

10 prompts

Feature Engineering System

Feature creation patterns (date features, text features, aggregations), categorical encoding (target encoding, one-hot, ordinal), numerical scaling, feature selection (SHAP, mutual information), and feature store design.

8 prompts

dbt Transformation System

dbt project structure, staging model templates (source cleaning, type casting), intermediate model templates (business logic), mart model templates (aggregations), schema.yml with tests and documentation, and dbt macros.

10 prompts

Analytics Dashboard System

KPI definition framework (metric, formula, owner, refresh cadence), chart type selection guide, dashboard layout specification, Metabase question SQL templates, and data quality monitoring dashboard.

4 prompts
Sample Prompts(50 total)
Python ETL Pipeline·GPT-4

Write a production-ready Python ETL pipeline for [USE CASE, e.g., "ingesting daily sales data from a REST API and loading to PostgreSQL"]. Requirements: 1) Extract: API pagination handling, retry logic with exponential backoff, rate limit handling, 2) Transform: Pandas/Polars transformations, data validation (Pydantic models), type casting, 3) Load: upsert to PostgreSQL using SQLAlchemy, 4) Error handling: try/except with specific error types, failed record logging, 5) Logging: structured logging with timestamps and record counts, 6) Configuration: environment variables for credentials, 7) Idempotency: safe to re-run without duplicates. Full Python with type hints and docstrings.

dbt Staging Model·GPT-4

Write a dbt staging model for [SOURCE TABLE, e.g., "raw.stripe_charges"]. Requirements: 1) Source definition in schema.yml with freshness test, 2) Staging model SQL: select only needed columns, rename to snake_case, cast to correct types, parse timestamps to UTC, handle nulls with coalesce, 3) Schema.yml for the staging model: column descriptions, not_null tests, unique tests, accepted_values tests, 4) Staging model should be materialized as view, 5) Add a surrogate key using dbt_utils.generate_surrogate_key, 6) Add loaded_at metadata column. Include the full SQL and schema.yml.

ML Model Evaluation Report·GPT-4

Write a Python function that generates a comprehensive ML model evaluation report for a [TASK TYPE: binary classification/multiclass/regression] model. Include: 1) For classification: confusion matrix, ROC-AUC curve, precision-recall curve, classification report (precision, recall, F1 per class), calibration curve, 2) For regression: residual plot, actual vs. predicted plot, error distribution, MAE/RMSE/R² metrics, 3) Feature importance: SHAP summary plot, top 20 features, 4) Model comparison table if multiple models provided, 5) All plots saved to /reports/figures/, 6) Summary statistics printed to console. Python with matplotlib, seaborn, shap, sklearn. Full function with docstring.

Workflow Architecture(6 stages)

system

20 prompts

Stage 1

workflow

20 prompts

Stage 2

templates

10 prompts

Stage 3

Everything included

Python data pipeline framework (Pandas/Polars)
Exploratory data analysis (EDA) notebook system
ML model training & evaluation framework
Feature engineering system
dbt transformation model templates
Analytics dashboard specification system
Data quality & testing framework
Full Access Unlocked

What builders say

"The ML evaluation report prompt produces publication-quality model assessments. The SHAP integration is exactly what our model governance team requires."

SD

Senior Data Scientist

FinTech Company

"The dbt staging model template is the most complete I've seen. It handles every edge case — type casting, null handling, surrogate keys, freshness tests — all in one prompt."

AE

Analytics Engineer

E-Commerce Platform

You have full access

All 50 prompts across 6 modules are unlocked for your account.

$169$249

Lifetime access