class NbaRb::Team::ReboundTracking

Public Instance Methods

contested_rebounding() click to toggle source
# File lib/nba_rb/team/rebound_tracking.rb, line 10
def contested_rebounding
  create_stats_hash(@data[2])
end
rebound_distance_rebounding() click to toggle source
# File lib/nba_rb/team/rebound_tracking.rb, line 18
def rebound_distance_rebounding
  create_stats_hash(@data[4])
end
shot_distance_rebounding() click to toggle source
# File lib/nba_rb/team/rebound_tracking.rb, line 14
def shot_distance_rebounding
  create_stats_hash(@data[3])
end
shot_type_rebounding() click to toggle source
# File lib/nba_rb/team/rebound_tracking.rb, line 6
def shot_type_rebounding
  create_stats_hash(@data[1])
end