class NbaRb::Player::ShootingSplits
Public Instance Methods
assissted_by()
click to toggle source
# File lib/nba_rb/player/player_shooting_splits.rb, line 30 def assissted_by create_stats_hash(@data[7]) end
assisted_shots()
click to toggle source
# File lib/nba_rb/player/player_shooting_splits.rb, line 18 def assisted_shots create_stats_hash(@data[4]) end
shot_5ft()
click to toggle source
# File lib/nba_rb/player/player_shooting_splits.rb, line 6 def shot_5ft create_stats_hash(@data[1]) end
shot_8ft()
click to toggle source
# File lib/nba_rb/player/player_shooting_splits.rb, line 10 def shot_8ft create_stats_hash(@data[2]) end
shot_areas()
click to toggle source
# File lib/nba_rb/player/player_shooting_splits.rb, line 14 def shot_areas create_stats_hash(@data[3]) end
shot_types_detail()
click to toggle source
# File lib/nba_rb/player/player_shooting_splits.rb, line 26 def shot_types_detail create_stats_hash(@data[6]) end
shot_types_summary()
click to toggle source
# File lib/nba_rb/player/player_shooting_splits.rb, line 22 def shot_types_summary create_stats_hash(@data[5]) end