pandas

pandas is a cursor rule for Cursor from sanjeed5/awesome-cursor-rules-mdc. It costs 2,603 tokens per session, scanned A, original, CC0-1.0.

A set of coding guidelines for pandas, a Python library for working with tables of data. It focuses on readable data transformations and avoiding slow operations.

In plain words
What is it for?
Use it when filtering, grouping, transforming, or preparing tabular data in Python.
Why use it?
It helps reduce performance problems and makes data-processing code easier to understand and maintain.

Cursor rule for Cursor

Written for Cursor: a Cursor rule (.mdc).

Good fit Use it when filtering, grouping, transforming, or preparing tabular data in Python.

Compare 6 cursor rules from other repositories ↓
Install with agentmods
npx agentmods add rules/sanjeed5/awesome-cursor-rules-mdc/pandas
About the project

awesome-cursor-rules-mdc is a generator that creates Cursor MDC rule files from structured library information, using semantic search and language models to gather and organize guidance. Developers use it to produce reusable rules for libraries in Cursor, and the catalogue includes 200 of those rules.

sanjeed5/awesome-cursor-rules-mdc · 3,571 stars · on GitHub

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/sanjeed5/awesome-cursor-rules-mdc

Made for: Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for pandas

README.md
[![agentmods](https://agentmods.dev/badge/rules/sanjeed5/awesome-cursor-rules-mdc/pandas.svg)](https://agentmods.dev/rules/sanjeed5/awesome-cursor-rules-mdc/pandas)
Your own site
<a href="https://agentmods.dev/rules/sanjeed5/awesome-cursor-rules-mdc/pandas"><img src="https://agentmods.dev/badge/rules/sanjeed5/awesome-cursor-rules-mdc/pandas.svg" alt="Measured on agentmods" height="20"></a>
Per session 2,603 This file is loaded in full into every session.
When invoked 2,603 The same file — it is already loaded in full.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.02603 $0.02603
Opus 5 $0.01301 $0.01301
Sonnet 5 $0.00521 $0.00521
Haiku 4.5 $0.00260 $0.00260

Measured 4d ago against content hash 69ba43e0ed51, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

pandas scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

rules-mdc/pandas.mdc · 312 lines

How it starts

The opening of the file, as written. The whole thing — 312 lines — stays where its author put it; the contents beside it link to each section on GitHub.

pandas Best Practices

Pandas is the backbone of data analysis in Python. Adhere to these guidelines to write efficient, readable, and scalable code that integrates seamlessly into modern AI/ML pipelines.

1. Code Organization & Structure

1.1 Standard Imports

Always import pandas with its conventional alias for consistency.

❌ BAD

import pandas
from pandas import DataFrame

✅ GOOD

import pandas as pd
import numpy as np # For numerical operations

1.2 Method Chaining for Readability

Chain operations to create clear, sequential data transformations. Use .pipe() for custom functions or when intermediate steps improve clarity.

❌ BAD

df_filtered = df[df['value'] > 10]
df_grouped = df_filtered.groupby('category')
df_result = df_grouped['metric'].mean().reset_index()

✅ GOOD

df_result = (
    df[df['value'] > 10]
    .groupby('category')['metric']
    .mean()
    .reset_index()
    .rename(columns={'metric': 'avg_metric'}) # Add a descriptive rename
)

2. Common Patterns & Anti-patterns

2.1 Avoid Python Loops – Embrace Vectorization

Iterating over DataFrames row-by-row (.iterrows(), .apply(axis=1)) is a major performance bottleneck. Pandas operations are optimized C-level functions.

❌ BAD (Slow for large DataFrames)

# Calculating a new column based on existing ones
for index, row in df.iterrows():
    df.loc[index, 'new_col'] = row['col_a'] + row['col_b']

# Complex conditional logic with .apply(axis=1)
def calculate_status(row):
    if row['score'] > 90 and row['grade'] == 'A':
        return 'Excellent'
    return 'Good'
df['status'] = df.apply(calculate_status, axis=1)

✅ GOOD (Vectorized and performant)

# Calculating a new column
df['new_col'] = df['col_a'] + df['col_b']

# Complex conditional logic using np.select or boolean indexing
conditions = [
    (df['score'] > 90) & (df['grade'] == 'A'),
    (df['score'] > 80) & (df['grade'] == 'B')
]
choices = ['Excellent', 'Very Good']
df['status'] = np.select(conditions, choices, default='Good')

Read the full file on GitHub · 312 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 312 lines · 2,603 tokens per session scan A 69ba43e0ed51

Subscribe to this mod's changes

pandas is a cursor rule published in the GitHub repository sanjeed5/awesome-cursor-rules-mdc (3,571 stars, last pushed 3mo ago), licensed CC0-1.0. It adds 2,603 tokens to every session, about $0.0130 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.