class NbaRb::Team::InGamesSplits

Public Instance Methods

by_actual_margin() click to toggle source
# File lib/nba_rb/team/in_game_splits.rb, line 18
def by_actual_margin
  create_stats_hash(@data[4])
end
by_half() click to toggle source
# File lib/nba_rb/team/in_game_splits.rb, line 6
def by_half
  create_stats_hash(@data[1])
end
by_period() click to toggle source
# File lib/nba_rb/team/in_game_splits.rb, line 10
def by_period
  create_stats_hash(@data[2])
end
by_score_margin() click to toggle source
# File lib/nba_rb/team/in_game_splits.rb, line 14
def by_score_margin
  create_stats_hash(@data[3])
end