8 lines
396 B
Plaintext
8 lines
396 B
Plaintext
---
|
|
description: Focuses on pandas-specific rules for data manipulation, including method chaining, data selection using loc/iloc, and groupby operations.
|
|
globs: **/*.py
|
|
---
|
|
- Use pandas for data manipulation and analysis.
|
|
- Prefer method chaining for data transformations when possible.
|
|
- Use loc and iloc for explicit data selection.
|
|
- Utilize groupby operations for efficient data aggregation. |