class NbaRb::Team::PerformanceSplits

Public Instance Methods

points_against() click to toggle source
# File lib/nba_rb/team/performance_splits.rb, line 14
def points_against
  create_stats_hash(@data[3])
end
points_scored() click to toggle source
# File lib/nba_rb/team/performance_splits.rb, line 10
def points_scored
  create_stats_hash(@data[2])
end
score_differential() click to toggle source
# File lib/nba_rb/team/performance_splits.rb, line 6
def score_differential
  create_stats_hash(@data[1])
end