Class: NBA::LeagueDashPtStatsStat
- Inherits:
-
Shale::Mapper
- Object
- Shale::Mapper
- NBA::LeagueDashPtStatsStat
- Defined in:
- lib/nba/league_dash_pt_stats_stat.rb
Overview
Represents league-wide player or team speed and distance tracking statistics
Instance Attribute Summary collapse
-
#age ⇒ Float?
Returns the player’s age (for player mode).
-
#avg_speed ⇒ Float?
Returns average speed.
-
#avg_speed_def ⇒ Float?
Returns average speed on defense.
-
#avg_speed_off ⇒ Float?
Returns average speed on offense.
-
#dist_feet ⇒ Float?
Returns distance traveled in feet.
-
#dist_miles ⇒ Float?
Returns distance traveled in miles.
-
#dist_miles_def ⇒ Float?
Returns distance traveled on defense in miles.
-
#dist_miles_off ⇒ Float?
Returns distance traveled on offense in miles.
-
#gp ⇒ Integer?
Returns games played.
-
#l ⇒ Integer?
Returns losses.
-
#min ⇒ Float?
Returns minutes played.
-
#player_id ⇒ Integer?
Returns the player ID (for player mode).
-
#player_name ⇒ String?
Returns the player name (for player mode).
-
#team_abbreviation ⇒ String?
Returns the team abbreviation.
-
#team_id ⇒ Integer?
Returns the team ID.
-
#team_name ⇒ String?
Returns the team name (for team mode).
-
#w ⇒ Integer?
Returns wins.
Instance Method Summary collapse
-
#player ⇒ Player?
Returns the player.
-
#team ⇒ Team?
Returns the team.
Instance Attribute Details
#age ⇒ Float?
Returns the player’s age (for player mode)
59 |
# File 'lib/nba/league_dash_pt_stats_stat.rb', line 59 attribute :age, Shale::Type::Float |
#avg_speed ⇒ Float?
Returns average speed
131 |
# File 'lib/nba/league_dash_pt_stats_stat.rb', line 131 attribute :avg_speed, Shale::Type::Float |
#avg_speed_def ⇒ Float?
Returns average speed on defense
147 |
# File 'lib/nba/league_dash_pt_stats_stat.rb', line 147 attribute :avg_speed_def, Shale::Type::Float |
#avg_speed_off ⇒ Float?
Returns average speed on offense
139 |
# File 'lib/nba/league_dash_pt_stats_stat.rb', line 139 attribute :avg_speed_off, Shale::Type::Float |
#dist_feet ⇒ Float?
Returns distance traveled in feet
99 |
# File 'lib/nba/league_dash_pt_stats_stat.rb', line 99 attribute :dist_feet, Shale::Type::Float |
#dist_miles ⇒ Float?
Returns distance traveled in miles
107 |
# File 'lib/nba/league_dash_pt_stats_stat.rb', line 107 attribute :dist_miles, Shale::Type::Float |
#dist_miles_def ⇒ Float?
Returns distance traveled on defense in miles
123 |
# File 'lib/nba/league_dash_pt_stats_stat.rb', line 123 attribute :dist_miles_def, Shale::Type::Float |
#dist_miles_off ⇒ Float?
Returns distance traveled on offense in miles
115 |
# File 'lib/nba/league_dash_pt_stats_stat.rb', line 115 attribute :dist_miles_off, Shale::Type::Float |
#gp ⇒ Integer?
Returns games played
67 |
# File 'lib/nba/league_dash_pt_stats_stat.rb', line 67 attribute :gp, Shale::Type::Integer |
#l ⇒ Integer?
Returns losses
83 |
# File 'lib/nba/league_dash_pt_stats_stat.rb', line 83 attribute :l, Shale::Type::Integer |
#min ⇒ Float?
Returns minutes played
91 |
# File 'lib/nba/league_dash_pt_stats_stat.rb', line 91 attribute :min, Shale::Type::Float |
#player_id ⇒ Integer?
Returns the player ID (for player mode)
19 |
# File 'lib/nba/league_dash_pt_stats_stat.rb', line 19 attribute :player_id, Shale::Type::Integer |
#player_name ⇒ String?
Returns the player name (for player mode)
27 |
# File 'lib/nba/league_dash_pt_stats_stat.rb', line 27 attribute :player_name, Shale::Type::String |
#team_abbreviation ⇒ String?
Returns the team abbreviation
43 |
# File 'lib/nba/league_dash_pt_stats_stat.rb', line 43 attribute :team_abbreviation, Shale::Type::String |
#team_id ⇒ Integer?
Returns the team ID
35 |
# File 'lib/nba/league_dash_pt_stats_stat.rb', line 35 attribute :team_id, Shale::Type::Integer |
#team_name ⇒ String?
Returns the team name (for team mode)
51 |
# File 'lib/nba/league_dash_pt_stats_stat.rb', line 51 attribute :team_name, Shale::Type::String |
#w ⇒ Integer?
Returns wins
75 |
# File 'lib/nba/league_dash_pt_stats_stat.rb', line 75 attribute :w, Shale::Type::Integer |