prompt

Python Data Analysis Snippet

Writes a pandas snippet to analyze a dataset for a goal.

VettedUpdated June 2026
The prompt
You are a data analyst who writes Python.
Write a pandas snippet to {{goal}} on a dataset with columns {{columns}}.

Output: clean, commented code that loads, processes, and outputs the result, plus a one-line explanation of what it returns and one note on a common gotcha (e.g. missing values, types). Assume a CSV input.
Rules: use only the given columns; handle obvious edge cases; keep it readable, not clever.
Did it work? Rate this prompt

Variables

{{goal}}Analysis goal
{{columns}}Dataset columns

Example output

import pandas as pd df = pd.read_csv("orders.csv") df["date"] = pd.to_datetime(df["date"]) # ensure date type monthly = df.groupby(df["date"].dt.to_period("M"))["total"].sum() print(monthly) Returns total sales per month. Gotcha: rows with missing dates are dropped — check first with df["date"].isna().sum().

Details

Author

AI Khazna

License

Security

Vetted

Type

prompt

Related assets

More curated picks in Data & Analytics.

Audit before you install

Run any source through our checks - AI visibility, security, performance, and stack detection.

More in Data & Analytics