An end-to-end data analytics project analyzing Kickstarter crowdfunding data to understand project success patterns, funding behavior, and backer trends.
This project demonstrates data modeling, SQL analytics, and dashboarding using Excel, Power BI, Tableau, and MySQL.
- Convert epoch-based timestamps into natural date formats
- Design a star schema data model for analytics
- Build a reusable calendar (date) dimension
- Standardize multi-currency values into USD
- Perform business-focused SQL analysis
- Create interactive dashboards across multiple BI tools
The dataset includes the following components:
- Projects (fact table)
- Categories
- Creators
- Locations
- Calendar (derived)
Raw data was provided in Excel format and transformed for analytical use.
A star schema was implemented with the following structure:
projects
dim_categorydim_creatordim_locationdim_date
This design improves query performance, simplifies analytics, and supports BI tools.
- Epoch timestamps were converted to natural dates
- Excel used for validation
- MySQL used for analytics and dimensional modeling
- Derived from project creation dates
- Supports year, month, quarter, and weekday analysis
- All monetary values converted to USD
- Static exchange rate applied for consistency
Detailed transformation logic is documented in the 03_transformations folder.
- Total projects by outcome, category, and country
- Total amount raised by successful projects
- Total number of backers
- Average duration to project success
- Top successful projects by backers and funding
- Success percentage:
- Overall
- By category
- By time (year/month)
- By goal range
All KPIs are implemented using SQL and validated in dashboards.
The analysis is visualized using multiple tools:
- Excel – Pivot-based dashboard
- Power BI – Interactive executive dashboard
- Tableau – Analytical dashboard for exploration
- MySQL
- Excel
- Power BI
- Tableau
- SQL
- GitHub
├── 01_data/ → Raw and processed data
├── 02_database/ → Schema, data load, and analytics SQL
├── 03_transformations/ → Transformation documentation
├── 04_dashboards/ → BI dashboards
└── 05_screenshots/ → Dashboard previews
Mayuresh Ahire
This project was built as part of a structured analytics training program and is intended to demonstrate real-world data analysis skills.


