NBA Offensive Rebounds Year-over-Year Analysis

This project provides a web application to analyze NBA offensive rebounds totals across different seasons, showing year-over-year trends and statistics.

Features

  • Fetches NBA team statistics from multiple seasons
  • Calculates total offensive rebounds per season
  • Displays year-over-year comparison with percentage changes
  • Interactive web interface with data visualization

Project Structure

├── backend/
│   ├── index.ts             # Main Hono server
│   └── nba-api.ts          # NBA data fetching logic
├── frontend/
│   ├── index.html          # Main HTML template
│   ├── index.tsx           # React frontend
│   └── style.css           # Styling
└── shared/
    └── types.ts            # Shared TypeScript types

Usage

The application fetches NBA team statistics and aggregates offensive rebounds by season to show trends over time.

Data Source

Uses the NBA Stats API to fetch team statistics for offensive rebounds analysis.