class NbaRb::Team::GeneralSplits

Public Instance Methods

by_location() click to toggle source
# File lib/nba_rb/team/general_splits.rb, line 6
def by_location
  create_stats_hash(@data[1])
end
days_rest() click to toggle source
# File lib/nba_rb/team/general_splits.rb, line 22
def days_rest
  create_stats_hash(@data[5])
end
monthly() click to toggle source
# File lib/nba_rb/team/general_splits.rb, line 14
def monthly
  create_stats_hash(@data[3])
end
pre_post_all_star() click to toggle source
# File lib/nba_rb/team/general_splits.rb, line 18
def pre_post_all_star
  create_stats_hash(@data[4])
end
wins_losses() click to toggle source
# File lib/nba_rb/team/general_splits.rb, line 10
def wins_losses
  create_stats_hash(@data[2])
end