Usage Rate Calculator Formula
Understand the math behind the usage rate calculator. Each variable explained with a worked example.
Formulas Used
Usage Rate
usage_rate = round(player_usage * 1000) / 10Player Possessions Used
player_possessions = round(fga + 0.44 * fta + tov)Team Possessions
team_possessions = round(team_fga + 0.44 * team_fta + team_tov)Usage Decimal
usage_display = round(player_usage * 1000) / 1000Variables
| Variable | Description | Default |
|---|---|---|
fga | Player FGA | 20 |
fta | Player FTA | 8 |
tov | Player Turnovers | 3 |
minutes_played | Player Minutes(min) | 36 |
team_minutes | Team Minutes(min) | 240 |
team_fga | Team FGA | 88 |
team_fta | Team FTA | 24 |
team_tov | Team Turnovers | 14 |
player_usage | Derived value= (fga + 0.44 * fta + tov) * (team_minutes / 5) / (minutes_played * (team_fga + 0.44 * team_fta + team_tov)) | calculated |
How It Works
How Usage Rate Is Calculated
Formula
USG% = (FGA + 0.44 x FTA + TOV) x (Team Minutes / 5) / (Player Minutes x Team Possessions)
Usage rate measures what percentage of team possessions a player "uses" (by shooting, getting fouled, or turning it over) while on the court.
Benchmarks
Worked Example
Player: 20 FGA, 8 FTA, 3 TOV, 36 min. Team: 88 FGA, 24 FTA, 14 TOV, 240 min.
fga = 20fta = 8tov = 3minutes_played = 36team_minutes = 240team_fga = 88team_fta = 24team_tov = 14
- 01Player possessions = 20 + 0.44 * 8 + 3 = 26.52
- 02Team possessions = 88 + 0.44 * 24 + 14 = 112.56
- 03USG% = 26.52 * (240/5) / (36 * 112.56)
- 04USG% = 26.52 * 48 / 4052.2 = 0.314 = 31.4%
Ready to run the numbers?
Open Usage Rate Calculator