class NbaRb::Player::LastNGamesSplits

Public Instance Methods

gamenumber() click to toggle source
# File lib/nba_rb/player/last_n_games_splits.rb, line 22
def gamenumber
  create_stats_hash(@data[5])
end
last10() click to toggle source
# File lib/nba_rb/player/last_n_games_splits.rb, line 10
def last10
  create_stats_hash(@data[2])
end
last15() click to toggle source
# File lib/nba_rb/player/last_n_games_splits.rb, line 14
def last15
  create_stats_hash(@data[3])
end
last20() click to toggle source
# File lib/nba_rb/player/last_n_games_splits.rb, line 18
def last20
  create_stats_hash(@data[4])
end
last5() click to toggle source
# File lib/nba_rb/player/last_n_games_splits.rb, line 6
def last5
  create_stats_hash(@data[1])
end