by liangdabiao
Let novices do data analysis with one click, and those who engage in Internet, e-commerce, and all kinds of things will actually use Internet data analysis. For example, the Internet will care about new acquisitions, retention, activation, recommendations, conversions, A/B testing, user analysis, and many other useful data analyses. The command is "/do-more".
# Add to your Claude Code skills
git clone https://github.com/liangdabiao/claude-data-analysis-ultra-mainA modern, intelligent data analysis platform built with Claude Code's sub-agents, slash-commands, skills, and hooks. Transform your data analysis workflow with AI-powered assistance and specialized analysis tools.
简单的一句话: 2个命令, /do-all 常规数据分析 ; /do-more 互联网数据分析 。 而分析数据是放在 /data_storage 。就这么简单,用起来吧!
注意: 下载项目下来,分析数据是放在 /data_storage [删去原来的demo数据] ,你需要先删除 complete_analysis 和 do_more_analysis 这两个文件夹。我这里放着是给你参考最终的分析结果,作为例子。
Place your dataset in the data_storage/ directory:
cp your_data.csv ./data_storage/
Use intuitive slash commands to analyze your data:
# Complete interactive workflow with human feedback checkpoints
/do-all
# ⭐ NEW: Automatic multi-skill analysis
/do-more
# Basic exploratory analysis
/analyze user_behavior_sample.csv exploratory
# Create visualizations
/visualize user_behavior_sample.csv all
# Generate analysis code
/generate python data-cleaning
# Create comprehensive report
/report user_behavior_sample.csv complete markdown
/do-more: Automatic Multi-Skill AnalysisBest for: Quick, automated analysis without configuration
/do-more # No parameters needed!
What it does:
data_storage/ directoryNo comments yet. Be the first to share your thoughts!
Output: do_more_analysis/integrated_results/Comprehensive_Analysis_Report.html
/do-all: Complete Interactive Analysis WorkflowBest for: Thorough analysis with human oversight and feedback
/do-all
What it does:
data_storage/ (no parameters needed!)Workflow Stages:
Output Directory:
complete_analysis/
├── data_quality_report/ # Stage 1 output
├── exploratory_analysis/ # Stage 2 output
├── hypothesis_reports/ # Stage 3 output
├── visualizations/ # Stage 4 output
├── generated_code/ # Stage 5 output
├── final_report/ # Stage 6 output
└── workf...