惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园_首页
Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
阮一峰的网络日志
阮一峰的网络日志
Martin Fowler
Martin Fowler
B
Blog
The GitHub Blog
The GitHub Blog
T
Tailwind CSS Blog
Stack Overflow Blog
Stack Overflow Blog
L
LangChain Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
D
DataBreaches.Net
月光博客
月光博客
人人都是产品经理
人人都是产品经理
IT之家
IT之家
GbyAI
GbyAI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
WordPress大学
WordPress大学
博客园 - Franky
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The Cloudflare Blog
C
Check Point Blog
罗磊的独立博客

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How I Use AI as My "Junior Analyst" 5 Prompt Templates Th...
Faizan Reza · 2026-06-22 · via DEV Community

Faizan Reza

Most data analysts I know are using AI wrong.

They type things like "analyze this data" or "write me a SQL query" — and get back generic, surface-level responses. That's like telling a junior analyst "do analysis" with no brief, no context, no expectations.

The difference between a useless AI response and one that saves you 3 hours? The prompt.

I've spent months engineering prompts specifically for data workflows. Here are 5 that consistently deliver production-ready output — and the principles behind why they work.


1. The Universal Data Cleaner

Data cleaning is 60-80% of an analyst's job, but most prompts skip edge cases entirely. This one doesn't:

I have a dataset with mixed data quality issues  missing values, 
inconsistent formats, duplicates, and outliers. Here's a sample:

[PASTE 5-10 ROWS]

Give me a complete cleaning pipeline in Python (pandas) that:
- Detects and reports all data quality issues
- Handles missing values intelligently (not just dropna)
- Standardizes date/text/number formats
- Flags outliers with justification
- Outputs a clean dataset + a cleaning report

Why this works: Instead of "clean my data" (which gets you df.dropna() at best), you're telling the AI exactly what quality dimensions to check and what kind of output you expect. "Not just dropna" is the key phrase — it forces the model to think about imputation strategies.


2. The Query Optimizer

Writing SQL is easy. Writing SQL that runs fast on 10M+ rows is an art. This prompt turns AI into your DBA:

This SQL query is running too slow against a large table. Optimize it:

[PASTE YOUR SLOW QUERY]

Explain:
- What's causing the slowness (scan type, joins, subqueries)
- 3-5 specific optimizations in order of impact
- Which indexes I should create
- The rewritten optimized query
- Estimated improvement for each change

Why this works: You're not just asking for a rewritten query — you're demanding a diagnosis. The structured output format forces the model to think in terms of query execution plans, not just syntax. "Estimated improvement" makes it quantify its claims.


3. The Root Cause Analysis Framework

Something broke. A KPI tanked. Your boss wants answers by EOD. This prompt is your investigation partner:

[KPI] dropped by [X%] starting on [DATE]. Here's the available data:
[DESCRIBE DATA SOURCES]

Walk me through a structured root cause analysis:
- What to check first, second, third (prioritized)
- Segmentation cuts that could reveal the driver
- Common pitfalls in this type of investigation
- How to present findings to stakeholders
- Python/SQL code templates for each diagnostic step

Why this works: The prioritization is the secret sauce. Most analysts go down rabbit holes. This prompt forces the AI to give you a triage framework, not just "look at the data."


4. The Executive Dashboard Designer

Dashboards that impress engineers are useless. Dashboards that impress executives get you promoted. Same data, different framing:

Design an executive dashboard for monitoring [BUSINESS AREA]. 
Key stakeholders care about:
[LIST 5-7 KEY METRICS]

Provide:
- Dashboard layout wireframe (top-level, detail, drill-down views)
- Which charts for which metrics (and why)
- Color scheme and visual hierarchy
- What should be real-time vs daily vs weekly refresh
- Alert thresholds for each metric
- Plotly/Dash or Streamlit starter code

Why this works: Most dashboard prompts produce a list of charts. This one produces a design system — visual hierarchy, refresh cadence, alert thresholds. That's what separates a monitoring tool from a decision-making tool.


5. The Stakeholder Communication Translator

Your analysis is solid. Your presentation is… technical. This prompt bridges the gap:

I need to present [TECHNICAL FINDING] to [EXECUTIVE/MARKETING/ENGINEERING].

Translate my technical findings into their language:
- The 30-second version (elevator pitch)
- The 3-minute version (key insights + recommendation)
- What they'll care about (tailored to their priorities)
- What they'll push back on (and how to handle it)
- One visual that makes the point better than words

Why this works: Different audiences have different "so what"s. This prompt forces the AI to reframe the same finding for different mental models. The "what they'll push back on" section is pure gold — it prepares you for the actual conversation, not just the presentation.


The Formula Behind These Prompts

All of these follow the same pattern. I call it the Genie Formula:

[CONTEXT] I am a [ROLE] working on [PROBLEM].
[INPUT] Here is my data/code/situation: [DETAILS]
[TASK] I need you to: [SPECIFIC REQUEST]
[FORMAT] Please provide the output as: [STRUCTURE]
[CONSTRAINTS] Important constraints: [TECH STACK, PRIVACY, FORMAT]
[QUALITY] Double-check for: [EDGE CASES, PERFORMANCE, ACCURACY]

The more structure you give, the better the output. AI isn't a magic wand — it's a junior analyst who needs clear instructions.


Want All 55?

I've compiled my full prompt library — 55 prompts across 8 categories (data cleaning, SQL, Python, visualization, business intelligence, automation, career acceleration) — into a PDF.

Each prompt follows the Genie Formula and is engineered for production use, not demo purposes.

Get the full pack → $9.99 on Gumroad

What's inside:

  • 📊 10 Data Cleaning & Preparation prompts
  • 🗄️ 8 SQL Generation & Optimization prompts
  • 📈 7 Statistical Analysis prompts (A/B tests, segmentation, forecasting)
  • 📉 7 Visualization & Reporting prompts
  • 🐍 7 Python Code Generation prompts
  • 💼 7 Business Intelligence prompts
  • ⚡ 5 Automation prompts
  • 🚀 4 Career Accelerator prompts

What's Your Go-To Prompt?

I'm curious — what's the one prompt structure you've found that consistently produces great results for data work? Drop it in the comments.

And if you've never structured your prompts beyond "analyze this" — try the Genie Formula above. The difference will surprise you.