Basketball Per-Game Stats Calculator Formula

Understand the math behind the basketball per-game stats calculator. Each variable explained with a worked example.

Formulas Used

Points per Game

ppg = round(total_points / games_played * 10) / 10

Rebounds per Game

rpg = round(total_rebounds / games_played * 10) / 10

Assists per Game

apg = round(total_assists / games_played * 10) / 10

Projected Points (82 games)

projected_82 = round(total_points / games_played * 82)

Variables

VariableDescriptionDefault
total_pointsTotal Points520
total_reboundsTotal Rebounds180
total_assistsTotal Assists120
games_playedGames Played25

How It Works

How Basketball Per-Game Stats Are Calculated

Formula

Stat per Game = Total Stat / Games Played

NBA Averages

Typical NBA averages are roughly 10-12 PPG, 4-5 RPG, and 2-3 APG for rotation players. Star players average 20+ PPG.

Worked Example

520 points, 180 rebounds, 120 assists in 25 games.

total_points = 520total_rebounds = 180total_assists = 120games_played = 25
  1. 01PPG = 520 / 25 = 20.8
  2. 02RPG = 180 / 25 = 7.2
  3. 03APG = 120 / 25 = 4.8
  4. 04Projected season points = 20.8 * 82 = 1706