nba_usage_rate: *Usage Rate*

View source: R/nba_metrics.R

nba_usage_rateR Documentation

Usage Rate

Description

Percentage of team plays a player used while on the floor.

Usage

nba_usage_rate(
  fga,
  fta,
  tov,
  minutes,
  team_fga,
  team_fta,
  team_tov,
  team_minutes
)

Arguments

fga, fta, tov, minutes

Player box-score totals: field-goal attempts, free-throw attempts, turnovers, minutes.

team_fga, team_fta, team_tov, team_minutes

Team totals for the same game(s).

Value

A numeric vector of usage percentages (0-100 scale).

See Also

Other Basketball Analytics Utilities: espn_basketball_player_core(), nba_add_advanced_metrics(), nba_assist_pct(), nba_assist_to_turnover(), nba_defensive_rating(), nba_effective_fg_pct(), nba_four_factors(), nba_ft_rate(), nba_game_score(), nba_net_rating(), nba_offensive_rating(), nba_oreb_pct(), nba_pace(), nba_per_minutes(), nba_per_possessions(), nba_possessions(), nba_true_shooting_pct(), nba_turnover_pct()

Examples

nba_usage_rate(fga = 20, fta = 8, tov = 3, minutes = 36,
               team_fga = 88, team_fta = 25, team_tov = 13, team_minutes = 240)

hoopR documentation built on Aug. 25, 2026, 9:07 a.m.