AI Agent Hub
Back to skills
Multidimensional Table Fast Analysis Assistant icon

Multidimensional Table Fast Analysis Assistant

Data Analysis Updated 2026.08.30

Paste the following prompt into your AI chat to install this skill:

Please install @user_828fa760/multidimensional-table-assistant according to https://skillhub.cn/install/skillhub.md.

About this skill

The Problem

When business data lives in Excel or CSV files, the bottleneck is often repetitive work: removing duplicates, normalizing dates, selecting a summary column, building pivots, and taking screenshots. The Multidimensional Table Fast Analysis Assistant condenses that workflow into a Python pipeline for turning raw spreadsheets into shareable analysis artifacts.

How It Works

The skill centers on scripts/data_pipeline.py and accepts .xlsx, .xls, and .csv inputs, with automatic encoding detection. It reads the first populated sheet, performs column type detection, and identifies date, categorical, numeric, text, and ID columns. It then removes duplicates, standardizes dates, fills nulls, and produces group summaries, monthly trends, and cross-analysis.

Typical outputs include:
- _summary.xlsx: multi-sheet summary workbook with native formulas and bar, line, and pie charts
- _dashboard.html: interactive HTML dashboard with KPI cards, charts, and data tables
- _analysis.json: structured results for downstream development

Useful parameters include --group-by, --value-col, --fill-null, and --no-dedup. If the user has a clear analytic spec, dimensions and summary columns should be set explicitly; if they only need a quick read of the data, the default pipeline is sufficient.

Boundaries

The skill works best on medium-sized, reasonably clean tabular data—especially sales, operations, inventory, or cost tables with date, category, and amount fields. It is not a full BI modeling tool and does not define complex metrics. If the request evolves into “add profit margin” or “compare custom regions,” it is better to extend the output with pandas / openpyxl. Also, the HTML dashboard loads Chart.js from a CDN, so network access is required in offline or sandboxed environments.

Use Cases

  • Turn sales CSVs into monthly regional amount summaries with charts and an HTML dashboard.
  • Clean duplicate orders and mixed dates, then aggregate product sales and export analysis JSON.
  • Add a profit-margin column with pandas after the base run, then re-export Excel and dashboard.
  • Analyze cost data by department and cost type, then present pie charts and KPI cards.

Best For

  • Operations analysts who need to turn sales, inventory, or cost spreadsheets into leadership dashboards.
  • Data specialists who must reconcile duplicates, dates, and summary columns across CSV or Excel files.
  • BI engineers who extend base summaries with pandas and export charted workbooks.
  • Team leads who need charted weekly reports for business reviews without manual plotting.