Class: NbaRb::Player::ShootingSplits
- Inherits:
-
PlayerDashboard
- Object
- PlayerDashboard
- NbaRb::Player::ShootingSplits
- Defined in:
- lib/nba_rb/player/shooting_splits.rb,
lib/nba_rb/player/player_shooting_splits.rb
Instance Method Summary collapse
- #assissted_by ⇒ Object
- #assisted_shots ⇒ Object
- #shot_5ft ⇒ Object
- #shot_8ft ⇒ Object
- #shot_areas ⇒ Object
- #shot_types_detail ⇒ Object
- #shot_types_summary ⇒ Object
Instance Method Details
#assissted_by ⇒ Object
30 31 32 |
# File 'lib/nba_rb/player/shooting_splits.rb', line 30 def assissted_by create_stats_hash(@data[7]) end |
#assisted_shots ⇒ Object
18 19 20 |
# File 'lib/nba_rb/player/shooting_splits.rb', line 18 def assisted_shots create_stats_hash(@data[4]) end |
#shot_5ft ⇒ Object
6 7 8 |
# File 'lib/nba_rb/player/shooting_splits.rb', line 6 def shot_5ft create_stats_hash(@data[1]) end |
#shot_8ft ⇒ Object
10 11 12 |
# File 'lib/nba_rb/player/shooting_splits.rb', line 10 def shot_8ft create_stats_hash(@data[2]) end |
#shot_areas ⇒ Object
14 15 16 |
# File 'lib/nba_rb/player/shooting_splits.rb', line 14 def shot_areas create_stats_hash(@data[3]) end |
#shot_types_detail ⇒ Object
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_summary ⇒ Object
22 23 24 |
# File 'lib/nba_rb/player/shooting_splits.rb', line 22 def shot_types_summary create_stats_hash(@data[5]) end |