Class: NbaRb::Player::ShootingSplits

Inherits:
PlayerDashboard
  • Object
show all
Defined in:
lib/nba_rb/player/shooting_splits.rb,
lib/nba_rb/player/player_shooting_splits.rb

Instance Method Summary collapse

Instance Method Details

#assissted_byObject



30
31
32
# File 'lib/nba_rb/player/shooting_splits.rb', line 30

def assissted_by
  create_stats_hash(@data[7])
end

#assisted_shotsObject



18
19
20
# File 'lib/nba_rb/player/shooting_splits.rb', line 18

def assisted_shots
  create_stats_hash(@data[4])
end

#shot_5ftObject



6
7
8
# File 'lib/nba_rb/player/shooting_splits.rb', line 6

def shot_5ft
  create_stats_hash(@data[1])
end

#shot_8ftObject



10
11
12
# File 'lib/nba_rb/player/shooting_splits.rb', line 10

def shot_8ft
  create_stats_hash(@data[2])
end

#shot_areasObject



14
15
16
# File 'lib/nba_rb/player/shooting_splits.rb', line 14

def shot_areas
  create_stats_hash(@data[3])
end

#shot_types_detailObject



26
27
28
# File 'lib/nba_rb/player/shooting_splits.rb', line 26

def shot_types_detail
  create_stats_hash(@data[6])
end

#shot_types_summaryObject



22
23
24
# File 'lib/nba_rb/player/shooting_splits.rb', line 22

def shot_types_summary
  create_stats_hash(@data[5])
end