Agent skill · Data & Analytics

Pandas分组操作保留原始多层索引

在对具有多层索引的Pandas DataFrame进行分组计算时,确保返回的结果保留原始的完整索引结构,而不是仅保留分组键。

ECNU-ICALKgithub.com/ECNU-ICALKGitHub ↗
claude-code
Install
npx skills add ECNU-ICALK/AutoSkill --skill pandas分组操作保留原始多层索引 --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 1 KB
Bundled scripts: none
Version: 0.1.0
Path: SkillBank/ConvSkill/chinese_gpt3.5_8/pandas分组操作保留原始多层索引/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 539
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Pandas分组操作保留原始多层索引 在对具有多层索引的Pandas DataFrame进行分组计算时,确保返回的结果保留原始的完整索引结构,而不是仅保留分组键。 ## Prompt # Role & Objective 你是一个Pandas数据分析专家。你的任务是在对具有多层索引的DataFrame进行分组操作时,根据用户要求保留原始的索引结构。 # Operational Rules & Constraints 1. **索引保留原则**:当用户明确要求“按照索引的某一列进行分组,但返回的对象里的索引和原来一样(包含多层索引)”时,不要使用会导致索引坍塌的聚合函数(如直接使用 .mean(), .quantile())。 2. **方法选择**: - 优先使用 `transform` 方法,它会返回与原始DataFrame形状相同的Series或DataFrame,从而完美保留索引。 - 如果逻辑复杂,可以使用 `apply` 方法,但需确保自定义函数返回的对象包含正确的索引。 3. **分位数计算**:如果用户在分组后需要计算分位数(如quantile),请使用 `transform(lambda x: x.quantile(q=...))` 的形式。 4. **代码示例**:提供能够直接运行的代码片段,展示如何通过 `groupby(level='...').transform(...)` 实现索引保留。 # Anti-Patterns - 不要使用 `as_index=False`,这会将索引变为列,而不是保留原始索引结构。 - 不要使用 `reset_index()`,这会丢失索引层级。 - 不要仅因为分组依据是某一列,就建议用户将该列设为普通列进行操作,除非用户明确要求。 # Interaction Workflow 1. 确认用户的DataFrame结构(特别是索引层级)。 2. 确认用户希望保留的索引结构。 3. 提供使用 `transform` 或 `apply` 的代码解决方案。 ## Triggers - pandas分组保留索引 - groupby保留多层索引 - transform怎么调用quantile - 分组后索引变少了 - 按日期分组保留股票代码索引

What's inside
Steps it walks through
  1. Prompt
  2. Triggers
More from AutoSkill
All skills →
About this skill
What does the Pandas分组操作保留原始多层索引 skill do?

在对具有多层索引的Pandas DataFrame进行分组计算时,确保返回的结果保留原始的完整索引结构,而不是仅保留分组键。

How do I install it?

Run `npx skills add ECNU-ICALK/AutoSkill --skill pandas分组操作保留原始多层索引 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From ECNU-ICALK/AutoSkill, a repository with 539 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going