Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions MarchMadness/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# March Madness Analytics

Historical NCAA Tournament data for bracket analysis and prediction.

## Data Files

| File | Description |
| ------------------------- | --------------------------------------------------------------------------- |
| `538 Ratings.csv` | FiveThirtyEight team ratings and predictions |
| `KenPom Barttorvik.csv` | Team efficiency metrics (adjusted offensive/defensive ratings, tempo, etc.) |
| `Public Picks.csv` | Public bracket pick percentages |
| `Seed Results.csv` | Historical win rates by seed matchup |
| `Team Results.csv` | Team performance and tournament results |
| `Tournament Matchups.csv` | Game-by-game tournament results |
| `Upset Count.csv` | Historical upset statistics by round |

## Usage

```python
from deephaven import read_csv

seed_results = read_csv("/data/examples/MarchMadness/csv/Seed Results.csv")
matchups = read_csv("/data/examples/MarchMadness/csv/Tournament Matchups.csv")
kenpom = read_csv("/data/examples/MarchMadness/csv/KenPom Barttorvik.csv")
```

# Source and Licence

This dataset is publicly available on [Kaggle](https://www.kaggle.com/) at [this url](https://www.kaggle.com/datasets/nishaanamin/march-madness-data).

The data is licensed under the Creative Commons public domain CC BY-NC-SA 4.0. Deephaven makes no claim of its authenticity or its accuracy. It has been placed here for demonstrative purposes.
3 changes: 3 additions & 0 deletions MarchMadness/csv/538 Ratings.csv
Git LFS file not shown
3 changes: 3 additions & 0 deletions MarchMadness/csv/KenPom Barttorvik.csv
Git LFS file not shown
3 changes: 3 additions & 0 deletions MarchMadness/csv/Public Picks.csv
Git LFS file not shown
3 changes: 3 additions & 0 deletions MarchMadness/csv/Seed Results.csv
Git LFS file not shown
3 changes: 3 additions & 0 deletions MarchMadness/csv/Team Results.csv
Git LFS file not shown
3 changes: 3 additions & 0 deletions MarchMadness/csv/Tournament Matchups.csv
Git LFS file not shown
3 changes: 3 additions & 0 deletions MarchMadness/csv/Upset Count.csv
Git LFS file not shown