スキル一覧に戻る
htuzel

analyzing-spreadsheets

by htuzel

0🍴 0📅 2025年10月18日
GitHubで見るManusで実行

SKILL.md


Analyzing Spreadsheets

When to use

  • User shares an Excel workbook or asks about spreadsheet analysis
  • Tasks include summarizing metrics, spotting anomalies, or drafting charts
  • Data lives in tabular form (CSV or XLSX)

Workflow

  1. Inspect workbook structure
    import pandas as pd
    xl = pd.ExcelFile("input.xlsx")
    xl.sheet_names
    
  2. Load relevant sheets
    df = pd.read_excel("input.xlsx", sheet_name="Sheet1")
    df.head()
    
  3. Clean and validate
    • Drop empty columns/rows
    • Normalize date formats with pd.to_datetime
    • Verify numeric columns with df.describe()
  4. Analyze and summarize
  5. Recommend visuals
    • Suggest chart types (line for time series, bar for categorical comparisons, heatmap for correlations)
    • Provide short rationale per recommendation

Output expectations

  • Concise summary (1–3 paragraphs) covering key findings
  • Bullet list of insights with supporting numbers
  • Optional chart suggestions with column mappings

Validation checklist

  • Loaded the correct sheet(s) and reported row/column counts
  • Highlighted missing or unusual data
  • Referenced actual values from the workbook
  • Included next-step recommendations (e.g., further slicing, charting)

Additional resources

  • reference/pandas-recipes.md – common aggregation patterns
  • python -m pip install pandas openpyxl – install requirements if missing (Claude Code already includes pandas)

スコア

総合スコア

55/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です