2.8 KiB
2.8 KiB
CSV Data Summarizer - Resources
🌟 Connect & Learn More
Sample Data
The sample.csv file contains example sales data with the following columns:
- date: Transaction date
- product: Product name (Widget A, B, or C)
- quantity: Number of items sold
- revenue: Total revenue from the transaction
- customer_id: Unique customer identifier
- region: Geographic region (North, South, East, West)
Usage Examples
Basic Summary
Analyze sample.csv
With Custom CSV
Here's my sales_data.csv file. Can you summarize it?
Focus on Specific Insights
What are the revenue trends in this dataset?
Testing the Skill
You can test the skill locally before uploading to Claude:
# Install dependencies
pip install -r ../requirements.txt
# Run the analysis
python ../analyze.py sample.csv
Expected Output
The analysis will provide:
- Dataset dimensions - Row and column counts
- Column information - Names and data types
- Summary statistics - Mean, median, std dev, min/max for numeric columns
- Data quality - Missing value detection and counts
- Visualizations - Time-series plots when date columns are present
Customization
To adapt this skill for your specific use case:
- Modify
analyze.pyto include domain-specific calculations - Add custom visualization types in the plotting section
- Include validation rules specific to your data
- Add more sample datasets to test different scenarios