Skip to content

Latest commit

 

History

History
45 lines (37 loc) · 1.85 KB

AdvancedGameStatOffense.md

File metadata and controls

45 lines (37 loc) · 1.85 KB

AdvancedGameStatOffense

Properties

Name Type Description Notes
passing_plays AdvancedGameStatOffensePassingPlays
rushing_plays AdvancedGameStatOffensePassingPlays
passing_downs AdvancedGameStatOffensePassingDowns
standard_downs AdvancedGameStatOffensePassingDowns
open_field_yards_total int
open_field_yards float
second_level_yards_total int
second_level_yards float
line_yards_total int
line_yards float
stuff_rate float
power_success float
explosiveness float
success_rate float
total_ppa float
ppa float
drives int
plays int

Example

from cfbd.models.advanced_game_stat_offense import AdvancedGameStatOffense

# TODO update the JSON string below
json = "{}"
# create an instance of AdvancedGameStatOffense from a JSON string
advanced_game_stat_offense_instance = AdvancedGameStatOffense.from_json(json)
# print the JSON string representation of the object
print AdvancedGameStatOffense.to_json()

# convert the object into a dict
advanced_game_stat_offense_dict = advanced_game_stat_offense_instance.to_dict()
# create an instance of AdvancedGameStatOffense from a dict
advanced_game_stat_offense_from_dict = AdvancedGameStatOffense.from_dict(advanced_game_stat_offense_dict)

[Back to Model list] [Back to API list] [Back to README]