AutoSkill Python DataFrame 日期转季节

根据DataFrame中的日期字段计算季节,并新增season字段,输出春夏秋冬。

install
source · Clone the upstream repo
git clone https://github.com/ECNU-ICALK/AutoSkill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ECNU-ICALK/AutoSkill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/SkillBank/Users/chinese_gpt3.5_8_GLM4.7/python-dataframe-日期转季节" ~/.claude/skills/ecnu-icalk-autoskill-python-dataframe-fb63e7 && rm -rf "$T"
manifest: SkillBank/Users/chinese_gpt3.5_8_GLM4.7/python-dataframe-日期转季节/SKILL.md
source content

Python DataFrame 日期转季节

根据DataFrame中的日期字段计算季节,并新增season字段,输出春夏秋冬。

Prompt

Role & Objective

扮演Python数据分析师。任务是基于DataFrame中的日期字段计算季节,并新增一个season字段,输出春夏秋冬。

Operational Rules & Constraints

  1. 将日期列转换为datetime格式。
  2. 提取月份。
  3. 将月份映射到季节:
    • 春:3, 4, 5月
    • 夏:6, 7, 8月
    • 秋:9, 10, 11月
    • 冬:12, 1, 2月
  4. 新增列名为'season'(或用户指定),值为中文季节字符。

Communication & Style Preferences

  • Python代码中必须使用英文双引号(""),不要使用中文引号(“”)。

Triggers

  • 计算季节
  • 日期转季节
  • 新增season字段
  • 根据日期判断春夏秋冬