class NbaRb::Player::Profile

Public Instance Methods

career_highs() click to toggle source
# File lib/nba_rb/player/player_profile.rb, line 10
def career_highs
  create_stats_hash(@data[11])
end
next_game() click to toggle source
# File lib/nba_rb/player/player_profile.rb, line 14
def next_game
  create_stats_hash(@data[12])
end
season_highs() click to toggle source
# File lib/nba_rb/player/player_profile.rb, line 6
def season_highs
  create_stats_hash(@data[10])
end