├── .github ├── ISSUE_TEMPLATE │ ├── bug_form.yml │ ├── config.yml │ ├── data_issue.yml │ └── feature_request.yml └── workflows │ ├── lint-and-test.yml │ └── publish-release-to-pypi.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── data ├── coaching_history.csv ├── combine.csv ├── drafts.csv ├── qbr.csv └── schedules │ ├── 1999.csv │ ├── 2000.csv │ ├── 2001.csv │ ├── 2002.csv │ ├── 2003.csv │ ├── 2004.csv │ ├── 2005.csv │ ├── 2006.csv │ ├── 2007.csv │ ├── 2008.csv │ ├── 2009.csv │ ├── 2010.csv │ ├── 2011.csv │ ├── 2012.csv │ ├── 2013.csv │ ├── 2014.csv │ ├── 2015.csv │ ├── 2016.csv │ ├── 2017.csv │ ├── 2018.csv │ ├── 2019.csv │ ├── 2020.csv │ └── 2021.csv ├── nfl_data_py ├── __init__.py ├── tests │ ├── __init__.py │ └── nfl_test.py └── troubleshooting_info.py ├── pyproject.toml └── uv.lock /.github/ISSUE_TEMPLATE/bug_form.yml: -------------------------------------------------------------------------------- 1 | name: 🐞 Bug 2 | description: Report an error or bug in the nfl_data_py package code/functionality 3 | labels: ["bug"] 4 | body: 5 | - type: checkboxes 6 | attributes: 7 | label: Has anyone already reported this issue? 8 | options: 9 | - label: I have searched the existing issues 10 | required: true 11 | 12 | - type: checkboxes 13 | attributes: 14 | label: Have you installed the latest version of nfl_data_py? 15 | description: Use `pip install --upgrade nfl_data_py` to install the latest version. 16 | options: 17 | - label: I have installed the latest version of nfl_data_py 18 | required: true 19 | 20 | - type: textarea 21 | attributes: 22 | label: Add a description 23 | value: | 24 | Function call (include your input values): 25 | 26 | Expectation: 27 | 28 | Actual result: 29 | 30 | Full error message, if applicable: 31 | 32 | Any other relevant info: 33 | 34 | validations: 35 | required: true 36 | 37 | - type: textarea 38 | attributes: 39 | label: Environment 40 | description: | 41 | Run the command `python -m nfl_data_py.troubleshooting_info` in your 42 | environment and paste the output here. 43 | render: text 44 | validations: 45 | required: true -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/data_issue.yml: -------------------------------------------------------------------------------- 1 | name: 📊 Data Issue 2 | description: Report incorrect or missing data 3 | labels: ["data issue"] 4 | body: 5 | - type: checkboxes 6 | attributes: 7 | label: Has anyone already reported this issue? 8 | options: 9 | - label: I have searched the existing issues 10 | required: true 11 | 12 | - type: checkboxes 13 | attributes: 14 | label: Have you installed the latest version of nfl_data_py? 15 | description: | 16 | Use `pip install --upgrade nfl_data_py` to install the latest version. 17 | options: 18 | - label: I have installed the latest version of nfl_data_py 19 | required: true 20 | 21 | - type: dropdown 22 | attributes: 23 | label: If this is a play-by-play issue, are you using the cache feature? 24 | description: | 25 | It's possible the data has already been corrected, but you're still 26 | seeing the old version. Try again with the parameter `cache=False`. 27 | options: 28 | - I have run without caching and the issue persists 29 | - Not a play-by-play data issue 30 | validations: 31 | required: true 32 | 33 | - type: dropdown 34 | attributes: 35 | label: Select the category that best describes your issue 36 | description: Data is... 37 | options: 38 | - Missing (expected data not present) 39 | - Clearly incorrect (i.e. player on wrong team) 40 | - Inconsistent (values don't match across sources) 41 | validations: 42 | required: true 43 | 44 | - type: textarea 45 | attributes: 46 | label: Add a description 47 | value: | 48 | Function call (include your input values): 49 | 50 | Records / columns affected (be specific): 51 | 52 | Details: 53 | 54 | validations: 55 | required: true 56 | 57 | - type: textarea 58 | attributes: 59 | label: Example Code 60 | render: python 61 | description: | 62 | If you used any additional filtering or transforms, provide the 63 | specific code used to demonstrate the problem. 64 | placeholder: | 65 | import nfl_data_py as nfl 66 | 67 | df = nfl.import_pbp_data(years=[2022]) 68 | df[["air_yards", "yards_after_catch"]].corr().iat[0, 1] 69 | validations: 70 | required: false 71 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- 1 | name: 💡 Enhancement Request 2 | description: | 3 | Suggest an idea for this project. It's often a good idea to discuss these 4 | in our discord first: https://discord.com/invite/5Er2FBnnQa 5 | labels: ["enhancement"] 6 | body: 7 | - type: checkboxes 8 | attributes: 9 | label: Has anyone already requested this feature? 10 | options: 11 | - label: I have searched the existing issues 12 | required: true 13 | 14 | - type: textarea 15 | attributes: 16 | label: Is your feature request related to a problem? Please describe. 17 | description: | 18 | A clear and concise description of the problem, e.g. 19 | `I'm always frustrated when ...` 20 | 21 | - type: checkboxes 22 | attributes: 23 | label: What type of enhancement is this? 24 | options: 25 | - label: New function 26 | - label: Improvement to existing function 27 | - label: New data source integration 28 | - label: Performance improvement 29 | - label: Documentation improvement 30 | - label: Other 31 | validations: 32 | required: true 33 | 34 | - type: textarea 35 | attributes: 36 | label: Proposal details 37 | validations: 38 | required: true 39 | 40 | - type: textarea 41 | attributes: 42 | label: | 43 | Alternative solutions you've considered 44 | -------------------------------------------------------------------------------- /.github/workflows/lint-and-test.yml: -------------------------------------------------------------------------------- 1 | # This workflow will install Python dependencies, run tests and lint with a variety of Python versions 2 | # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python 3 | 4 | name: Lint and Test 5 | 6 | on: 7 | push: 8 | branches: [ "main" ] 9 | pull_request: 10 | branches: [ "main", "v*" ] 11 | types: [ opened, synchronize, reopened, ready_for_review ] 12 | 13 | jobs: 14 | 15 | lint: 16 | runs-on: ubuntu-latest 17 | steps: 18 | - uses: actions/checkout@v4 19 | - uses: astral-sh/ruff-action@v3 20 | 21 | test: 22 | needs: lint 23 | if: github.event.pull_request.draft == false 24 | strategy: 25 | fail-fast: false 26 | matrix: 27 | python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] 28 | os: [macos-latest, windows-latest, ubuntu-latest] 29 | 30 | runs-on: ${{ matrix.os }} 31 | 32 | steps: 33 | - uses: actions/checkout@v4 34 | 35 | - name: Set up uv 36 | uses: astral-sh/setup-uv@v5 37 | with: 38 | python-version: ${{ matrix.python-version }} 39 | enable-cache: true 40 | cache-dependency-glob: "uv.lock" 41 | 42 | - name: Install the project and test deps 43 | run: uv sync --locked --no-dev --group test 44 | 45 | - name: Run tests 46 | run: uv run --no-sync pytest 47 | 48 | - name: Minify the uv cache 49 | run: uv cache prune --ci 50 | -------------------------------------------------------------------------------- /.github/workflows/publish-release-to-pypi.yml: -------------------------------------------------------------------------------- 1 | # This workflow will upload a Python Package using Twine when a release is created 2 | # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries 3 | 4 | name: Upload Python Package 5 | 6 | on: 7 | release: 8 | types: [published] 9 | 10 | permissions: 11 | contents: read 12 | 13 | jobs: 14 | build-package: 15 | runs-on: ubuntu-latest 16 | 17 | permissions: 18 | id-token: write 19 | 20 | steps: 21 | - uses: actions/checkout@v4 22 | 23 | - name: Set up uv 24 | uses: astral-sh/setup-uv@v5 25 | with: 26 | version: "0.7.8" 27 | enable-cache: true 28 | cache-dependency-glob: "uv.lock" 29 | 30 | - name: Set up Python 31 | uses: actions/setup-python@v5 32 | with: 33 | python-version-file: "pyproject.toml" 34 | 35 | - name: Build release distribution 36 | run: uv build 37 | 38 | - name: Upload release distribution 39 | run: uv publish 40 | 41 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | .eggs/ 17 | lib/ 18 | lib64/ 19 | parts/ 20 | sdist/ 21 | var/ 22 | wheels/ 23 | share/python-wheels/ 24 | *.egg-info/ 25 | .installed.cfg 26 | *.egg 27 | MANIFEST 28 | 29 | # PyInstaller 30 | # Usually these files are written by a python script from a template 31 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 32 | *.manifest 33 | *.spec 34 | 35 | # Installer logs 36 | pip-log.txt 37 | pip-delete-this-directory.txt 38 | 39 | # Unit test / coverage reports 40 | htmlcov/ 41 | .tox/ 42 | .nox/ 43 | .coverage 44 | .coverage.* 45 | .cache 46 | nosetests.xml 47 | coverage.xml 48 | *.cover 49 | *.py,cover 50 | .hypothesis/ 51 | .pytest_cache/ 52 | cover/ 53 | */**/tmpcache-* 54 | 55 | # Translations 56 | *.mo 57 | *.pot 58 | 59 | # Django stuff: 60 | *.log 61 | local_settings.py 62 | db.sqlite3 63 | db.sqlite3-journal 64 | 65 | # Flask stuff: 66 | instance/ 67 | .webassets-cache 68 | 69 | # Scrapy stuff: 70 | .scrapy 71 | 72 | # Sphinx documentation 73 | docs/_build/ 74 | 75 | # PyBuilder 76 | .pybuilder/ 77 | target/ 78 | 79 | # Jupyter Notebook 80 | .ipynb_checkpoints 81 | 82 | # IPython 83 | profile_default/ 84 | ipython_config.py 85 | 86 | # pyenv 87 | # For a library or package, you might want to ignore these files since the code is 88 | # intended to run in multiple environments; otherwise, check them in: 89 | # .python-version 90 | 91 | # pipenv 92 | # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. 93 | # However, in case of collaboration, if having platform-specific dependencies or dependencies 94 | # having no cross-platform support, pipenv may install dependencies that don't work, or not 95 | # install all needed dependencies. 96 | #Pipfile.lock 97 | 98 | # PEP 582; used by e.g. github.com/David-OConnor/pyflow 99 | __pypackages__/ 100 | 101 | # Celery stuff 102 | celerybeat-schedule 103 | celerybeat.pid 104 | 105 | # SageMath parsed files 106 | *.sage.py 107 | 108 | # Environments 109 | .env 110 | .venv 111 | env/ 112 | venv/ 113 | ENV/ 114 | env.bak/ 115 | venv.bak/ 116 | 117 | # Spyder project settings 118 | .spyderproject 119 | .spyproject 120 | 121 | # VS Code project settings 122 | .vscode 123 | 124 | # Rope project settings 125 | .ropeproject 126 | 127 | # mkdocs documentation 128 | /site 129 | 130 | # mypy 131 | .mypy_cache/ 132 | .dmypy.json 133 | dmypy.json 134 | 135 | # Pyre type checker 136 | .pyre/ 137 | 138 | # pytype static type analyzer 139 | .pytype/ 140 | 141 | # Cython debug symbols 142 | cython_debug/ 143 | 144 | # Mac local files 145 | .DS_Store 146 | 147 | # Dev 148 | scratch.ipynb 149 | CLAUDE.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | All notable changes to this project will be documented in this file. 3 | 4 | The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), 5 | and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 6 | 7 | 8 | ## [0.2.0] - 2021-08-10 9 | 10 | ### Changed 11 | - Removed local build files 12 | - Removed soon to be deprecated setup.py `test` feature 13 | - Synced tox and setup.py python versions 14 | - Added new functions for pulling PFR, injury, snaps, NGS, and depth chart data 15 | - Updated python requirements to >=py3.5 16 | - Fixed bug in clean_nfl_data() 17 | - Updated tests with new functions 18 | - Update README to align with function updates 19 | 20 | ## [0.2.4] - 2021-08-28 21 | 22 | ### Changed 23 | - Added feature to cache play-by-play files locally 24 | - Updated load_pbp_data() to work with locally cached files 25 | - Updates README 26 | 27 | ## [0.2.5] - 2021-09-22 28 | 29 | ### Changed 30 | - Fixed bug in cache process that was effecting pbp load too 31 | 32 | ## [0.2.6] - 2022-03-15 33 | 34 | ### Changed 35 | - Updated cache feature to be OS agnostic 36 | 37 | ## [0.2.7] - 2022-06-04 38 | 39 | ### Changed 40 | - Redirected data pulls to new repos 41 | 42 | ## [0.2.9] - 2022-08-18 43 | - Fixed compatibility issue between python and pandas 44 | 45 | ## [0.2.11] - 2022-08-20 46 | - Actually fixed issue between python and pandas not resolved in 0.2.9 47 | - Dropped python 3.5 support from nfl_data_py to allow for parquet file usage 48 | 49 | ## [0.3.0] - 2022-08-20 50 | - Added import functionality for participation, contract, and player data made previously available through nflReadR 51 | 52 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021-2024 cooperdff 4 | 5 | Copyright (c) 2024-2025 nflverse authors 6 | 7 | Permission is hereby granted, free of charge, to any person obtaining a copy 8 | of this software and associated documentation files (the "Software"), to deal 9 | in the Software without restriction, including without limitation the rights 10 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 11 | copies of the Software, and to permit persons to whom the Software is 12 | furnished to do so, subject to the following conditions: 13 | 14 | The above copyright notice and this permission notice shall be included in all 15 | copies or substantial portions of the Software. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 20 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 21 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 22 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 23 | SOFTWARE. 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # nfl_data_py 2 | 3 | nfl_data_py is a Python library for interacting with NFL data sourced from [nflfastR](https://github.com/nflverse/nflfastR-data/), [nfldata](https://github.com/nflverse/nfldata/), [dynastyprocess](https://raw.githubusercontent.com/dynastyprocess/), and [Draft Scout](https://draftscout.com/). 4 | 5 | Includes import functions for play-by-play data, weekly data, seasonal data, rosters, win totals, scoring lines, officials, draft picks, draft pick values, schedules, team descriptive info, combine results and id mappings across various sites. 6 | 7 | ## Installation 8 | 9 | Use the package manager [pip](https://pip.pypa.io/en/stable/) to install nfl_data_py. 10 | 11 | ```bash 12 | pip install nfl_data_py 13 | ``` 14 | 15 | ## Usage 16 | 17 | ```python 18 | import nfl_data_py as nfl 19 | ``` 20 | 21 | **Working with play-by-play data** 22 | 23 | ```python 24 | nfl.import_pbp_data(years, columns, downcast=True, cache=False, alt_path=None) 25 | ``` 26 | 27 | Returns play-by-play data for the years and columns specified 28 | 29 | years 30 | : required, list of years to pull data for (earliest available is 1999) 31 | 32 | columns 33 | : optional, list of columns to pull data for 34 | 35 | downcast 36 | : optional, converts float64 columns to float32, reducing memory usage by ~30%. Will slow down initial load speed ~50% 37 | 38 | cache 39 | : optional, determines whether to pull pbp data from github repo or local cache generated by nfl.cache_pbp() 40 | 41 | alt_path 42 | : optional, required if nfl.cache_pbp() is called using an alternate path to the default cache 43 | 44 | ```python 45 | nfl.see_pbp_cols() 46 | ``` 47 | 48 | returns list of columns available in play-by-play dataset 49 | 50 | **Working with weekly data** 51 | 52 | ```python 53 | nfl.import_weekly_data(years, columns, downcast) 54 | ``` 55 | 56 | Returns weekly data for the years and columns specified 57 | 58 | years 59 | : required, list of years to pull data for (earliest available is 1999) 60 | 61 | columns 62 | : optional, list of columns to pull data for 63 | 64 | downcast 65 | : converts float64 columns to float32, reducing memory usage by ~30%. Will slow down initial load speed ~50% 66 | 67 | ```python 68 | nfl.see_weekly_cols() 69 | ``` 70 | 71 | returns list of columns available in weekly dataset 72 | 73 | **Working with seasonal data** 74 | 75 | ```python 76 | nfl.import_seasonal_data(years, s_type) 77 | ``` 78 | 79 | Returns seasonal data, including various calculated market share stats specific to receivers 80 | 81 | years (List[int]) 82 | : required, list of years to pull data for (earliest available is 1999) 83 | 84 | s_type (str) 85 | : optional (default 'REG') season type to include in average ('ALL','REG','POST') 86 | 87 | calculated receiving market share stats include: 88 | 89 | | Column | is short for | 90 | | -------- | --------------------------------------------------------------------------------------------------------------------------------------------- | 91 | | tgt_sh | target share | 92 | | ay_sh | air yards share | 93 | | yac_sh | yards after catch share | 94 | | wopr | [weighted opportunity rating](https://www.nbcsports.com/fantasy/football/news/article-numbers-why-receiver-air-yards-matter) | 95 | | ry_sh | receiving yards share | 96 | | rtd_sh | receiving TDs share | 97 | | rfd_sh | receiving 1st Downs share | 98 | | rtdfd_sh | receiving TDs + 1st Downs share | 99 | | dom | [dominator rating](https://www.pff.com/news/fantasy-football-predicting-breakout-rookie-wide-receivers-using-pff-grades-and-dominator-rating) | 100 | | w8dom | dominator rating, but weighted in favor of receiving yards over TDs | 101 | | yptmpa | receiving yards per team pass attempt | 102 | | ppr_sh | PPR fantasy points share | 103 | 104 | **Additional data imports** 105 | 106 | ```python 107 | nfl.import_seasonal_rosters(years, columns) 108 | ``` 109 | 110 | Returns yearly roster information for the seasons specified 111 | 112 | years 113 | : required, list of years to pull data for (earliest available is 1999) 114 | 115 | columns 116 | : optional, list of columns to pull data for 117 | 118 | ```python 119 | nfl.import_weekly_rosters(years, columns) 120 | ``` 121 | 122 | Returns per-game roster information for the seasons specified 123 | 124 | years 125 | : required, list of years to pull data for (earliest available is 1999) 126 | 127 | columns 128 | : optional, list of columns to pull data for 129 | 130 | ```python 131 | nfl.import_win_totals(years) 132 | ``` 133 | 134 | Returns win total lines for years specified 135 | 136 | years 137 | : optional, list of years to pull 138 | 139 | ```python 140 | nfl.import_sc_lines(years) 141 | ``` 142 | 143 | Returns scoring lines for years specified 144 | 145 | years 146 | : optional, list of years to pull 147 | 148 | ```python 149 | nfl.import_officials(years) 150 | ``` 151 | 152 | Returns official information by game for the years specified 153 | 154 | years 155 | : optional, list of years to pull 156 | 157 | ```python 158 | nfl.import_draft_picks(years) 159 | ``` 160 | 161 | Returns list of draft picks for the years specified 162 | 163 | years 164 | : optional, list of years to pull 165 | 166 | ```python 167 | nfl.import_draft_values() 168 | ``` 169 | 170 | Returns relative values by generic draft pick according to various popular valuation methods 171 | 172 | ```python 173 | nfl.import_team_desc() 174 | ``` 175 | 176 | Returns dataframe with color/logo/etc information for all NFL team 177 | 178 | ```python 179 | nfl.import_schedules(years) 180 | ``` 181 | 182 | Returns dataframe with schedule information for years specified 183 | 184 | years 185 | : required, list of years to pull data for (earliest available is 1999) 186 | 187 | ```python 188 | nfl.import_combine_data(years, positions) 189 | ``` 190 | 191 | Returns dataframe with combine results for years and positions specified 192 | 193 | years 194 | : optional, list or range of years to pull data from 195 | 196 | positions 197 | : optional, list of positions to be pulled (standard format - WR/QB/RB/etc.) 198 | 199 | ```python 200 | nfl.import_ids(columns, ids) 201 | ``` 202 | 203 | Returns dataframe with mapped ids for all players across most major NFL and fantasy football data platforms 204 | 205 | columns 206 | : optional, list of columns to return 207 | 208 | ids 209 | : optional, list of ids to return 210 | 211 | ```python 212 | nfl.import_ngs_data(stat_type, years) 213 | ``` 214 | 215 | Returns dataframe with specified NGS data 216 | 217 | stat_type (str) 218 | : required, type of stats to pull (passing, rushing, receiving) 219 | 220 | years 221 | : optional, list of years to return data for 222 | 223 | ```python 224 | nfl.import_depth_charts(years) 225 | ``` 226 | 227 | Returns dataframe with depth chart data 228 | 229 | years 230 | : optional, list of years to return data for 231 | 232 | ```python 233 | nfl.import_injuries(years) 234 | ``` 235 | 236 | Returns dataframe of injury reports 237 | 238 | years 239 | : optional, list of years to return data for 240 | 241 | ```python 242 | nfl.import_qbr(years, level, frequency) 243 | ``` 244 | 245 | Returns dataframe with QBR history 246 | 247 | years 248 | : optional, years to return data for 249 | 250 | level 251 | : optional, competition level to return data for, nfl or college, default nfl 252 | 253 | frequency 254 | : optional, frequency to return data for, weekly or season, default season 255 | 256 | ```python 257 | nfl.import_seasonal_pfr(s_type, years) 258 | ``` 259 | 260 | Returns a dataframe of season-aggregated data sourced from players' pages on pro-football-reference.com. E.g. [Patrick Mahomes](https://www.pro-football-reference.com/players/M/MahoPa00.htm#all_passing_detailed) 261 | 262 | s_type (str) 263 | : required, the type of stat data to request. Must be one of pass, rec, or rush. 264 | 265 | years (List[int]) 266 | : optional, years to return data for 267 | 268 | ```python 269 | nfl.import_weekly_pfr(s_type, years) 270 | ``` 271 | 272 | Returns a dataframe of per-game data sourced from players' advanced gamelog pages on pro-football-reference.com. E.g. [Mahomes in 2022](https://www.pro-football-reference.com/players/M/MahoPa00/gamelog/2022/advanced/#all_advanced_passing) 273 | 274 | s_type (str) 275 | : required, the type of stat data to request. Must be one of pass, rec, or rush. 276 | 277 | years (List[int]) 278 | : optional, years to return data for 279 | 280 | ```python 281 | nfl.import_snap_counts(years) 282 | ``` 283 | 284 | Returns dataframe with snap count records 285 | 286 | years 287 | : optional, list of years to return data for 288 | 289 | ```python 290 | nfl.import_ftn_data(years, columns=None, downcast=True, thread_requests=False) 291 | ``` 292 | 293 | Returns dataframe with FTN charting data 294 | 295 | FTN Data manually charts plays and has graciously provided a subset of their 296 | charting data to be published via the nflverse. Data is available from the 2022 297 | season onwards and is charted within 48 hours following each game. This data 298 | is released under the [CC-BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/) 299 | Creative Commons license and attribution must be made to **FTN Data via nflverse** 300 | 301 | years (List[int]) 302 | : required, years to get weekly data for 303 | columns (List[str]) 304 | : optional, only return these columns 305 | downcast (bool) 306 | : optional, convert float64 to float32, default True 307 | thread_requests (bool) 308 | : optional use thread pool to read files, default False 309 | 310 | **Additional features** 311 | 312 | ```python 313 | nfl.cache_pbp(years, downcast=True, alt_path=None) 314 | ``` 315 | 316 | Caches play-by-play data locally to speed up download time. If years specified have already been cached they will be overwritten, so if using in-season must cache 1x per week to catch most recent data 317 | 318 | years 319 | : required, list or range of years to cache 320 | 321 | downcast 322 | : optional, converts float64 columns to float32, reducing memory usage by ~30%. Will slow down initial load speed ~50% 323 | 324 | alt_path 325 | :optional, alternate path to store pbp cache - default is in program created user Local folder 326 | 327 | ```python 328 | nfl.clean_nfl_data(df) 329 | ``` 330 | 331 | Runs descriptive data (team name, player name, etc.) through various cleaning processes 332 | 333 | df 334 | : required, dataframe to be cleaned 335 | 336 | ## Recognition 337 | 338 | I'd like to recognize all of [Ben Baldwin](https://twitter.com/benbbaldwin), [Sebastian Carl](https://twitter.com/mrcaseb), and [Lee Sharpe](https://twitter.com/LeeSharpeNFL) for making this data freely available and easy to access. I'd also like to thank [Tan Ho](https://twitter.com/_TanH), who has been an invaluable resource as I've worked through this project, and Josh Kazan for the resources and assistance he's provided. 339 | 340 | ## Contributing 341 | 342 | Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. 343 | 344 | ## Conduct 345 | 346 | Refer to the [nflverse code of conduct](https://github.com/nflverse/nflverse-org/blob/main/CODE_OF_CONDUCT.md). 347 | -------------------------------------------------------------------------------- /data/coaching_history.csv: -------------------------------------------------------------------------------- 1 | ,coach,team,season 2 | 0,Vince Tobin,ARI,1999 3 | 1,Dan Reeves,ATL,1999 4 | 2,Brian Billick,BAL,1999 5 | 3,Wade Phillips,BUF,1999 6 | 4,George Seifert,CAR,1999 7 | 5,Dick Jauron,CHI,1999 8 | 6,Bruce Coslet,CIN,1999 9 | 7,Chris Palmer,CLE,1999 10 | 8,Chan Gailey,DAL,1999 11 | 9,Mike Shanahan,DEN,1999 12 | 10,Bobby Ross,DET,1999 13 | 11,Ray Rhodes,GNB,1999 14 | 12,Jim Mora,IND,1999 15 | 13,Tom Coughlin,JAX,1999 16 | 14,Gunther Cunningham,KAN,1999 17 | 15,Jimmy Johnson,MIA,1999 18 | 16,Dennis Green,MIN,1999 19 | 17,Mike Ditka,NOR,1999 20 | 18,Pete Carroll,NWE,1999 21 | 19,Jim Fassel,NYG,1999 22 | 20,Bill Parcells,NYJ,1999 23 | 21,Jon Gruden,OAK,1999 24 | 22,Andy Reid,PHI,1999 25 | 23,Bill Cowher,PIT,1999 26 | 24,Mike Riley,SDG,1999 27 | 25,Mike Holmgren,SEA,1999 28 | 26,Steve Mariucci,SFO,1999 29 | 27,Dick Vermeil,STL,1999 30 | 28,Tony Dungy,TAM,1999 31 | 29,Jeff Fisher,TEN,1999 32 | 30,Norv Turner,WAS,1999 33 | 31,Dave McGinnis,ARI,2000 34 | 32,Vince Tobin,ARI,2000 35 | 33,Dan Reeves,ATL,2000 36 | 34,Brian Billick,BAL,2000 37 | 35,Wade Phillips,BUF,2000 38 | 36,George Seifert,CAR,2000 39 | 37,Dick Jauron,CHI,2000 40 | 38,Bruce Coslet,CIN,2000 41 | 39,Dick LeBeau,CIN,2000 42 | 40,Chris Palmer,CLE,2000 43 | 41,Dave Campo,DAL,2000 44 | 42,Mike Shanahan,DEN,2000 45 | 43,Gary Moeller,DET,2000 46 | 44,Bobby Ross,DET,2000 47 | 45,Mike Sherman,GNB,2000 48 | 46,Jim Mora,IND,2000 49 | 47,Tom Coughlin,JAX,2000 50 | 48,Gunther Cunningham,KAN,2000 51 | 49,Dave Wannstedt,MIA,2000 52 | 50,Dennis Green,MIN,2000 53 | 51,Jim Haslett,NOR,2000 54 | 52,Bill Belichick,NWE,2000 55 | 53,Jim Fassel,NYG,2000 56 | 54,Al Groh,NYJ,2000 57 | 55,Jon Gruden,OAK,2000 58 | 56,Andy Reid,PHI,2000 59 | 57,Bill Cowher,PIT,2000 60 | 58,Mike Riley,SDG,2000 61 | 59,Mike Holmgren,SEA,2000 62 | 60,Steve Mariucci,SFO,2000 63 | 61,Mike Martz,STL,2000 64 | 62,Tony Dungy,TAM,2000 65 | 63,Jeff Fisher,TEN,2000 66 | 64,Terry Robiskie,WAS,2000 67 | 65,Norv Turner,WAS,2000 68 | 66,Dave McGinnis,ARI,2001 69 | 67,Dan Reeves,ATL,2001 70 | 68,Brian Billick,BAL,2001 71 | 69,Gregg Williams,BUF,2001 72 | 70,George Seifert,CAR,2001 73 | 71,Dick Jauron,CHI,2001 74 | 72,Dick LeBeau,CIN,2001 75 | 73,Butch Davis,CLE,2001 76 | 74,Dave Campo,DAL,2001 77 | 75,Mike Shanahan,DEN,2001 78 | 76,Marty Mornhinweg,DET,2001 79 | 77,Mike Sherman,GNB,2001 80 | 78,Jim Mora,IND,2001 81 | 79,Tom Coughlin,JAX,2001 82 | 80,Dick Vermeil,KAN,2001 83 | 81,Dave Wannstedt,MIA,2001 84 | 82,Dennis Green,MIN,2001 85 | 83,Mike Tice,MIN,2001 86 | 84,Jim Haslett,NOR,2001 87 | 85,Bill Belichick,NWE,2001 88 | 86,Jim Fassel,NYG,2001 89 | 87,Herm Edwards,NYJ,2001 90 | 88,Jon Gruden,OAK,2001 91 | 89,Andy Reid,PHI,2001 92 | 90,Bill Cowher,PIT,2001 93 | 91,Mike Riley,SDG,2001 94 | 92,Mike Holmgren,SEA,2001 95 | 93,Steve Mariucci,SFO,2001 96 | 94,Mike Martz,STL,2001 97 | 95,Tony Dungy,TAM,2001 98 | 96,Jeff Fisher,TEN,2001 99 | 97,Marty Schottenheimer,WAS,2001 100 | 98,Dave McGinnis,ARI,2002 101 | 99,Dan Reeves,ATL,2002 102 | 100,Brian Billick,BAL,2002 103 | 101,Gregg Williams,BUF,2002 104 | 102,John Fox,CAR,2002 105 | 103,Dick Jauron,CHI,2002 106 | 104,Dick LeBeau,CIN,2002 107 | 105,Butch Davis,CLE,2002 108 | 106,Dave Campo,DAL,2002 109 | 107,Mike Shanahan,DEN,2002 110 | 108,Marty Mornhinweg,DET,2002 111 | 109,Mike Sherman,GNB,2002 112 | 110,Dom Capers,HOU,2002 113 | 111,Tony Dungy,IND,2002 114 | 112,Tom Coughlin,JAX,2002 115 | 113,Dick Vermeil,KAN,2002 116 | 114,Dave Wannstedt,MIA,2002 117 | 115,Mike Tice,MIN,2002 118 | 116,Jim Haslett,NOR,2002 119 | 117,Bill Belichick,NWE,2002 120 | 118,Jim Fassel,NYG,2002 121 | 119,Herm Edwards,NYJ,2002 122 | 120,Bill Callahan,OAK,2002 123 | 121,Andy Reid,PHI,2002 124 | 122,Bill Cowher,PIT,2002 125 | 123,Marty Schottenheimer,SDG,2002 126 | 124,Mike Holmgren,SEA,2002 127 | 125,Steve Mariucci,SFO,2002 128 | 126,Mike Martz,STL,2002 129 | 127,Jon Gruden,TAM,2002 130 | 128,Jeff Fisher,TEN,2002 131 | 129,Steve Spurrier,WAS,2002 132 | 130,Dave McGinnis,ARI,2003 133 | 131,Wade Phillips,ATL,2003 134 | 132,Dan Reeves,ATL,2003 135 | 133,Brian Billick,BAL,2003 136 | 134,Gregg Williams,BUF,2003 137 | 135,John Fox,CAR,2003 138 | 136,Dick Jauron,CHI,2003 139 | 137,Marvin Lewis,CIN,2003 140 | 138,Butch Davis,CLE,2003 141 | 139,Bill Parcells,DAL,2003 142 | 140,Mike Shanahan,DEN,2003 143 | 141,Steve Mariucci,DET,2003 144 | 142,Mike Sherman,GNB,2003 145 | 143,Dom Capers,HOU,2003 146 | 144,Tony Dungy,IND,2003 147 | 145,Jack Del Rio,JAX,2003 148 | 146,Dick Vermeil,KAN,2003 149 | 147,Dave Wannstedt,MIA,2003 150 | 148,Mike Tice,MIN,2003 151 | 149,Jim Haslett,NOR,2003 152 | 150,Bill Belichick,NWE,2003 153 | 151,Jim Fassel,NYG,2003 154 | 152,Herm Edwards,NYJ,2003 155 | 153,Bill Callahan,OAK,2003 156 | 154,Andy Reid,PHI,2003 157 | 155,Bill Cowher,PIT,2003 158 | 156,Marty Schottenheimer,SDG,2003 159 | 157,Mike Holmgren,SEA,2003 160 | 158,Dennis Erickson,SFO,2003 161 | 159,Mike Martz,STL,2003 162 | 160,Jon Gruden,TAM,2003 163 | 161,Jeff Fisher,TEN,2003 164 | 162,Steve Spurrier,WAS,2003 165 | 163,Dennis Green,ARI,2004 166 | 164,Jim Mora,ATL,2004 167 | 165,Brian Billick,BAL,2004 168 | 166,Mike Mularkey,BUF,2004 169 | 167,John Fox,CAR,2004 170 | 168,Lovie Smith,CHI,2004 171 | 169,Marvin Lewis,CIN,2004 172 | 170,Butch Davis,CLE,2004 173 | 171,Terry Robiskie,CLE,2004 174 | 172,Bill Parcells,DAL,2004 175 | 173,Mike Shanahan,DEN,2004 176 | 174,Steve Mariucci,DET,2004 177 | 175,Mike Sherman,GNB,2004 178 | 176,Dom Capers,HOU,2004 179 | 177,Tony Dungy,IND,2004 180 | 178,Jack Del Rio,JAX,2004 181 | 179,Dick Vermeil,KAN,2004 182 | 180,Jim Bates,MIA,2004 183 | 181,Dave Wannstedt,MIA,2004 184 | 182,Mike Tice,MIN,2004 185 | 183,Jim Haslett,NOR,2004 186 | 184,Bill Belichick,NWE,2004 187 | 185,Tom Coughlin,NYG,2004 188 | 186,Herm Edwards,NYJ,2004 189 | 187,Norv Turner,OAK,2004 190 | 188,Andy Reid,PHI,2004 191 | 189,Bill Cowher,PIT,2004 192 | 190,Marty Schottenheimer,SDG,2004 193 | 191,Mike Holmgren,SEA,2004 194 | 192,Dennis Erickson,SFO,2004 195 | 193,Mike Martz,STL,2004 196 | 194,Jon Gruden,TAM,2004 197 | 195,Jeff Fisher,TEN,2004 198 | 196,Joe Gibbs,WAS,2004 199 | 197,Dennis Green,ARI,2005 200 | 198,Jim Mora,ATL,2005 201 | 199,Brian Billick,BAL,2005 202 | 200,Mike Mularkey,BUF,2005 203 | 201,John Fox,CAR,2005 204 | 202,Lovie Smith,CHI,2005 205 | 203,Marvin Lewis,CIN,2005 206 | 204,Romeo Crennel,CLE,2005 207 | 205,Bill Parcells,DAL,2005 208 | 206,Mike Shanahan,DEN,2005 209 | 207,Dick Jauron,DET,2005 210 | 208,Steve Mariucci,DET,2005 211 | 209,Mike Sherman,GNB,2005 212 | 210,Dom Capers,HOU,2005 213 | 211,Tony Dungy,IND,2005 214 | 212,Jack Del Rio,JAX,2005 215 | 213,Dick Vermeil,KAN,2005 216 | 214,Nick Saban,MIA,2005 217 | 215,Mike Tice,MIN,2005 218 | 216,Jim Haslett,NOR,2005 219 | 217,Bill Belichick,NWE,2005 220 | 218,Tom Coughlin,NYG,2005 221 | 219,Herm Edwards,NYJ,2005 222 | 220,Norv Turner,OAK,2005 223 | 221,Andy Reid,PHI,2005 224 | 222,Bill Cowher,PIT,2005 225 | 223,Marty Schottenheimer,SDG,2005 226 | 224,Mike Holmgren,SEA,2005 227 | 225,Mike Nolan,SFO,2005 228 | 226,Mike Martz,STL,2005 229 | 227,Joe Vitt,STL,2005 230 | 228,Jon Gruden,TAM,2005 231 | 229,Jeff Fisher,TEN,2005 232 | 230,Joe Gibbs,WAS,2005 233 | 231,Dennis Green,ARI,2006 234 | 232,Jim Mora,ATL,2006 235 | 233,Brian Billick,BAL,2006 236 | 234,Dick Jauron,BUF,2006 237 | 235,John Fox,CAR,2006 238 | 236,Lovie Smith,CHI,2006 239 | 237,Marvin Lewis,CIN,2006 240 | 238,Romeo Crennel,CLE,2006 241 | 239,Bill Parcells,DAL,2006 242 | 240,Mike Shanahan,DEN,2006 243 | 241,Rod Marinelli,DET,2006 244 | 242,Mike McCarthy,GNB,2006 245 | 243,Gary Kubiak,HOU,2006 246 | 244,Tony Dungy,IND,2006 247 | 245,Jack Del Rio,JAX,2006 248 | 246,Herm Edwards,KAN,2006 249 | 247,Nick Saban,MIA,2006 250 | 248,Brad Childress,MIN,2006 251 | 249,Sean Payton,NOR,2006 252 | 250,Bill Belichick,NWE,2006 253 | 251,Tom Coughlin,NYG,2006 254 | 252,Eric Mangini,NYJ,2006 255 | 253,Art Shell,OAK,2006 256 | 254,Andy Reid,PHI,2006 257 | 255,Bill Cowher,PIT,2006 258 | 256,Marty Schottenheimer,SDG,2006 259 | 257,Mike Holmgren,SEA,2006 260 | 258,Mike Nolan,SFO,2006 261 | 259,Scott Linehan,STL,2006 262 | 260,Jon Gruden,TAM,2006 263 | 261,Jeff Fisher,TEN,2006 264 | 262,Joe Gibbs,WAS,2006 265 | 263,Ken Whisenhunt,ARI,2007 266 | 264,Bobby Petrino,ATL,2007 267 | 265,Emmitt Thomas,ATL,2007 268 | 266,Brian Billick,BAL,2007 269 | 267,Dick Jauron,BUF,2007 270 | 268,John Fox,CAR,2007 271 | 269,Lovie Smith,CHI,2007 272 | 270,Marvin Lewis,CIN,2007 273 | 271,Romeo Crennel,CLE,2007 274 | 272,Wade Phillips,DAL,2007 275 | 273,Mike Shanahan,DEN,2007 276 | 274,Rod Marinelli,DET,2007 277 | 275,Mike McCarthy,GNB,2007 278 | 276,Gary Kubiak,HOU,2007 279 | 277,Tony Dungy,IND,2007 280 | 278,Jack Del Rio,JAX,2007 281 | 279,Herm Edwards,KAN,2007 282 | 280,Cam Cameron,MIA,2007 283 | 281,Brad Childress,MIN,2007 284 | 282,Sean Payton,NOR,2007 285 | 283,Bill Belichick,NWE,2007 286 | 284,Tom Coughlin,NYG,2007 287 | 285,Eric Mangini,NYJ,2007 288 | 286,Lane Kiffin,OAK,2007 289 | 287,Andy Reid,PHI,2007 290 | 288,Mike Tomlin,PIT,2007 291 | 289,Norv Turner,SDG,2007 292 | 290,Mike Holmgren,SEA,2007 293 | 291,Mike Nolan,SFO,2007 294 | 292,Scott Linehan,STL,2007 295 | 293,Jon Gruden,TAM,2007 296 | 294,Jeff Fisher,TEN,2007 297 | 295,Joe Gibbs,WAS,2007 298 | 296,Ken Whisenhunt,ARI,2008 299 | 297,Mike Smith,ATL,2008 300 | 298,John Harbaugh,BAL,2008 301 | 299,Dick Jauron,BUF,2008 302 | 300,John Fox,CAR,2008 303 | 301,Lovie Smith,CHI,2008 304 | 302,Marvin Lewis,CIN,2008 305 | 303,Romeo Crennel,CLE,2008 306 | 304,Wade Phillips,DAL,2008 307 | 305,Mike Shanahan,DEN,2008 308 | 306,Rod Marinelli,DET,2008 309 | 307,Mike McCarthy,GNB,2008 310 | 308,Gary Kubiak,HOU,2008 311 | 309,Tony Dungy,IND,2008 312 | 310,Jack Del Rio,JAX,2008 313 | 311,Herm Edwards,KAN,2008 314 | 312,Tony Sparano,MIA,2008 315 | 313,Brad Childress,MIN,2008 316 | 314,Sean Payton,NOR,2008 317 | 315,Bill Belichick,NWE,2008 318 | 316,Tom Coughlin,NYG,2008 319 | 317,Eric Mangini,NYJ,2008 320 | 318,Tom Cable,OAK,2008 321 | 319,Lane Kiffin,OAK,2008 322 | 320,Andy Reid,PHI,2008 323 | 321,Mike Tomlin,PIT,2008 324 | 322,Norv Turner,SDG,2008 325 | 323,Mike Holmgren,SEA,2008 326 | 324,Mike Nolan,SFO,2008 327 | 325,Mike Singletary,SFO,2008 328 | 326,Jim Haslett,STL,2008 329 | 327,Scott Linehan,STL,2008 330 | 328,Jon Gruden,TAM,2008 331 | 329,Jeff Fisher,TEN,2008 332 | 330,Jim Zorn,WAS,2008 333 | 331,Ken Whisenhunt,ARI,2009 334 | 332,Mike Smith,ATL,2009 335 | 333,John Harbaugh,BAL,2009 336 | 334,Perry Fewell,BUF,2009 337 | 335,Dick Jauron,BUF,2009 338 | 336,John Fox,CAR,2009 339 | 337,Lovie Smith,CHI,2009 340 | 338,Marvin Lewis,CIN,2009 341 | 339,Eric Mangini,CLE,2009 342 | 340,Wade Phillips,DAL,2009 343 | 341,Josh McDaniels,DEN,2009 344 | 342,Jim Schwartz,DET,2009 345 | 343,Mike McCarthy,GNB,2009 346 | 344,Gary Kubiak,HOU,2009 347 | 345,Jim Caldwell,IND,2009 348 | 346,Jack Del Rio,JAX,2009 349 | 347,Todd Haley,KAN,2009 350 | 348,Tony Sparano,MIA,2009 351 | 349,Brad Childress,MIN,2009 352 | 350,Sean Payton,NOR,2009 353 | 351,Bill Belichick,NWE,2009 354 | 352,Tom Coughlin,NYG,2009 355 | 353,Rex Ryan,NYJ,2009 356 | 354,Tom Cable,OAK,2009 357 | 355,Andy Reid,PHI,2009 358 | 356,Mike Tomlin,PIT,2009 359 | 357,Norv Turner,SDG,2009 360 | 358,Jim Mora,SEA,2009 361 | 359,Mike Singletary,SFO,2009 362 | 360,Steve Spagnuolo,STL,2009 363 | 361,Raheem Morris,TAM,2009 364 | 362,Jeff Fisher,TEN,2009 365 | 363,Jim Zorn,WAS,2009 366 | 364,Ken Whisenhunt,ARI,2010 367 | 365,Mike Smith,ATL,2010 368 | 366,John Harbaugh,BAL,2010 369 | 367,Chan Gailey,BUF,2010 370 | 368,John Fox,CAR,2010 371 | 369,Lovie Smith,CHI,2010 372 | 370,Marvin Lewis,CIN,2010 373 | 371,Eric Mangini,CLE,2010 374 | 372,Jason Garrett,DAL,2010 375 | 373,Wade Phillips,DAL,2010 376 | 374,Josh McDaniels,DEN,2010 377 | 375,Eric Studesville,DEN,2010 378 | 376,Jim Schwartz,DET,2010 379 | 377,Mike McCarthy,GNB,2010 380 | 378,Gary Kubiak,HOU,2010 381 | 379,Jim Caldwell,IND,2010 382 | 380,Jack Del Rio,JAX,2010 383 | 381,Todd Haley,KAN,2010 384 | 382,Tony Sparano,MIA,2010 385 | 383,Brad Childress,MIN,2010 386 | 384,Leslie Frazier,MIN,2010 387 | 385,Sean Payton,NOR,2010 388 | 386,Bill Belichick,NWE,2010 389 | 387,Tom Coughlin,NYG,2010 390 | 388,Rex Ryan,NYJ,2010 391 | 389,Tom Cable,OAK,2010 392 | 390,Andy Reid,PHI,2010 393 | 391,Mike Tomlin,PIT,2010 394 | 392,Norv Turner,SDG,2010 395 | 393,Pete Carroll,SEA,2010 396 | 394,Mike Singletary,SFO,2010 397 | 395,Jim Tomsula,SFO,2010 398 | 396,Steve Spagnuolo,STL,2010 399 | 397,Raheem Morris,TAM,2010 400 | 398,Jeff Fisher,TEN,2010 401 | 399,Mike Shanahan,WAS,2010 402 | 400,Ken Whisenhunt,ARI,2011 403 | 401,Mike Smith,ATL,2011 404 | 402,John Harbaugh,BAL,2011 405 | 403,Chan Gailey,BUF,2011 406 | 404,Ron Rivera,CAR,2011 407 | 405,Lovie Smith,CHI,2011 408 | 406,Marvin Lewis,CIN,2011 409 | 407,Pat Shurmur,CLE,2011 410 | 408,Jason Garrett,DAL,2011 411 | 409,John Fox,DEN,2011 412 | 410,Jim Schwartz,DET,2011 413 | 411,Mike McCarthy,GNB,2011 414 | 412,Gary Kubiak,HOU,2011 415 | 413,Jim Caldwell,IND,2011 416 | 414,Jack Del Rio,JAX,2011 417 | 415,Mel Tucker,JAX,2011 418 | 416,Romeo Crennel,KAN,2011 419 | 417,Todd Haley,KAN,2011 420 | 418,Todd Bowles,MIA,2011 421 | 419,Tony Sparano,MIA,2011 422 | 420,Leslie Frazier,MIN,2011 423 | 421,Sean Payton,NOR,2011 424 | 422,Bill Belichick,NWE,2011 425 | 423,Tom Coughlin,NYG,2011 426 | 424,Rex Ryan,NYJ,2011 427 | 425,Hue Jackson,OAK,2011 428 | 426,Andy Reid,PHI,2011 429 | 427,Mike Tomlin,PIT,2011 430 | 428,Norv Turner,SDG,2011 431 | 429,Pete Carroll,SEA,2011 432 | 430,Jim Harbaugh,SFO,2011 433 | 431,Steve Spagnuolo,STL,2011 434 | 432,Raheem Morris,TAM,2011 435 | 433,Mike Munchak,TEN,2011 436 | 434,Mike Shanahan,WAS,2011 437 | 435,Ken Whisenhunt,ARI,2012 438 | 436,Mike Smith,ATL,2012 439 | 437,John Harbaugh,BAL,2012 440 | 438,Chan Gailey,BUF,2012 441 | 439,Ron Rivera,CAR,2012 442 | 440,Lovie Smith,CHI,2012 443 | 441,Marvin Lewis,CIN,2012 444 | 442,Pat Shurmur,CLE,2012 445 | 443,Jason Garrett,DAL,2012 446 | 444,John Fox,DEN,2012 447 | 445,Jim Schwartz,DET,2012 448 | 446,Mike McCarthy,GNB,2012 449 | 447,Gary Kubiak,HOU,2012 450 | 448,Chuck Pagano,IND,2012 451 | 449,Mike Mularkey,JAX,2012 452 | 450,Romeo Crennel,KAN,2012 453 | 451,Joe Philbin,MIA,2012 454 | 452,Leslie Frazier,MIN,2012 455 | 453,Aaron Kromer,NOR,2012 456 | 454,Joe Vitt,NOR,2012 457 | 455,Bill Belichick,NWE,2012 458 | 456,Tom Coughlin,NYG,2012 459 | 457,Rex Ryan,NYJ,2012 460 | 458,Dennis Allen,OAK,2012 461 | 459,Andy Reid,PHI,2012 462 | 460,Mike Tomlin,PIT,2012 463 | 461,Norv Turner,SDG,2012 464 | 462,Pete Carroll,SEA,2012 465 | 463,Jim Harbaugh,SFO,2012 466 | 464,Jeff Fisher,STL,2012 467 | 465,Greg Schiano,TAM,2012 468 | 466,Mike Munchak,TEN,2012 469 | 467,Mike Shanahan,WAS,2012 470 | 468,Bruce Arians,ARI,2013 471 | 469,Mike Smith,ATL,2013 472 | 470,John Harbaugh,BAL,2013 473 | 471,Doug Marrone,BUF,2013 474 | 472,Ron Rivera,CAR,2013 475 | 473,Marc Trestman,CHI,2013 476 | 474,Marvin Lewis,CIN,2013 477 | 475,Rob Chudzinski,CLE,2013 478 | 476,Jason Garrett,DAL,2013 479 | 477,John Fox,DEN,2013 480 | 478,Jim Schwartz,DET,2013 481 | 479,Mike McCarthy,GNB,2013 482 | 480,Gary Kubiak,HOU,2013 483 | 481,Wade Phillips,HOU,2013 484 | 482,Chuck Pagano,IND,2013 485 | 483,Gus Bradley,JAX,2013 486 | 484,Andy Reid,KAN,2013 487 | 485,Joe Philbin,MIA,2013 488 | 486,Leslie Frazier,MIN,2013 489 | 487,Sean Payton,NOR,2013 490 | 488,Bill Belichick,NWE,2013 491 | 489,Tom Coughlin,NYG,2013 492 | 490,Rex Ryan,NYJ,2013 493 | 491,Dennis Allen,OAK,2013 494 | 492,Chip Kelly,PHI,2013 495 | 493,Mike Tomlin,PIT,2013 496 | 494,Mike McCoy,SDG,2013 497 | 495,Pete Carroll,SEA,2013 498 | 496,Jim Harbaugh,SFO,2013 499 | 497,Jeff Fisher,STL,2013 500 | 498,Greg Schiano,TAM,2013 501 | 499,Mike Munchak,TEN,2013 502 | 500,Mike Shanahan,WAS,2013 503 | 501,Bruce Arians,ARI,2014 504 | 502,Mike Smith,ATL,2014 505 | 503,John Harbaugh,BAL,2014 506 | 504,Doug Marrone,BUF,2014 507 | 505,Ron Rivera,CAR,2014 508 | 506,Marc Trestman,CHI,2014 509 | 507,Marvin Lewis,CIN,2014 510 | 508,Mike Pettine,CLE,2014 511 | 509,Jason Garrett,DAL,2014 512 | 510,John Fox,DEN,2014 513 | 511,Jim Caldwell,DET,2014 514 | 512,Mike McCarthy,GNB,2014 515 | 513,Bill O'Brien,HOU,2014 516 | 514,Chuck Pagano,IND,2014 517 | 515,Gus Bradley,JAX,2014 518 | 516,Andy Reid,KAN,2014 519 | 517,Joe Philbin,MIA,2014 520 | 518,Mike Zimmer,MIN,2014 521 | 519,Sean Payton,NOR,2014 522 | 520,Bill Belichick,NWE,2014 523 | 521,Tom Coughlin,NYG,2014 524 | 522,Rex Ryan,NYJ,2014 525 | 523,Dennis Allen,OAK,2014 526 | 524,Tony Sparano,OAK,2014 527 | 525,Chip Kelly,PHI,2014 528 | 526,Mike Tomlin,PIT,2014 529 | 527,Mike McCoy,SDG,2014 530 | 528,Pete Carroll,SEA,2014 531 | 529,Jim Harbaugh,SFO,2014 532 | 530,Jeff Fisher,STL,2014 533 | 531,Lovie Smith,TAM,2014 534 | 532,Ken Whisenhunt,TEN,2014 535 | 533,Jay Gruden,WAS,2014 536 | 534,Bruce Arians,ARI,2015 537 | 535,Dan Quinn,ATL,2015 538 | 536,John Harbaugh,BAL,2015 539 | 537,Rex Ryan,BUF,2015 540 | 538,Ron Rivera,CAR,2015 541 | 539,John Fox,CHI,2015 542 | 540,Marvin Lewis,CIN,2015 543 | 541,Mike Pettine,CLE,2015 544 | 542,Jason Garrett,DAL,2015 545 | 543,Gary Kubiak,DEN,2015 546 | 544,Jim Caldwell,DET,2015 547 | 545,Mike McCarthy,GNB,2015 548 | 546,Bill O'Brien,HOU,2015 549 | 547,Chuck Pagano,IND,2015 550 | 548,Gus Bradley,JAX,2015 551 | 549,Andy Reid,KAN,2015 552 | 550,Dan Campbell,MIA,2015 553 | 551,Joe Philbin,MIA,2015 554 | 552,Mike Zimmer,MIN,2015 555 | 553,Sean Payton,NOR,2015 556 | 554,Bill Belichick,NWE,2015 557 | 555,Tom Coughlin,NYG,2015 558 | 556,Todd Bowles,NYJ,2015 559 | 557,Jack Del Rio,OAK,2015 560 | 558,Chip Kelly,PHI,2015 561 | 559,Pat Shurmur,PHI,2015 562 | 560,Mike Tomlin,PIT,2015 563 | 561,Mike McCoy,SDG,2015 564 | 562,Pete Carroll,SEA,2015 565 | 563,Jim Tomsula,SFO,2015 566 | 564,Jeff Fisher,STL,2015 567 | 565,Lovie Smith,TAM,2015 568 | 566,Ken Whisenhunt,TEN,2015 569 | 567,Mike Mularkey,TEN,2015 570 | 568,Jay Gruden,WAS,2015 571 | 569,Bruce Arians,ARI,2016 572 | 570,Dan Quinn,ATL,2016 573 | 571,John Harbaugh,BAL,2016 574 | 572,Anthony Lynn,BUF,2016 575 | 573,Rex Ryan,BUF,2016 576 | 574,Ron Rivera,CAR,2016 577 | 575,John Fox,CHI,2016 578 | 576,Marvin Lewis,CIN,2016 579 | 577,Hue Jackson,CLE,2016 580 | 578,Jason Garrett,DAL,2016 581 | 579,Gary Kubiak,DEN,2016 582 | 580,Jim Caldwell,DET,2016 583 | 581,Mike McCarthy,GNB,2016 584 | 582,Bill O'Brien,HOU,2016 585 | 583,Chuck Pagano,IND,2016 586 | 584,Doug Marrone,JAX,2016 587 | 585,Gus Bradley,JAX,2016 588 | 586,Andy Reid,KAN,2016 589 | 587,John Fassel,LAR,2016 590 | 588,Jeff Fisher,LAR,2016 591 | 589,Adam Gase,MIA,2016 592 | 590,Mike Zimmer,MIN,2016 593 | 591,Sean Payton,NOR,2016 594 | 592,Bill Belichick,NWE,2016 595 | 593,Ben McAdoo,NYG,2016 596 | 594,Todd Bowles,NYJ,2016 597 | 595,Jack Del Rio,OAK,2016 598 | 596,Doug Pederson,PHI,2016 599 | 597,Mike Tomlin,PIT,2016 600 | 598,Mike McCoy,SDG,2016 601 | 599,Pete Carroll,SEA,2016 602 | 600,Chip Kelly,SFO,2016 603 | 601,Dirk Koetter,TAM,2016 604 | 602,Mike Mularkey,TEN,2016 605 | 603,Jay Gruden,WAS,2016 606 | 604,Bruce Arians,ARI,2017 607 | 605,Dan Quinn,ATL,2017 608 | 606,John Harbaugh,BAL,2017 609 | 607,Sean McDermott,BUF,2017 610 | 608,Ron Rivera,CAR,2017 611 | 609,John Fox,CHI,2017 612 | 610,Marvin Lewis,CIN,2017 613 | 611,Hue Jackson,CLE,2017 614 | 612,Jason Garrett,DAL,2017 615 | 613,Vance Joseph,DEN,2017 616 | 614,Jim Caldwell,DET,2017 617 | 615,Mike McCarthy,GNB,2017 618 | 616,Bill O'Brien,HOU,2017 619 | 617,Chuck Pagano,IND,2017 620 | 618,Doug Marrone,JAX,2017 621 | 619,Andy Reid,KAN,2017 622 | 620,Anthony Lynn,LAC,2017 623 | 621,Sean McVay,LAR,2017 624 | 622,Adam Gase,MIA,2017 625 | 623,Mike Zimmer,MIN,2017 626 | 624,Sean Payton,NOR,2017 627 | 625,Bill Belichick,NWE,2017 628 | 626,Ben McAdoo,NYG,2017 629 | 627,Steve Spagnuolo,NYG,2017 630 | 628,Todd Bowles,NYJ,2017 631 | 629,Jack Del Rio,OAK,2017 632 | 630,Doug Pederson,PHI,2017 633 | 631,Mike Tomlin,PIT,2017 634 | 632,Pete Carroll,SEA,2017 635 | 633,Kyle Shanahan,SFO,2017 636 | 634,Dirk Koetter,TAM,2017 637 | 635,Mike Mularkey,TEN,2017 638 | 636,Jay Gruden,WAS,2017 639 | 637,Steve Wilks,ARI,2018 640 | 638,Dan Quinn,ATL,2018 641 | 639,John Harbaugh,BAL,2018 642 | 640,Sean McDermott,BUF,2018 643 | 641,Ron Rivera,CAR,2018 644 | 642,Matt Nagy,CHI,2018 645 | 643,Marvin Lewis,CIN,2018 646 | 644,Hue Jackson,CLE,2018 647 | 645,Gregg Williams,CLE,2018 648 | 646,Jason Garrett,DAL,2018 649 | 647,Vance Joseph,DEN,2018 650 | 648,Matt Patricia,DET,2018 651 | 649,Mike McCarthy,GNB,2018 652 | 650,Joe Philbin,GNB,2018 653 | 651,Bill O'Brien,HOU,2018 654 | 652,Frank Reich,IND,2018 655 | 653,Doug Marrone,JAX,2018 656 | 654,Andy Reid,KAN,2018 657 | 655,Anthony Lynn,LAC,2018 658 | 656,Sean McVay,LAR,2018 659 | 657,Adam Gase,MIA,2018 660 | 658,Mike Zimmer,MIN,2018 661 | 659,Sean Payton,NOR,2018 662 | 660,Bill Belichick,NWE,2018 663 | 661,Pat Shurmur,NYG,2018 664 | 662,Todd Bowles,NYJ,2018 665 | 663,Jon Gruden,OAK,2018 666 | 664,Doug Pederson,PHI,2018 667 | 665,Mike Tomlin,PIT,2018 668 | 666,Pete Carroll,SEA,2018 669 | 667,Kyle Shanahan,SFO,2018 670 | 668,Dirk Koetter,TAM,2018 671 | 669,Mike Vrabel,TEN,2018 672 | 670,Jay Gruden,WAS,2018 673 | 671,Kliff Kingsbury,ARI,2019 674 | 672,Dan Quinn,ATL,2019 675 | 673,John Harbaugh,BAL,2019 676 | 674,Sean McDermott,BUF,2019 677 | 675,Perry Fewell,CAR,2019 678 | 676,Ron Rivera,CAR,2019 679 | 677,Matt Nagy,CHI,2019 680 | 678,Zac Taylor,CIN,2019 681 | 679,Freddie Kitchens,CLE,2019 682 | 680,Jason Garrett,DAL,2019 683 | 681,Vic Fangio,DEN,2019 684 | 682,Matt Patricia,DET,2019 685 | 683,Matt LaFleur,GNB,2019 686 | 684,Bill O'Brien,HOU,2019 687 | 685,Frank Reich,IND,2019 688 | 686,Doug Marrone,JAX,2019 689 | 687,Andy Reid,KAN,2019 690 | 688,Anthony Lynn,LAC,2019 691 | 689,Sean McVay,LAR,2019 692 | 690,Brian Flores,MIA,2019 693 | 691,Mike Zimmer,MIN,2019 694 | 692,Sean Payton,NOR,2019 695 | 693,Bill Belichick,NWE,2019 696 | 694,Pat Shurmur,NYG,2019 697 | 695,Adam Gase,NYJ,2019 698 | 696,Jon Gruden,OAK,2019 699 | 697,Doug Pederson,PHI,2019 700 | 698,Mike Tomlin,PIT,2019 701 | 699,Pete Carroll,SEA,2019 702 | 700,Kyle Shanahan,SFO,2019 703 | 701,Bruce Arians,TAM,2019 704 | 702,Mike Vrabel,TEN,2019 705 | 703,Bill Callahan,WAS,2019 706 | 704,Jay Gruden,WAS,2019 707 | 705,Kliff Kingsbury,ARI,2020 708 | 706,Raheem Morris,ATL,2020 709 | 707,Dan Quinn,ATL,2020 710 | 708,John Harbaugh,BAL,2020 711 | 709,Sean McDermott,BUF,2020 712 | 710,Matt Rhule,CAR,2020 713 | 711,Matt Nagy,CHI,2020 714 | 712,Zac Taylor,CIN,2020 715 | 713,Kevin Stefanski,CLE,2020 716 | 714,Mike McCarthy,DAL,2020 717 | 715,Vic Fangio,DEN,2020 718 | 716,Darrell Bevell,DET,2020 719 | 717,Matt Patricia,DET,2020 720 | 718,Matt LaFleur,GNB,2020 721 | 719,Bill O'Brien,HOU,2020 722 | 720,Romeo Crennel,HOU,2020 723 | 721,Frank Reich,IND,2020 724 | 722,Doug Marrone,JAX,2020 725 | 723,Andy Reid,KAN,2020 726 | 724,Anthony Lynn,LAC,2020 727 | 725,Sean McVay,LAR,2020 728 | 726,Jon Gruden,LVR,2020 729 | 727,Brian Flores,MIA,2020 730 | 728,Mike Zimmer,MIN,2020 731 | 729,Sean Payton,NOR,2020 732 | 730,Bill Belichick,NWE,2020 733 | 731,Joe Judge,NYG,2020 734 | 732,Adam Gase,NYJ,2020 735 | 733,Doug Pederson,PHI,2020 736 | 734,Mike Tomlin,PIT,2020 737 | 735,Pete Carroll,SEA,2020 738 | 736,Kyle Shanahan,SFO,2020 739 | 737,Bruce Arians,TAM,2020 740 | 738,Mike Vrabel,TEN,2020 741 | 739,Ron Rivera,WAS,2020 742 | -------------------------------------------------------------------------------- /data/qbr.csv: -------------------------------------------------------------------------------- 1 | ,names,yr,qbr,paa,plays,epa,pas,run,sack,pen,raw 2 | 0,Peyton Manning,2006,86.4,85.5,624,108.8,96.0,6.8,-5.0,1.1,87.4 3 | 1,Tom Brady,2006,68.6,30.9,610,57.9,38.8,4.3,-12.0,2.8,67.2 4 | 2,Philip Rivers,2006,67.4,28.2,542,53.0,43.1,-0.9,-10.4,0.3,67.6 5 | 3,Carson Palmer,2006,67.1,29.9,623,58.3,43.2,-0.3,-12.9,2.5,66.4 6 | 4,Drew Brees,2006,66.7,36.7,631,64.2,61.0,-5.2,-7.7,0.6,69.5 7 | 5,Steve McNair,2006,66.0,27.2,548,51.8,38.2,8.2,-6.0,-0.6,66.9 8 | 6,Chad Pennington,2006,64.2,20.8,587,47.1,27.9,3.0,-10.9,5.2,62.3 9 | 7,Tony Romo,2006,63.5,22.0,414,40.9,34.0,-2.9,-9.2,0.5,67.9 10 | 8,Donovan McNabb,2006,62.1,17.2,380,34.9,17.1,9.1,-9.2,-0.4,65.5 11 | 9,Matt Leinart,2006,60.5,8.7,447,27.0,17.0,-0.3,-7.9,2.4,56.8 12 | 10,Marc Bulger,2006,59.4,14.8,717,49.3,22.7,0.8,-22.7,3.0,57.3 13 | 11,Ben Roethlisberger,2006,58.0,8.8,565,35.4,14.9,0.3,-18.5,1.7,55.5 14 | 12,Mike Vick,2006,58.0,20.7,575,48.2,-6.5,32.3,-20.1,2.3,62.5 15 | 13,Matt Hasselbeck,2006,56.9,5.3,454,28.4,8.1,5.4,-13.8,1.1,54.1 16 | 14,Vince Young,2006,56.1,13.4,485,34.8,-3.2,27.2,-7.9,2.9,59.6 17 | 15,Joey Harrington,2006,51.0,-4.6,443,19.5,12.1,-1.8,-7.3,1.9,46.4 18 | 16,J.P. Losman,2006,49.5,-5.0,551,24.0,-1.4,0.2,-22.9,2.3,46.8 19 | 17,Jake Plummer,2006,49.2,-3.2,375,17.6,7.8,0.7,-8.0,1.1,47.0 20 | 18,Rex Grossman,2006,48.9,-3.2,568,25.4,6.7,1.8,-10.6,6.2,48.0 21 | 19,Eli Manning,2006,48.6,4.0,606,33.6,22.8,-1.9,-10.6,2.1,52.3 22 | 20,David Carr,2006,45.8,-5.6,556,23.1,2.7,3.7,-16.2,0.5,46.4 23 | 21,Brett Favre,2006,45.5,-12.2,687,23.4,19.1,-4.0,-7.4,1.0,43.8 24 | 22,Jon Kitna,2006,45.3,-17.7,744,23.1,-2.5,-0.6,-25.6,0.6,41.7 25 | 23,Alex Smith,2006,44.4,-13.5,551,14.9,4.0,0.0,-12.2,-1.2,41.4 26 | 24,Jake Delhomme,2006,43.0,-4.5,484,22.3,10.8,0.7,-9.7,1.1,46.7 27 | 25,Charlie Frye,2006,42.1,-13.8,509,13.9,-12.1,4.7,-19.7,1.7,40.5 28 | 26,Brad Johnson,2006,39.7,-17.2,530,12.8,-2.9,1.4,-13.0,1.3,38.7 29 | 27,Bruce Gradkowski,2006,32.0,-17.8,414,5.7,-1.9,-2.0,-9.3,0.4,35.2 30 | 28,Andrew Walter,2006,23.0,-32.8,372,-8.9,-21.9,-4.0,-18.4,-1.4,22.3 31 | 0,Tom Brady,2007,87.0,96.2,667,109.2,91.7,7.8,-8.1,1.6,88.5 32 | 1,David Garrard,2007,80.9,46.9,411,65.5,45.4,10.6,-8.6,0.9,83.4 33 | 2,Peyton Manning,2007,76.9,48.4,580,74.0,64.2,-0.7,-7.6,2.9,76.5 34 | 3,Tony Romo,2007,76.9,56.1,611,87.7,70.9,5.6,-11.3,-0.1,78.6 35 | 4,Brett Favre,2007,70.8,37.2,600,66.1,58.9,-3.0,-6.6,3.5,70.6 36 | 5,Ben Roethlisberger,2007,70.5,38.7,496,61.4,30.9,9.1,-21.2,0.2,75.1 37 | 6,Kurt Warner,2007,67.9,41.3,512,64.8,57.3,-2.5,-8.4,1.6,75.8 38 | 7,Drew Brees,2007,64.6,39.7,718,66.0,56.7,0.7,-6.4,2.1,68.6 39 | 8,Jay Cutler,2007,64.3,22.1,551,47.0,34.2,-0.2,-11.1,1.8,63.8 40 | 9,Derek Anderson,2007,62.6,29.7,596,58.3,49.8,3.1,-6.0,-0.7,66.9 41 | 10,Matt Schaub,2007,62.6,16.7,328,32.5,25.3,-0.2,-6.8,0.6,67.2 42 | 11,Carson Palmer,2007,62.5,26.4,647,56.9,47.6,-1.6,-9.2,1.7,64.0 43 | 12,Jason Campbell,2007,59.8,17.9,494,44.2,30.8,4.3,-9.4,-0.3,62.6 44 | 13,Jeff Garcia,2007,59.4,14.7,388,32.6,23.8,0.7,-8.4,-0.2,63.1 45 | 14,Philip Rivers,2007,54.5,4.3,540,31.0,24.1,-4.0,-9.6,1.3,52.8 46 | 15,Matt Hasselbeck,2007,54.4,18.9,653,51.7,40.3,-3.5,-14.1,0.8,60.1 47 | 16,Donovan McNabb,2007,54.0,10.5,580,41.6,16.6,5.1,-18.3,1.7,56.3 48 | 17,Eli Manning,2007,52.0,8.1,620,40.9,21.5,3.9,-11.5,4.0,54.6 49 | 18,Tarvaris Jackson,2007,50.6,2.2,375,20.6,8.0,5.7,-7.2,-0.2,52.0 50 | 19,Jon Kitna,2007,49.0,-3.4,683,29.2,11.3,-3.5,-17.8,3.6,48.3 51 | 20,Kyle Boller,2007,47.4,3.5,331,19.1,5.4,2.8,-10.8,0.2,53.8 52 | 21,Vince Young,2007,46.9,1.2,503,29.1,12.5,3.9,-11.2,1.6,50.8 53 | 22,Cleo Lemon,2007,45.5,2.4,376,18.3,5.0,4.8,-8.0,0.5,52.3 54 | 23,Chad Pennington,2007,45.4,-0.8,322,17.4,8.4,-3.5,-10.4,2.1,49.1 55 | 24,Joey Harrington,2007,43.3,-3.4,414,18.7,7.4,-2.8,-13.0,1.1,47.1 56 | 25,Marc Bulger,2007,42.4,-5.3,457,19.3,3.9,-0.4,-14.4,1.4,45.9 57 | 26,Damon Huard,2007,38.5,-12.3,405,11.5,-0.5,-3.0,-14.3,0.7,39.4 58 | 0,Peyton Manning,2008,76.5,56.5,623,86.4,81.4,-2.5,-6.2,1.3,78.3 59 | 1,Jeff Garcia,2008,69.3,28.3,439,52.2,33.4,10.5,-8.5,-0.2,71.3 60 | 2,Matt Ryan,2008,68.8,28.9,526,56.6,49.9,-3.6,-5.6,4.8,68.5 61 | 3,Kurt Warner,2008,68.5,39.8,670,67.1,59.6,-2.8,-10.4,-0.1,69.8 62 | 4,Matt Schaub,2008,67.3,19.6,453,44.0,28.9,5.2,-7.9,1.9,64.8 63 | 5,Eli Manning,2008,66.9,21.8,568,53.2,36.7,0.9,-11.5,4.0,63.2 64 | 6,Chad Pennington,2008,65.7,32.3,549,63.8,50.3,3.0,-9.7,0.9,69.7 65 | 7,Drew Brees,2008,65.7,32.6,701,68.8,64.4,-2.5,-6.5,0.5,65.9 66 | 8,Matt Cassel,2008,63.4,28.6,637,59.0,27.9,12.2,-18.0,0.9,65.3 67 | 9,Philip Rivers,2008,63.2,22.5,569,54.2,35.0,5.5,-11.3,2.4,63.6 68 | 10,Aaron Rodgers,2008,62.9,27.4,654,63.1,39.6,10.1,-14.6,-1.2,64.4 69 | 11,Shaun Hill,2008,62.1,11.7,354,30.1,15.3,4.4,-8.5,1.8,61.5 70 | 12,Jay Cutler,2008,61.9,31.9,696,68.6,65.4,-1.9,-3.6,1.5,65.7 71 | 13,Tony Romo,2008,60.8,9.3,522,36.8,36.2,-5.9,-7.9,-1.4,56.3 72 | 14,David Garrard,2008,58.7,16.6,681,53.8,19.5,16.1,-16.9,1.4,58.5 73 | 15,Jason Campbell,2008,58.5,10.2,614,45.8,13.6,14.4,-16.6,1.2,55.8 74 | 16,Kerry Collins,2008,57.4,11.2,461,38.3,31.2,2.0,-3.3,1.9,58.5 75 | 17,Jake Delhomme,2008,55.5,8.7,490,35.6,27.2,-0.2,-8.3,0.2,56.2 76 | 18,Donovan McNabb,2008,54.9,5.4,654,44.6,36.0,-3.0,-11.2,0.5,52.9 77 | 19,Ryan Fitzpatrick,2008,52.5,0.6,489,28.3,4.4,6.8,-14.4,2.8,50.4 78 | 20,Tyler Thigpen,2008,50.7,4.0,527,32.4,13.8,8.3,-10.3,0.0,52.7 79 | 21,Kyle Orton,2008,48.2,-2.3,544,30.5,17.4,-1.2,-13.2,1.1,48.5 80 | 22,Joe Flacco,2008,47.1,-11.5,555,22.3,5.0,-1.6,-15.9,3.0,42.7 81 | 23,Ben Roethlisberger,2008,47.1,-7.1,578,30.2,9.5,-2.6,-21.9,1.3,45.7 82 | 24,Derek Anderson,2008,44.4,-9.8,346,12.3,13.2,-6.4,-5.4,0.0,40.1 83 | 25,Brett Favre,2008,43.4,-6.9,618,29.4,21.6,-6.4,-12.7,1.5,46.0 84 | 26,Trent Edwards,2008,43.1,-2.1,458,25.9,7.8,5.6,-10.5,2.0,48.4 85 | 27,Gus Frerotte,2008,36.1,-13.7,367,10.1,-5.9,0.6,-12.5,3.0,37.1 86 | 28,Marc Bulger,2008,36.1,-20.2,535,11.9,-4.0,0.2,-14.6,1.2,37.0 87 | 29,JaMarcus Russell,2008,29.2,-23.4,453,5.4,-10.9,2.8,-12.1,1.3,32.5 88 | 0,Drew Brees,2009,82.0,66.3,582,103.5,88.4,4.7,-7.6,2.8,83.4 89 | 1,Peyton Manning,2009,80.7,65.3,629,107.3,100.4,-1.4,-4.9,3.3,81.3 90 | 2,Philip Rivers,2009,77.2,49.1,578,89.2,72.8,1.1,-10.7,4.6,76.9 91 | 3,Brett Favre,2009,74.4,49.1,614,89.2,72.7,-0.2,-15.8,0.9,75.6 92 | 4,Tom Brady,2009,74.1,45.8,645,88.8,77.9,1.2,-7.7,2.1,73.2 93 | 5,Matt Schaub,2009,72.9,48.5,663,94.8,86.6,-1.5,-9.3,0.4,73.8 94 | 6,Eli Manning,2009,71.7,34.8,587,67.1,55.5,-0.8,-10.6,1.8,69.8 95 | 7,Vince Young,2009,69.6,18.9,323,43.4,30.5,9.6,-3.4,-0.2,69.5 96 | 8,Aaron Rodgers,2009,69.1,42.6,685,87.6,44.1,18.9,-21.8,2.8,70.7 97 | 9,Ben Roethlisberger,2009,69.0,34.7,613,84.1,52.6,4.3,-25.0,2.2,69.0 98 | 10,Matt Ryan,2009,67.7,22.7,523,60.2,49.2,0.3,-7.5,3.2,64.9 99 | 11,Kurt Warner,2009,66.2,31.0,579,66.0,57.8,-2.7,-8.8,2.1,68.1 100 | 12,Tony Romo,2009,65.5,27.3,647,73.1,57.4,1.4,-13.8,0.5,64.5 101 | 13,Carson Palmer,2009,58.6,15.7,575,61.9,43.2,4.4,-14.4,-0.1,59.5 102 | 14,Joe Flacco,2009,58.5,16.8,599,62.2,45.7,-1.6,-13.6,4.5,59.8 103 | 15,Donovan McNabb,2009,58.2,10.8,538,50.2,26.3,6.3,-15.1,2.5,57.0 104 | 16,Kyle Orton,2009,56.9,13.8,628,60.2,46.5,0.5,-10.2,3.0,57.7 105 | 17,Jason Campbell,2009,55.2,8.3,622,54.5,23.5,10.0,-19.1,1.8,54.7 106 | 18,David Garrard,2009,54.4,10.1,649,56.2,31.6,8.5,-14.6,1.5,55.5 107 | 19,Chad Henne,2009,53.1,4.1,516,42.9,32.2,-0.4,-10.7,0.5,52.8 108 | 20,Jay Cutler,2009,49.9,0.5,661,50.8,31.0,6.6,-12.6,0.6,50.3 109 | 21,Alex Smith,2009,41.8,-7.1,445,28.9,17.5,0.5,-9.7,1.2,44.4 110 | 22,Jake Delhomme,2009,37.3,-14.2,374,16.3,3.7,2.0,-11.2,-0.6,36.9 111 | 23,Matthew Stafford,2009,37.1,-16.6,441,18.9,2.4,3.6,-11.3,1.7,37.0 112 | 24,Josh Freeman,2009,37.0,-13.2,356,15.4,4.1,5.6,-6.6,-0.9,37.2 113 | 25,Matt Hasselbeck,2009,34.0,-25.0,573,20.3,4.2,1.0,-13.6,1.5,35.0 114 | 26,Mark Sanchez,2009,32.8,-20.0,452,18.5,0.5,5.7,-11.8,0.6,34.8 115 | 27,Matt Cassel,2009,29.7,-39.4,626,14.4,6.7,-11.6,-16.1,3.2,29.1 116 | 0,Tom Brady,2010,79.1,52.0,574,79.1,66.7,0.8,-8.9,2.8,78.3 117 | 1,Peyton Manning,2010,71.6,60.3,749,108.8,96.3,1.3,-6.3,4.9,75.7 118 | 2,Matt Ryan,2010,71.2,39.6,668,83.8,64.1,2.2,-11.2,6.4,69.8 119 | 3,Drew Brees,2010,70.8,45.0,726,91.9,80.3,-1.2,-12.0,0.8,70.6 120 | 4,Mike Vick,2010,70.4,32.8,523,63.1,26.6,20.1,-14.8,1.7,70.8 121 | 5,Aaron Rodgers,2010,69.6,34.5,604,76.1,49.9,10.3,-14.7,1.2,69.2 122 | 6,Josh Freeman,2010,69.5,36.5,601,76.7,46.0,16.5,-13.4,0.8,70.3 123 | 7,Ben Roethlisberger,2010,67.4,24.8,459,52.1,30.9,5.6,-13.9,1.7,68.2 124 | 8,Philip Rivers,2010,66.9,34.5,642,73.2,61.0,-3.3,-15.6,-0.1,68.1 125 | 9,David Garrard,2010,63.1,24.2,482,56.4,28.6,12.0,-14.7,1.1,67.0 126 | 10,Matt Schaub,2010,61.0,24.3,653,62.4,45.5,-0.8,-14.4,3.3,62.9 127 | 11,Joe Flacco,2010,59.1,17.9,617,63.1,36.7,0.8,-20.1,5.5,60.1 128 | 12,Eli Manning,2010,57.7,19.5,613,54.7,44.0,1.9,-6.3,2.4,61.1 129 | 13,Matt Cassel,2010,55.8,15.5,534,48.2,35.9,-0.2,-11.1,1.4,60.1 130 | 14,Kerry Collins,2010,55.4,8.7,325,26.5,20.7,-2.1,-4.5,3.3,59.4 131 | 15,Carson Palmer,2010,55.1,8.8,681,54.4,45.3,-3.2,-10.1,2.1,54.6 132 | 16,Kyle Orton,2010,53.8,5.4,586,40.7,22.0,3.0,-13.9,1.7,53.3 133 | 17,Shaun Hill,2010,53.2,2.0,484,35.8,25.9,2.4,-7.5,0.0,51.4 134 | 18,Jon Kitna,2010,52.9,6.2,387,29.3,21.5,1.6,-6.3,-0.1,55.7 135 | 19,Matt Hasselbeck,2010,52.3,0.5,515,33.9,18.7,3.4,-12.4,-0.6,50.3 136 | 20,Ryan Fitzpatrick,2010,52.3,1.0,535,37.5,26.6,0.4,-10.7,-0.2,50.7 137 | 21,Jay Cutler,2010,51.4,1.7,560,42.8,5.3,11.4,-25.5,0.7,51.1 138 | 22,Mark Sanchez,2010,51.3,2.7,584,46.3,25.1,7.5,-12.2,1.5,51.6 139 | 23,Jason Campbell,2010,48.8,-1.0,441,28.8,7.3,7.4,-14.2,-0.1,49.2 140 | 24,Donovan McNabb,2010,47.8,-2.9,567,37.2,16.0,5.2,-16.5,-0.5,48.2 141 | 25,Sam Bradford,2010,46.9,-5.9,697,43.8,28.7,-1.1,-13.2,3.0,47.0 142 | 26,Chad Henne,2010,45.7,-5.0,574,38.7,27.1,-3.6,-13.6,1.6,46.9 143 | 27,Alex Smith,2010,43.8,-6.5,411,21.5,11.3,-0.5,-8.2,2.5,44.4 144 | 28,Brett Favre,2010,38.4,-18.5,429,14.1,6.4,-4.7,-10.4,2.1,35.2 145 | 29,Derek Anderson,2010,32.7,-21.4,376,6.9,-3.0,-0.2,-9.0,1.1,30.9 146 | 30,Jimmy Clausen,2010,13.8,-50.4,378,-14.9,-20.4,-8.0,-13.2,0.3,13.2 147 | 0,Aaron Rodgers,2011,83.8,78.0,651,109.7,78.3,13.2,-13.9,4.4,84.5 148 | 1,Drew Brees,2011,82.3,82.7,738,120.2,109.3,1.3,-8.7,0.9,83.0 149 | 2,Matt Schaub,2011,73.8,23.0,330,43.0,34.1,1.9,-5.8,1.2,72.9 150 | 3,Tom Brady,2011,73.8,56.9,726,102.5,83.3,5.1,-13.2,0.9,75.2 151 | 4,Matt Ryan,2011,69.3,37.4,656,76.0,55.5,4.0,-13.0,3.5,69.1 152 | 5,Tony Romo,2011,69.0,35.5,611,71.5,57.0,-0.8,-15.0,0.3,69.5 153 | 6,Ben Roethlisberger,2011,68.3,26.6,607,63.2,43.3,1.6,-15.1,3.1,65.0 154 | 7,Mike Vick,2011,67.8,30.4,543,63.9,39.8,16.2,-8.4,-0.4,68.8 155 | 8,Philip Rivers,2011,64.9,27.6,673,70.9,54.5,0.9,-11.6,3.8,64.1 156 | 9,Eli Manning,2011,64.2,27.9,685,73.0,61.8,-5.4,-11.4,5.2,64.0 157 | 10,Joe Flacco,2011,63.7,23.4,647,62.4,40.9,5.8,-11.3,4.3,62.5 158 | 11,Jay Cutler,2011,60.5,15.1,384,36.6,28.1,0.2,-7.7,0.6,63.6 159 | 12,Matthew Stafford,2011,60.5,25.9,772,72.8,54.7,0.5,-15.4,2.2,61.6 160 | 13,Cam Newton,2011,56.6,16.2,705,62.7,22.4,24.8,-16.2,-0.7,58.1 161 | 14,Matt Moore,2011,55.7,8.8,430,37.6,21.8,-0.3,-12.9,3.3,57.2 162 | 15,Alex Smith,2011,54.5,4.9,580,46.5,16.1,9.7,-20.2,0.5,53.0 163 | 16,Carson Palmer,2011,53.5,6.3,390,29.2,21.8,-0.5,-7.2,0.8,55.7 164 | 17,Matt Hasselbeck,2011,51.4,2.3,578,40.6,27.4,2.0,-8.3,2.8,51.4 165 | 18,Ryan Fitzpatrick,2011,50.1,0.9,672,43.6,27.0,1.5,-9.3,5.7,50.5 166 | 19,Andy Dalton,2011,49.5,-5.5,627,40.6,31.0,-3.5,-8.7,4.4,46.9 167 | 20,Matt Cassel,2011,48.4,4.5,334,24.9,11.3,4.7,-9.0,-0.1,54.7 168 | 21,Josh Freeman,2011,46.1,-6.3,675,35.9,14.6,9.8,-10.4,1.1,46.7 169 | 22,Tarvaris Jackson,2011,46.1,-8.6,568,31.5,15.3,-0.7,-16.6,0.3,44.7 170 | 23,Colt McCoy,2011,45.9,-9.3,587,30.4,14.2,1.7,-12.2,2.4,44.4 171 | 24,Mark Sanchez,2011,42.1,-11.2,676,36.4,17.1,-1.0,-15.0,5.3,44.1 172 | 25,Rex Grossman,2011,41.5,-10.9,522,27.7,16.4,-1.2,-13.1,-0.6,42.7 173 | 26,Tim Tebow,2011,38.6,-13.3,444,17.5,0.3,7.6,-10.6,-1.0,39.6 174 | 27,John Skelton,2011,37.3,-15.0,339,11.0,-2.2,1.9,-10.2,1.1,34.9 175 | 28,Kevin Kolb,2011,33.3,-15.2,324,9.0,-6.1,0.3,-12.9,1.9,34.0 176 | 29,Christian Ponder,2011,32.4,-17.9,366,8.8,-11.5,8.5,-12.0,-0.2,33.4 177 | 30,Sam Bradford,2011,31.4,-25.3,436,7.3,-2.9,-2.1,-12.6,-0.4,30.5 178 | 31,Blaine Gabbert,2011,22.2,-46.0,516,-4.4,-23.6,-2.9,-18.7,3.4,22.1 179 | 0,Peyton Manning,2012,78.9,64.0,664,97.6,81.1,1.4,-8.7,6.4,79.6 180 | 1,Tom Brady,2012,77.2,59.0,720,99.0,78.6,2.8,-11.5,6.0,76.1 181 | 2,Russell Wilson,2012,74.8,39.2,566,77.6,43.6,18.1,-13.9,1.9,72.7 182 | 3,Ben Roethlisberger,2012,71.9,33.4,520,70.4,52.4,3.0,-13.3,1.7,71.3 183 | 4,Aaron Rodgers,2012,71.3,45.0,702,90.7,49.6,13.6,-21.0,6.6,71.2 184 | 5,Matt Ryan,2012,69.5,45.6,699,90.9,69.0,7.0,-12.4,2.6,71.6 185 | 6,Robert Griffin III,2012,68.0,32.8,568,68.6,39.2,16.4,-12.6,0.4,69.4 186 | 7,Drew Brees,2012,66.8,41.3,742,84.5,73.9,-0.9,-11.6,-0.1,68.7 187 | 8,Eli Manning,2012,65.2,30.3,607,66.0,55.7,-0.6,-7.0,4.0,67.0 188 | 9,Tony Romo,2012,64.6,33.9,755,85.8,66.6,1.5,-17.1,0.6,65.4 189 | 10,Andrew Luck,2012,64.3,34.4,756,84.6,42.2,18.3,-15.8,8.3,65.6 190 | 11,Matt Schaub,2012,59.4,20.0,615,60.0,44.3,-0.6,-13.8,2.5,61.3 191 | 12,Matthew Stafford,2012,57.7,14.3,824,70.6,51.2,2.8,-12.6,4.0,56.1 192 | 13,Cam Newton,2012,55.7,16.0,677,62.3,20.3,28.4,-14.0,-0.4,58.3 193 | 14,Sam Bradford,2012,52.9,2.9,660,48.9,30.2,5.2,-14.4,-0.9,51.6 194 | 15,Christian Ponder,2012,52.6,3.6,597,42.5,17.5,9.9,-11.2,3.9,52.1 195 | 16,Joe Flacco,2012,51.4,2.1,641,47.4,33.3,-3.3,-14.2,3.2,51.1 196 | 17,Ryan Tannehill,2012,49.7,-2.7,600,40.0,16.5,3.3,-14.0,6.2,48.4 197 | 18,Mike Vick,2012,49.4,1.8,459,33.1,14.3,4.4,-11.1,3.2,51.4 198 | 19,Nick Foles,2012,48.2,1.1,323,23.8,10.4,3.0,-9.1,1.3,51.2 199 | 20,Andy Dalton,2012,47.3,-4.2,645,43.6,13.1,9.8,-19.6,1.1,47.7 200 | 21,Josh Freeman,2012,46.8,-1.2,660,44.3,30.5,2.3,-10.6,0.9,49.4 201 | 22,Jay Cutler,2012,45.3,-3.0,539,34.2,6.2,13.9,-12.3,1.8,48.1 202 | 23,Ryan Fitzpatrick,2012,45.2,-10.8,614,32.7,19.1,2.3,-10.2,1.1,43.8 203 | 24,Carson Palmer,2012,44.3,-6.1,646,37.2,20.9,1.2,-10.7,4.3,46.6 204 | 25,Philip Rivers,2012,43.5,-13.8,649,33.8,10.7,-0.5,-19.0,4.6,42.6 205 | 26,Jake Locker,2012,40.0,-9.2,406,19.3,-0.3,8.6,-8.7,2.2,42.0 206 | 27,Blaine Gabbert,2012,36.3,-14.2,352,11.9,1.8,-0.1,-8.3,1.9,36.1 207 | 28,Brandon Weeden,2012,33.7,-28.6,604,19.1,5.7,1.0,-12.5,-0.1,33.9 208 | 29,Chad Henne,2012,29.0,-25.5,376,4.3,-4.5,-3.7,-11.2,1.2,27.7 209 | 30,Mark Sanchez,2012,28.2,-38.5,549,5.4,-6.8,-7.9,-15.9,4.0,27.1 210 | 31,Matt Cassel,2012,25.5,-24.5,337,2.4,-5.4,-0.6,-6.9,1.5,26.3 211 | 0,Peyton Manning,2013,79.0,75.3,739,117.7,110.2,-4.0,-7.4,4.1,80.9 212 | 1,Philip Rivers,2013,75.1,51.5,653,98.0,81.7,0.8,-11.3,4.2,75.3 213 | 2,Jay Cutler,2013,70.1,25.3,401,49.6,35.0,7.6,-7.3,-0.3,70.9 214 | 3,Nick Foles,2013,69.5,27.1,418,52.6,32.4,5.9,-11.9,2.4,71.5 215 | 4,Drew Brees,2013,69.1,43.4,760,90.8,71.0,2.8,-17.3,-0.3,69.2 216 | 5,Matt Ryan,2013,67.5,32.9,753,83.1,58.0,3.0,-19.4,2.7,65.0 217 | 6,Colin Kaepernick,2013,67.3,26.5,578,66.3,25.5,21.6,-16.5,2.6,65.7 218 | 7,Russell Wilson,2013,67.2,28.6,579,68.5,32.5,16.0,-18.9,1.0,66.8 219 | 8,Cam Newton,2013,64.3,26.5,637,72.7,18.9,29.1,-22.3,2.5,64.3 220 | 9,Andrew Luck,2013,63.8,28.2,708,71.4,26.0,21.8,-13.9,9.7,63.7 221 | 10,Tom Brady,2013,63.1,25.5,729,80.5,52.3,1.4,-20.1,6.8,62.1 222 | 11,Tony Romo,2013,61.9,21.5,622,68.6,48.7,1.7,-16.1,2.1,62.0 223 | 12,Aaron Rodgers,2013,61.6,10.8,357,36.2,17.5,7.2,-9.4,2.1,60.6 224 | 13,Ryan Fitzpatrick,2013,58.7,8.7,423,39.7,19.6,10.7,-9.5,-0.1,57.2 225 | 14,Ben Roethlisberger,2013,58.0,15.5,669,61.4,39.6,1.8,-18.3,1.7,58.1 226 | 15,Mike Glennon,2013,55.2,4.6,515,38.6,20.8,-2.8,-16.4,4.1,53.1 227 | 16,Andy Dalton,2013,54.8,10.1,698,60.5,39.0,5.8,-12.7,2.9,55.1 228 | 17,Carson Palmer,2013,54.0,4.8,669,53.6,35.3,-1.6,-15.9,4.0,52.6 229 | 18,Matthew Stafford,2013,53.5,12.6,718,69.1,59.3,-2.4,-9.8,2.3,56.2 230 | 19,Robert Griffin III,2013,50.4,3.1,606,43.6,26.5,3.2,-14.3,-0.4,51.8 231 | 20,Ryan Tannehill,2013,48.4,-1.3,700,53.6,21.3,5.6,-24.7,2.0,49.3 232 | 21,Joe Flacco,2013,48.0,-4.6,754,52.6,9.1,12.3,-21.9,9.3,47.8 233 | 22,Alex Smith,2013,45.0,-5.4,654,44.6,17.1,8.5,-17.1,1.9,47.1 234 | 23,Jason Campbell,2013,43.3,-9.2,372,19.0,6.2,5.0,-7.4,0.4,41.4 235 | 24,Geno Smith,2013,41.0,-13.2,580,31.2,-6.9,16.1,-19.6,2.4,42.0 236 | 25,Terrelle Pryor Sr.,2013,40.5,-11.9,412,17.0,-5.8,13.7,-11.1,-1.9,39.9 237 | 26,Eli Manning,2013,38.6,-19.4,635,29.0,11.5,-2.1,-16.4,3.2,39.3 238 | 27,Matt Schaub,2013,38.3,-15.8,409,16.5,8.8,-1.0,-7.8,0.9,36.7 239 | 28,EJ Manuel,2013,38.2,-12.1,401,19.2,0.5,2.6,-11.8,4.3,39.5 240 | 29,Chad Henne,2013,34.9,-26.3,602,18.6,0.5,0.1,-15.3,2.7,35.0 241 | 30,Brandon Weeden,2013,34.4,-15.1,329,10.4,-0.9,0.6,-10.5,0.3,34.3 242 | 0,Tony Romo,2014,79.2,49.2,508,80.4,61.8,3.0,-12.9,2.7,79.7 243 | 1,Aaron Rodgers,2014,77.8,57.2,631,99.1,65.3,15.1,-13.4,5.3,78.3 244 | 2,Tom Brady,2014,77.2,55.7,677,100.2,83.6,3.8,-8.9,3.9,76.2 245 | 3,Drew Brees,2014,73.2,56.8,739,106.5,86.2,4.9,-11.8,3.5,74.8 246 | 4,Peyton Manning,2014,72.6,45.0,674,90.4,80.3,-3.8,-8.3,5.6,72.0 247 | 5,Russell Wilson,2014,69.7,41.5,638,91.1,35.4,37.4,-17.7,0.6,71.5 248 | 6,Ben Roethlisberger,2014,69.4,38.4,691,86.1,70.2,-0.9,-13.1,3.7,68.7 249 | 7,Joe Flacco,2014,68.6,34.4,639,81.1,58.9,4.1,-10.6,7.4,68.2 250 | 8,Matt Ryan,2014,66.8,39.1,716,86.4,68.0,3.9,-13.8,0.8,68.4 251 | 9,Philip Rivers,2014,65.1,26.9,681,79.8,59.9,0.5,-14.9,4.5,63.6 252 | 10,Andrew Luck,2014,64.0,27.1,745,78.5,57.1,6.6,-11.0,3.7,62.6 253 | 11,Nick Foles,2014,63.6,14.5,352,42.3,33.4,1.8,-3.9,3.2,64.1 254 | 12,Ryan Fitzpatrick,2014,61.8,12.8,402,42.4,26.9,6.4,-7.6,1.5,61.1 255 | 13,Eli Manning,2014,61.0,24.8,689,75.5,60.4,1.4,-10.8,2.8,62.5 256 | 14,Ryan Tannehill,2014,60.5,19.4,730,73.8,44.2,7.0,-18.4,4.3,59.3 257 | 15,Colin Kaepernick,2014,58.1,20.8,668,74.2,30.3,20.4,-21.2,2.4,60.9 258 | 16,Cam Newton,2014,56.2,12.7,609,56.6,17.9,23.4,-13.5,1.7,57.3 259 | 17,Mark Sanchez,2014,55.3,8.0,374,34.0,23.2,0.8,-9.1,0.9,57.5 260 | 18,Alex Smith,2014,52.0,2.8,590,51.4,25.6,6.6,-18.5,0.8,51.7 261 | 19,Teddy Bridgewater,2014,51.6,6.4,509,50.3,23.2,8.3,-16.8,2.0,54.4 262 | 20,Jay Cutler,2014,50.9,3.5,678,54.3,32.6,9.2,-13.0,-0.6,51.8 263 | 21,Andy Dalton,2014,49.0,-2.5,590,45.8,30.0,5.5,-7.8,2.6,48.5 264 | 22,Geno Smith,2014,45.8,-5.5,477,36.0,22.5,-0.3,-12.6,1.2,45.9 265 | 23,Austin Davis,2014,44.8,-5.6,341,20.8,8.3,-1.0,-12.2,1.3,44.2 266 | 24,Matthew Stafford,2014,44.7,-5.4,711,53.5,33.3,-1.9,-17.9,4.2,47.3 267 | 25,Kyle Orton,2014,44.5,-9.0,519,34.7,21.5,-0.5,-13.1,0.7,43.9 268 | 26,Derek Carr,2014,42.1,-19.4,680,34.1,28.7,-2.4,-7.6,0.2,40.1 269 | 27,Brian Hoyer,2014,38.7,-17.4,521,28.4,19.2,-3.8,-11.9,1.1,38.4 270 | 28,Josh McCown,2014,34.6,-14.0,404,20.9,0.2,5.8,-15.0,-0.2,38.0 271 | 29,Blake Bortles,2014,28.0,-43.7,614,11.4,-24.9,14.3,-20.3,1.8,26.7 272 | 0,Carson Palmer,2015,76.4,52.7,613,95.9,77.0,0.7,-12.6,5.7,77.1 273 | 1,Ben Roethlisberger,2015,72.8,34.9,550,77.5,60.5,1.3,-8.8,6.9,71.1 274 | 2,Andy Dalton,2015,72.5,29.3,489,66.5,52.1,2.9,-8.7,2.7,70.0 275 | 3,Russell Wilson,2015,68.6,33.4,656,78.6,51.0,10.8,-17.6,-0.9,67.3 276 | 4,Tom Brady,2015,68.4,38.6,726,89.8,64.2,5.5,-14.8,5.3,68.0 277 | 5,Kirk Cousins,2015,67.8,41.1,625,82.2,63.6,4.7,-10.9,3.0,71.7 278 | 6,Drew Brees,2015,66.8,43.8,715,93.6,77.9,1.7,-12.9,1.2,70.4 279 | 7,Tyrod Taylor,2015,66.3,24.1,539,62.1,30.8,18.3,-13.8,-0.7,65.3 280 | 8,Matt Ryan,2015,64.1,41.3,704,96.4,79.5,1.2,-12.9,2.7,69.6 281 | 9,Ryan Fitzpatrick,2015,62.0,26.4,675,78.5,57.5,12.2,-6.6,2.2,63.5 282 | 10,Cam Newton,2015,61.4,34.6,692,86.4,47.3,22.0,-15.5,1.6,67.0 283 | 11,Alex Smith,2015,61.1,15.2,631,61.2,21.1,21.9,-16.3,1.9,58.4 284 | 12,Jay Cutler,2015,61.0,16.6,585,66.4,42.2,7.4,-13.1,3.7,59.9 285 | 13,Aaron Rodgers,2015,60.0,21.7,736,78.1,30.9,17.6,-18.4,11.2,60.3 286 | 14,Matthew Stafford,2015,58.3,17.1,705,69.7,42.8,7.6,-15.4,4.0,58.5 287 | 15,Eli Manning,2015,57.9,21.4,707,77.8,61.9,-0.7,-11.2,5.4,60.5 288 | 16,Teddy Bridgewater,2015,57.7,12.3,576,58.5,24.0,10.3,-18.1,6.0,57.5 289 | 17,Philip Rivers,2015,57.3,12.8,787,74.8,51.5,-1.0,-18.1,6.2,55.7 290 | 18,Jameis Winston,2015,57.2,21.2,662,65.5,38.4,13.1,-10.9,3.1,61.1 291 | 19,Brock Osweiler,2015,54.9,2.8,331,29.6,16.5,2.5,-9.9,0.7,53.0 292 | 20,Josh McCown,2015,52.9,0.3,374,32.7,18.9,0.9,-11.0,1.9,50.3 293 | 21,Brian Hoyer,2015,52.8,7.5,432,35.7,23.7,2.9,-8.3,0.8,56.1 294 | 22,Andrew Luck,2015,52.4,-0.6,358,25.3,13.0,7.2,-5.4,-0.4,49.4 295 | 23,Blake Bortles,2015,51.4,3.8,734,62.0,25.8,10.7,-22.0,3.6,51.8 296 | 24,Joe Flacco,2015,50.8,-0.4,459,40.3,30.4,1.1,-8.2,0.6,49.7 297 | 25,Marcus Mariota,2015,48.4,4.4,477,40.4,12.0,9.6,-15.1,3.7,53.3 298 | 26,Ryan Tannehill,2015,45.6,-7.4,710,45.5,27.3,1.0,-16.2,0.9,46.3 299 | 27,Peyton Manning,2015,44.2,-6.5,377,27.0,17.5,0.0,-7.4,2.1,43.9 300 | 28,Colin Kaepernick,2015,43.7,-6.4,337,18.5,0.4,8.2,-8.3,1.6,43.4 301 | 29,Derek Carr,2015,43.1,-17.4,690,41.6,28.1,-0.6,-13.7,0.5,41.2 302 | 30,Sam Bradford,2015,39.2,-14.1,625,38.2,27.5,-3.0,-10.0,3.7,42.1 303 | 31,Blaine Gabbert,2015,37.6,-12.4,353,17.0,-3.4,8.9,-10.8,0.7,37.8 304 | 32,Nick Foles,2015,28.9,-26.1,393,8.7,3.0,-2.2,-6.4,1.5,28.1 305 | 0,Matt Ryan,2016,79.6,61.8,647,110.9,83.1,7.6,-15.5,4.6,79.4 306 | 1,Tom Brady,2016,79.4,47.8,508,83.3,71.5,3.8,-5.3,2.7,79.1 307 | 2,Dak Prescott,2016,77.6,53.1,572,102.5,71.1,18.8,-10.5,2.1,78.8 308 | 3,Aaron Rodgers,2016,72.4,54.9,750,115.0,75.9,18.3,-14.5,6.2,73.8 309 | 4,Drew Brees,2016,66.8,33.6,760,96.5,84.4,1.6,-10.1,0.4,65.1 310 | 5,Kirk Cousins,2016,66.5,33.4,706,97.8,78.8,3.8,-12.1,3.1,66.1 311 | 6,Andrew Luck,2016,65.9,32.7,702,91.4,56.6,10.9,-18.5,5.3,65.9 312 | 7,Matthew Stafford,2016,65.2,34.6,715,98.4,61.5,16.0,-14.7,6.3,66.5 313 | 8,Tyrod Taylor,2016,62.4,20.0,608,71.5,31.5,20.9,-15.7,3.4,61.4 314 | 9,Alex Smith,2016,60.8,13.7,600,62.7,44.7,6.6,-9.1,2.3,58.0 315 | 10,Ben Roethlisberger,2016,60.5,19.5,576,64.7,53.7,1.9,-6.8,2.3,61.8 316 | 11,Jameis Winston,2016,59.5,19.6,703,80.6,61.4,5.8,-13.8,-0.5,59.7 317 | 12,Marcus Mariota,2016,59.1,15.5,574,64.7,42.9,7.3,-9.5,5.0,59.4 318 | 13,Philip Rivers,2016,58.7,14.6,682,74.9,55.3,1.2,-13.5,4.9,57.5 319 | 14,Russell Wilson,2016,57.1,13.5,699,75.7,47.4,5.8,-18.1,4.3,56.8 320 | 15,Derek Carr,2016,56.1,8.8,672,72.3,58.9,-0.6,-6.1,7.9,54.6 321 | 16,Sam Bradford,2016,53.1,13.4,644,64.6,45.8,3.1,-14.6,1.1,57.3 322 | 17,Carson Palmer,2016,52.9,8.8,700,68.3,46.0,0.8,-15.9,5.6,54.5 323 | 18,Joe Flacco,2016,52.5,5.7,753,74.7,53.1,4.8,-16.4,0.4,52.7 324 | 19,Andy Dalton,2016,52.3,1.6,686,61.8,37.9,5.2,-15.2,3.6,50.8 325 | 20,Trevor Siemian,2016,49.7,-2.7,586,50.5,31.0,0.9,-15.1,3.5,48.4 326 | 21,Brock Osweiler,2016,49.3,-0.8,583,49.0,23.9,9.6,-11.4,4.2,49.5 327 | 22,Colin Kaepernick,2016,49.2,-0.7,454,37.1,-0.3,22.8,-14.7,-0.1,49.5 328 | 23,Ryan Tannehill,2016,48.6,-0.8,476,40.1,25.4,3.7,-10.3,0.7,49.4 329 | 24,Cam Newton,2016,47.1,-3.8,669,53.4,24.4,6.2,-17.4,5.4,48.0 330 | 25,Carson Wentz,2016,46.7,-1.3,734,65.0,47.9,2.8,-12.1,2.2,49.4 331 | 26,Eli Manning,2016,45.7,-1.3,660,62.0,49.7,0.4,-10.8,1.2,49.3 332 | 27,Blake Bortles,2016,43.0,-15.9,773,52.0,18.7,13.4,-13.9,6.0,42.8 333 | 28,Ryan Fitzpatrick,2016,39.2,-16.8,481,27.5,14.4,3.2,-7.0,2.9,37.9 334 | 29,Case Keenum,2016,37.5,-14.5,388,22.6,10.2,0.1,-11.0,1.2,37.1 335 | 0,Carson Wentz,2017,78.5,48.9,567,85.9,59.1,10.0,-11.4,5.4,77.2 336 | 1,Case Keenum,2017,72.8,43.3,577,85.3,56.1,10.5,-10.7,8.0,74.3 337 | 2,Tom Brady,2017,70.6,49.0,689,96.5,74.1,-3.1,-15.2,10.3,73.2 338 | 3,Dak Prescott,2017,69.9,36.3,622,79.4,37.4,24.4,-11.7,5.9,69.5 339 | 4,Matt Ryan,2017,67.1,33.1,612,81.3,60.2,6.6,-10.7,3.8,68.3 340 | 5,Ben Roethlisberger,2017,66.6,30.6,639,82.5,61.6,2.6,-9.9,8.4,66.3 341 | 6,Matthew Stafford,2017,65.2,30.3,678,81.2,50.7,6.4,-20.0,4.0,65.3 342 | 7,Alex Smith,2017,65.1,32.1,642,84.3,52.6,13.9,-15.3,2.5,67.0 343 | 8,Drew Brees,2017,62.5,25.3,596,67.6,56.5,1.0,-9.5,0.6,64.6 344 | 9,Russell Wilson,2017,61.9,24.4,724,82.5,37.7,23.6,-18.8,2.3,61.7 345 | 10,Philip Rivers,2017,61.1,26.8,654,77.5,67.7,-1.2,-6.4,4.6,64.1 346 | 11,Blake Bortles,2017,59.2,16.7,635,62.3,34.0,13.5,-10.5,4.3,59.2 347 | 12,Marcus Mariota,2017,58.6,14.4,574,62.7,25.9,19.4,-11.4,6.0,58.8 348 | 13,Tyrod Taylor,2017,56.4,16.1,561,57.2,16.0,20.4,-18.7,2.1,60.0 349 | 14,Kirk Cousins,2017,56.0,7.8,655,59.4,32.3,5.7,-18.8,2.6,54.2 350 | 15,Jared Goff,2017,55.7,3.4,571,48.1,34.0,-0.5,-9.3,5.3,52.1 351 | 16,Josh McCown,2017,55.6,13.9,487,52.4,22.9,12.3,-15.7,1.5,60.0 352 | 17,Jameis Winston,2017,52.0,6.2,542,49.9,34.0,0.7,-12.7,2.6,54.0 353 | 18,Cam Newton,2017,51.5,6.6,698,63.5,23.4,20.2,-15.7,4.3,53.3 354 | 19,Derek Carr,2017,50.5,1.6,597,45.1,35.5,-2.3,-7.4,4.6,51.0 355 | 20,Carson Palmer,2017,50.0,2.3,321,26.0,14.5,0.2,-8.6,2.7,52.5 356 | 21,Eli Manning,2017,47.5,-8.6,662,44.4,23.9,2.4,-15.1,3.1,45.4 357 | 22,Joe Flacco,2017,46.7,-0.4,624,48.2,33.4,-0.2,-12.0,3.0,49.8 358 | 23,Brett Hundley,2017,44.8,-6.6,398,24.9,-2.0,13.6,-12.6,0.8,44.2 359 | 24,Andy Dalton,2017,44.8,-7.2,592,41.0,16.3,2.2,-17.6,4.9,45.7 360 | 25,Jay Cutler,2017,43.5,-6.0,486,30.7,19.0,1.2,-7.9,2.7,45.6 361 | 26,Jacoby Brissett,2017,43.3,-14.9,613,35.9,8.0,6.1,-17.9,3.8,41.5 362 | 27,DeShone Kizer,2017,32.6,-37.8,623,15.4,-16.6,14.2,-15.0,2.7,29.7 363 | 28,Mitchell Trubisky,2017,32.4,-23.9,438,13.1,-2.2,1.4,-12.6,1.2,31.6 364 | 29,Trevor Siemian,2017,30.9,-21.7,436,13.7,-3.6,3.8,-11.3,2.3,33.1 365 | 0,Patrick Mahomes,2018,80.3,72.2,722,126.0,101.0,11.7,-10.2,3.2,80.4 366 | 1,Drew Brees,2018,79.2,56.1,562,100.5,80.2,5.4,-8.7,6.2,80.4 367 | 2,Mitchell Trubisky,2018,71.0,35.3,565,80.3,43.1,22.1,-11.3,3.8,70.8 368 | 3,Ben Roethlisberger,2018,69.6,48.2,762,113.5,89.3,8.7,-10.4,5.1,71.0 369 | 4,Andrew Luck,2018,69.6,42.9,741,103.0,84.4,5.0,-9.3,4.3,69.4 370 | 5,Tom Brady,2018,68.4,31.4,643,82.6,63.6,4.4,-9.9,4.7,66.6 371 | 6,Philip Rivers,2018,67.8,33.9,595,79.1,65.8,-0.9,-12.8,1.3,69.1 372 | 7,Jameis Winston,2018,66.2,28.6,485,65.6,37.8,10.8,-11.6,5.4,69.7 373 | 8,Matt Ryan,2018,65.7,39.7,722,92.9,60.2,7.4,-20.4,4.9,68.5 374 | 9,Jared Goff,2018,63.6,25.2,665,79.9,60.8,0.6,-14.0,4.4,63.1 375 | 10,Russell Wilson,2018,63.3,21.1,571,69.0,32.0,11.0,-23.5,2.6,62.8 376 | 11,Carson Wentz,2018,62.0,17.8,488,58.5,39.8,1.8,-13.8,3.1,62.6 377 | 12,Deshaun Watson,2018,61.8,21.5,702,79.5,31.8,17.0,-26.8,3.8,60.7 378 | 13,Kirk Cousins,2018,59.5,16.8,718,71.8,57.3,-5.1,-17.5,2.2,58.2 379 | 14,Andy Dalton,2018,59.4,15.4,433,50.6,35.4,2.0,-9.8,3.4,62.3 380 | 15,Aaron Rodgers,2018,58.0,9.1,737,70.0,25.1,17.8,-23.9,3.2,54.4 381 | 16,Dak Prescott,2018,55.2,12.2,693,71.7,35.1,12.2,-22.3,2.1,56.2 382 | 17,Joe Flacco,2018,54.8,7.9,441,43.4,30.1,2.9,-5.8,4.6,56.3 383 | 18,Cam Newton,2018,53.2,8.9,629,62.6,41.7,8.4,-12.5,0.0,55.0 384 | 19,Marcus Mariota,2018,53.2,0.8,471,42.2,14.6,6.7,-16.1,4.8,50.6 385 | 20,Nick Mullens,2018,51.7,3.6,334,29.0,23.6,-2.8,-6.4,1.8,53.8 386 | 21,Matthew Stafford,2018,51.3,-2.8,647,49.2,25.8,4.2,-15.0,4.2,48.4 387 | 22,Baker Mayfield,2018,51.2,5.3,580,51.5,34.8,0.9,-12.2,3.6,53.2 388 | 23,Josh Allen,2018,49.8,-0.3,461,35.6,-1.8,24.1,-9.7,3.5,49.8 389 | 24,Eli Manning,2018,49.1,-2.5,684,54.8,30.2,2.0,-20.2,2.4,48.7 390 | 25,Alex Smith,2018,46.9,1.6,422,35.0,17.8,5.5,-8.8,2.9,51.4 391 | 26,Derek Carr,2018,46.5,-5.9,669,50.8,27.3,2.5,-20.9,0.2,46.9 392 | 27,Sam Darnold,2018,45.9,-6.6,510,36.6,23.5,3.3,-10.9,-1.1,45.5 393 | 28,Case Keenum,2018,44.5,-8.8,685,50.6,26.9,4.2,-16.0,3.5,45.5 394 | 29,Blake Bortles,2018,43.4,-12.2,515,30.5,9.3,11.6,-11.2,-1.6,41.7 395 | 30,Lamar Jackson,2018,42.6,-3.6,338,27.7,6.6,13.8,-6.8,0.4,46.3 396 | 31,Ryan Tannehill,2018,33.2,-20.6,363,13.4,-6.3,3.6,-15.3,0.8,31.0 397 | 32,Josh Rosen,2018,24.1,-38.7,491,7.9,-13.6,3.3,-17.0,1.2,24.7 398 | 0,Lamar Jackson,2019,83.0,66.7,613,103.7,55.0,39.1,-7.4,2.2,82.3 399 | 1,Patrick Mahomes,2019,77.7,55.8,585,97.3,71.6,14.3,-6.5,5.0,79.4 400 | 2,Drew Brees,2019,73.3,33.7,419,62.6,53.1,1.6,-6.0,1.9,75.7 401 | 3,Dak Prescott,2019,71.9,48.1,690,93.1,70.7,10.0,-9.7,2.6,72.8 402 | 4,Russell Wilson,2019,71.5,43.0,674,90.9,58.3,10.6,-20.6,1.5,71.2 403 | 5,Matthew Stafford,2019,71.3,27.0,353,56.1,44.5,1.6,-8.0,1.9,74.7 404 | 6,Deshaun Watson,2019,70.5,42.3,662,91.6,52.0,19.8,-18.5,1.4,71.2 405 | 7,Ryan Fitzpatrick,2019,68.3,30.2,620,70.7,47.6,6.3,-13.1,3.7,66.6 406 | 8,Ryan Tannehill,2019,64.2,19.0,374,45.8,18.1,11.7,-13.7,2.3,67.2 407 | 9,Derek Carr,2019,64.1,27.3,598,70.3,54.2,2.7,-12.3,1.1,65.6 408 | 10,Carson Wentz,2019,62.8,32.2,745,90.5,61.5,7.7,-15.5,5.8,64.8 409 | 11,Jimmy Garoppolo,2019,60.8,20.8,593,69.3,48.5,-0.2,-15.9,5.0,62.1 410 | 12,Kirk Cousins,2019,60.4,18.1,537,59.0,44.6,-1.6,-10.9,5.1,61.7 411 | 13,Matt Ryan,2019,59.6,22.3,748,75.1,45.4,5.4,-18.6,5.7,60.4 412 | 14,Kyler Murray,2019,57.7,16.2,709,71.6,37.3,13.4,-17.8,3.0,58.0 413 | 15,Jameis Winston,2019,55.7,20.1,772,78.4,48.7,9.0,-18.3,2.6,59.1 414 | 16,Tom Brady,2019,55.7,8.9,691,61.0,40.0,4.5,-11.0,5.4,54.5 415 | 17,Daniel Jones,2019,55.7,11.5,577,55.1,22.2,11.6,-17.4,4.0,57.0 416 | 18,Baker Mayfield,2019,54.4,2.3,664,54.4,22.4,9.5,-17.6,5.0,51.2 417 | 19,Aaron Rodgers,2019,52.5,10.9,691,66.4,39.7,9.3,-16.4,1.1,55.6 418 | 20,Jacoby Brissett,2019,52.1,6.6,564,52.2,27.9,6.7,-11.2,6.4,54.1 419 | 21,Jared Goff,2019,50.6,0.5,734,57.5,54.4,-7.3,-8.8,1.6,50.2 420 | 22,Philip Rivers,2019,50.5,1.5,691,57.1,39.7,-3.4,-16.7,4.1,50.8 421 | 23,Josh Allen,2019,49.4,-3.8,639,51.4,21.1,10.4,-17.4,2.6,47.9 422 | 24,Sam Darnold,2019,45.6,-9.7,525,31.6,17.4,-3.0,-13.7,3.6,43.5 423 | 25,Gardner Minshew II,2019,44.6,-4.7,600,41.8,21.5,5.4,-13.5,1.4,47.2 424 | 26,Andy Dalton,2019,42.1,-20.1,632,30.3,12.8,1.6,-12.9,3.0,38.9 425 | 27,Mitchell Trubisky,2019,41.5,-13.5,644,39.8,17.7,1.7,-16.5,3.9,42.6 426 | 28,Kyle Allen,2019,38.3,-17.4,588,28.0,5.3,0.7,-19.9,2.1,39.7 427 | 29,Mason Rudolph,2019,36.2,-12.9,336,16.9,7.2,-1.3,-7.8,3.2,36.8 428 | 0,Aaron Rodgers,2020,84.4,77.7,608,113.1,98.4,9.3,-7.0,5.4,85.9 429 | 1,Patrick Mahomes,2020,82.9,86.3,710,138.1,116.1,19.1,-9.4,2.9,84.8 430 | 2,Josh Allen,2020,81.7,79.1,729,128.6,112.1,13.0,-11.0,3.5,82.3 431 | 3,Ryan Tannehill,2020,78.3,56.9,594,95.3,68.2,22.1,-11.2,5.0,79.5 432 | 4,Ryan Fitzpatrick,2020,76.9,29.6,324,49.9,41.6,5.6,-5.1,2.7,78.4 433 | 5,Drew Brees,2020,74.6,36.4,428,66.2,62.5,1.0,-6.2,2.8,76.9 434 | 6,Lamar Jackson,2020,73.7,44.7,585,82.9,50.9,30.8,-8.9,1.2,74.7 435 | 7,Russell Wilson,2020,73.5,48.3,716,102.9,88.6,9.1,-20.7,5.1,72.2 436 | 8,Tom Brady,2020,72.5,49.2,681,94.7,90.4,-3.1,-8.6,7.3,73.5 437 | 9,Baker Mayfield,2020,72.2,39.2,597,83.7,76.9,3.4,-10.6,3.4,71.7 438 | 10,Derek Carr,2020,71.0,42.1,609,91.1,76.1,7.4,-10.7,7.6,72.7 439 | 11,Deshaun Watson,2020,70.5,47.5,715,99.6,85.9,12.0,-19.5,1.7,71.9 440 | 12,Justin Herbert,2020,69.5,51.6,699,102.3,94.9,3.7,-13.3,3.7,74.0 441 | 13,Kyler Murray,2020,68.9,41.3,763,99.9,64.5,32.3,-11.8,3.1,68.3 442 | 14,Matthew Stafford,2020,68.4,34.4,626,77.3,64.7,9.0,-14.1,3.7,68.5 443 | 15,Matt Ryan,2020,67.0,39.5,731,90.1,80.6,4.7,-17.4,4.9,68.2 444 | 16,Teddy Bridgewater,2020,64.2,25.3,607,71.7,54.8,12.3,-12.6,4.6,64.3 445 | 17,Kirk Cousins,2020,63.2,29.4,629,76.9,67.6,6.4,-18.2,2.9,66.0 446 | 18,Philip Rivers,2020,62.5,26.8,600,73.4,68.1,-0.1,-8.2,5.5,65.3 447 | 19,Daniel Jones,2020,61.5,11.7,586,57.6,42.7,10.0,-16.9,4.8,57.0 448 | 20,Mitchell Trubisky,2020,61.3,15.8,376,41.0,32.3,7.2,-7.5,1.5,64.5 449 | 21,Ben Roethlisberger,2020,60.1,21.1,677,76.0,71.6,-5.1,-6.4,9.4,60.9 450 | 22,Jared Goff,2020,58.5,12.6,650,64.0,56.8,2.8,-11.0,4.4,56.8 451 | 23,Joe Burrow,2020,56.2,6.5,510,47.8,46.9,-0.5,-13.3,1.5,54.5 452 | 24,Andy Dalton,2020,53.8,0.0,409,30.9,26.2,2.5,-12.1,2.2,50.0 453 | 25,Tua Tagovailoa,2020,52.5,5.7,362,32.4,24.6,6.6,-8.9,1.3,55.6 454 | 26,Gardner Minshew II,2020,51.7,6.7,403,31.9,24.9,5.1,-12.3,1.9,55.9 455 | 27,Carson Wentz,2020,49.6,-8.9,581,39.4,21.5,10.8,-21.8,7.1,44.6 456 | 28,Drew Lock,2020,48.8,6.3,523,44.8,35.9,5.5,-7.8,3.4,54.3 457 | 29,Cam Newton,2020,47.0,-2.3,538,42.9,28.2,14.1,-13.7,0.7,48.5 458 | 30,Nick Mullens,2020,43.6,-12.7,379,17.2,16.1,-0.2,-8.6,1.4,38.3 459 | 31,Nick Foles,2020,43.3,-6.7,359,22.3,21.2,-1.7,-8.7,2.7,43.4 460 | 32,Sam Darnold,2020,40.1,-12.7,455,24.3,8.8,12.8,-15.5,2.7,40.3 461 | -------------------------------------------------------------------------------- /data/schedules/1999.csv: -------------------------------------------------------------------------------- 1 | ,game_id,season,game_type,week,gameday,weekday,gametime,away_team,home_team,away_score,home_score,home_result,stadium,location,roof,surface,old_game_id 2 | 0,1999_01_MIN_ATL,1999,REG,1,1999-09-12,Sunday,,MIN,ATL,17,14,-3,Georgia Dome,Home,dome,astroturf,1999091210 3 | 1,1999_01_KC_CHI,1999,REG,1,1999-09-12,Sunday,,KC,CHI,17,20,3,Soldier Field,Home,outdoors,grass,1999091206 4 | 2,1999_01_PIT_CLE,1999,REG,1,1999-09-12,Sunday,,PIT,CLE,43,0,-43,Cleveland Browns Stadium,Home,outdoors,grass,1999091213 5 | 3,1999_01_OAK_GB,1999,REG,1,1999-09-12,Sunday,,OAK,GB,24,28,4,Lambeau Field,Home,outdoors,grass,1999091208 6 | 4,1999_01_BUF_IND,1999,REG,1,1999-09-12,Sunday,,BUF,IND,14,31,17,RCA Dome,Home,dome,astroturf,1999091202 7 | 5,1999_01_SF_JAX,1999,REG,1,1999-09-12,Sunday,,SF,JAX,3,41,38,Alltel Stadium,Home,outdoors,grass,1999091212 8 | 6,1999_01_CAR_NO,1999,REG,1,1999-09-12,Sunday,,CAR,NO,10,19,9,Louisiana Superdome,Home,dome,astroturf,1999091203 9 | 7,1999_01_NE_NYJ,1999,REG,1,1999-09-12,Sunday,,NE,NYJ,30,28,-2,Giants Stadium,Home,outdoors,astroturf,1999091207 10 | 8,1999_01_ARI_PHI,1999,REG,1,1999-09-12,Sunday,,ARI,PHI,25,24,-1,Veterans Stadium,Home,outdoors,astroturf,1999091200 11 | 9,1999_01_DET_SEA,1999,REG,1,1999-09-12,Sunday,,DET,SEA,28,20,-8,Seattle Kingdome,Home,dome,astroturf,1999091209 12 | 10,1999_01_BAL_STL,1999,REG,1,1999-09-12,Sunday,,BAL,STL,10,27,17,TWA Dome,Home,dome,astroturf,1999091201 13 | 11,1999_01_NYG_TB,1999,REG,1,1999-09-12,Sunday,,NYG,TB,17,13,-4,Raymond James Stadium,Home,outdoors,grass,1999091211 14 | 12,1999_01_CIN_TEN,1999,REG,1,1999-09-12,Sunday,,CIN,TEN,35,36,1,Adelphia Coliseum,Home,outdoors,grass,1999091204 15 | 13,1999_01_DAL_WAS,1999,REG,1,1999-09-12,Sunday,,DAL,WAS,41,35,-6,Jack Kent Cooke Stadium,Home,outdoors,grass,1999091205 16 | 14,1999_01_MIA_DEN,1999,REG,1,1999-09-13,Monday,,MIA,DEN,38,21,-17,Mile High Stadium,Home,outdoors,grass,1999091300 17 | 15,1999_02_PIT_BAL,1999,REG,2,1999-09-19,Sunday,,PIT,BAL,23,20,-3,PSINet Stadium,Home,outdoors,grass,1999091905 18 | 16,1999_02_NYJ_BUF,1999,REG,2,1999-09-19,Sunday,,NYJ,BUF,3,17,14,Ralph Wilson Stadium,Home,outdoors,astroturf,1999091913 19 | 17,1999_02_JAX_CAR,1999,REG,2,1999-09-19,Sunday,,JAX,CAR,22,20,-2,Ericsson Stadium,Home,outdoors,grass,1999091903 20 | 18,1999_02_SEA_CHI,1999,REG,2,1999-09-19,Sunday,,SEA,CHI,14,13,-1,Soldier Field,Home,outdoors,grass,1999091907 21 | 19,1999_02_SD_CIN,1999,REG,2,1999-09-19,Sunday,,SD,CIN,34,7,-27,Cinergy Field,Home,outdoors,astroturf,1999091906 22 | 20,1999_02_GB_DET,1999,REG,2,1999-09-19,Sunday,,GB,DET,15,23,8,Pontiac Silverdome,Home,dome,astroturf,1999091901 23 | 21,1999_02_DEN_KC,1999,REG,2,1999-09-19,Sunday,,DEN,KC,10,26,16,Arrowhead Stadium,Home,outdoors,grass,1999091912 24 | 22,1999_02_ARI_MIA,1999,REG,2,1999-09-19,Sunday,,ARI,MIA,16,19,3,Pro Player Stadium,Home,outdoors,grass,1999091900 25 | 23,1999_02_OAK_MIN,1999,REG,2,1999-09-19,Sunday,,OAK,MIN,22,17,-5,Hubert H. Humphrey Metrodome,Home,dome,astroturf,1999091904 26 | 24,1999_02_IND_NE,1999,REG,2,1999-09-19,Sunday,,IND,NE,28,31,3,Foxboro Stadium,Home,outdoors,grass,1999091902 27 | 25,1999_02_WAS_NYG,1999,REG,2,1999-09-19,Sunday,,WAS,NYG,50,21,-29,Giants Stadium,Home,outdoors,astroturf,1999091909 28 | 26,1999_02_TB_PHI,1999,REG,2,1999-09-19,Sunday,,TB,PHI,19,5,-14,Veterans Stadium,Home,outdoors,astroturf,1999091908 29 | 27,1999_02_NO_SF,1999,REG,2,1999-09-19,Sunday,,NO,SF,21,28,7,3Com Park,Home,outdoors,grass,1999091910 30 | 28,1999_02_CLE_TEN,1999,REG,2,1999-09-19,Sunday,,CLE,TEN,9,26,17,Adelphia Coliseum,Home,outdoors,grass,1999091911 31 | 29,1999_02_ATL_DAL,1999,REG,2,1999-09-20,Monday,,ATL,DAL,7,24,17,Texas Stadium,Home,outdoors,astroturf,1999092000 32 | 30,1999_03_CLE_BAL,1999,REG,3,1999-09-26,Sunday,,CLE,BAL,10,17,7,PSINet Stadium,Home,outdoors,grass,1999092603 33 | 31,1999_03_PHI_BUF,1999,REG,3,1999-09-26,Sunday,,PHI,BUF,0,26,26,Ralph Wilson Stadium,Home,outdoors,astroturf,1999092606 34 | 32,1999_03_CIN_CAR,1999,REG,3,1999-09-26,Sunday,,CIN,CAR,3,27,24,Ericsson Stadium,Home,outdoors,grass,1999092602 35 | 33,1999_03_MIN_GB,1999,REG,3,1999-09-26,Sunday,,MIN,GB,20,23,3,Lambeau Field,Home,outdoors,grass,1999092611 36 | 34,1999_03_TEN_JAX,1999,REG,3,1999-09-26,Sunday,,TEN,JAX,20,19,-1,Alltel Stadium,Home,outdoors,grass,1999092608 37 | 35,1999_03_DET_KC,1999,REG,3,1999-09-26,Sunday,,DET,KC,21,31,10,Arrowhead Stadium,Home,outdoors,grass,1999092605 38 | 36,1999_03_NYG_NE,1999,REG,3,1999-09-26,Sunday,,NYG,NE,14,16,2,Foxboro Stadium,Home,outdoors,grass,1999092612 39 | 37,1999_03_WAS_NYJ,1999,REG,3,1999-09-26,Sunday,,WAS,NYJ,27,20,-7,Giants Stadium,Home,outdoors,astroturf,1999092601 40 | 38,1999_03_CHI_OAK,1999,REG,3,1999-09-26,Sunday,,CHI,OAK,17,24,7,Network Associates Coliseum,Home,outdoors,grass,1999092610 41 | 39,1999_03_SEA_PIT,1999,REG,3,1999-09-26,Sunday,,SEA,PIT,29,10,-19,Three Rivers Stadium,Home,outdoors,astroturf,1999092607 42 | 40,1999_03_IND_SD,1999,REG,3,1999-09-26,Sunday,,IND,SD,27,19,-8,Qualcomm Stadium,Home,outdoors,grass,1999092609 43 | 41,1999_03_ATL_STL,1999,REG,3,1999-09-26,Sunday,,ATL,STL,7,35,28,TWA Dome,Home,dome,astroturf,1999092600 44 | 42,1999_03_DEN_TB,1999,REG,3,1999-09-26,Sunday,,DEN,TB,10,13,3,Raymond James Stadium,Home,outdoors,grass,1999092604 45 | 43,1999_03_SF_ARI,1999,REG,3,1999-09-27,Monday,,SF,ARI,24,10,-14,Sun Devil Stadium,Home,outdoors,grass,1999092700 46 | 44,1999_04_BAL_ATL,1999,REG,4,1999-10-03,Sunday,,BAL,ATL,19,13,-6,Georgia Dome,Home,dome,astroturf,1999100301 47 | 45,1999_04_NO_CHI,1999,REG,4,1999-10-03,Sunday,,NO,CHI,10,14,4,Soldier Field,Home,outdoors,grass,1999100304 48 | 46,1999_04_STL_CIN,1999,REG,4,1999-10-03,Sunday,,STL,CIN,38,10,-28,Cinergy Field,Home,outdoors,astroturf,1999100306 49 | 47,1999_04_NE_CLE,1999,REG,4,1999-10-03,Sunday,,NE,CLE,19,7,-12,Cleveland Browns Stadium,Home,outdoors,grass,1999100303 50 | 48,1999_04_ARI_DAL,1999,REG,4,1999-10-03,Sunday,,ARI,DAL,7,35,28,Texas Stadium,Home,outdoors,astroturf,1999100300 51 | 49,1999_04_NYJ_DEN,1999,REG,4,1999-10-03,Sunday,,NYJ,DEN,21,13,-8,Mile High Stadium,Home,outdoors,grass,1999100310 52 | 50,1999_04_TB_MIN,1999,REG,4,1999-10-03,Sunday,,TB,MIN,14,21,7,Hubert H. Humphrey Metrodome,Home,dome,astroturf,1999100307 53 | 51,1999_04_PHI_NYG,1999,REG,4,1999-10-03,Sunday,,PHI,NYG,15,16,1,Giants Stadium,Home,outdoors,astroturf,1999100305 54 | 52,1999_04_JAX_PIT,1999,REG,4,1999-10-03,Sunday,,JAX,PIT,17,3,-14,Three Rivers Stadium,Home,outdoors,astroturf,1999100302 55 | 53,1999_04_KC_SD,1999,REG,4,1999-10-03,Sunday,,KC,SD,14,21,7,Qualcomm Stadium,Home,outdoors,grass,1999100309 56 | 54,1999_04_OAK_SEA,1999,REG,4,1999-10-03,Sunday,,OAK,SEA,21,22,1,Seattle Kingdome,Home,dome,astroturf,1999100312 57 | 55,1999_04_TEN_SF,1999,REG,4,1999-10-03,Sunday,,TEN,SF,22,24,2,3Com Park,Home,outdoors,grass,1999100311 58 | 56,1999_04_CAR_WAS,1999,REG,4,1999-10-03,Sunday,,CAR,WAS,36,38,2,Jack Kent Cooke Stadium,Home,outdoors,grass,1999100308 59 | 57,1999_04_BUF_MIA,1999,REG,4,1999-10-04,Monday,,BUF,MIA,23,18,-5,Pro Player Stadium,Home,outdoors,grass,1999100400 60 | 58,1999_05_NYG_ARI,1999,REG,5,1999-10-10,Sunday,,NYG,ARI,3,14,11,Sun Devil Stadium,Home,outdoors,grass,1999101008 61 | 59,1999_05_PIT_BUF,1999,REG,5,1999-10-10,Sunday,,PIT,BUF,21,24,3,Ralph Wilson Stadium,Home,outdoors,astroturf,1999101005 62 | 60,1999_05_CIN_CLE,1999,REG,5,1999-10-10,Sunday,,CIN,CLE,18,17,-1,Cleveland Browns Stadium,Home,outdoors,grass,1999101002 63 | 61,1999_05_SD_DET,1999,REG,5,1999-10-10,Sunday,,SD,DET,20,10,-10,Pontiac Silverdome,Home,dome,astroturf,1999101006 64 | 62,1999_05_TB_GB,1999,REG,5,1999-10-10,Sunday,,TB,GB,23,26,3,Lambeau Field,Home,outdoors,grass,1999101012 65 | 63,1999_05_MIA_IND,1999,REG,5,1999-10-10,Sunday,,MIA,IND,34,31,-3,RCA Dome,Home,dome,astroturf,1999101011 66 | 64,1999_05_NE_KC,1999,REG,5,1999-10-10,Sunday,,NE,KC,14,16,2,Arrowhead Stadium,Home,outdoors,grass,1999101004 67 | 65,1999_05_CHI_MIN,1999,REG,5,1999-10-10,Sunday,,CHI,MIN,24,22,-2,Hubert H. Humphrey Metrodome,Home,dome,astroturf,1999101001 68 | 66,1999_05_ATL_NO,1999,REG,5,1999-10-10,Sunday,,ATL,NO,20,17,-3,Louisiana Superdome,Home,dome,astroturf,1999101000 69 | 67,1999_05_DEN_OAK,1999,REG,5,1999-10-10,Sunday,,DEN,OAK,16,13,-3,Network Associates Coliseum,Home,outdoors,grass,1999101010 70 | 68,1999_05_DAL_PHI,1999,REG,5,1999-10-10,Sunday,,DAL,PHI,10,13,3,Veterans Stadium,Home,outdoors,astroturf,1999101003 71 | 69,1999_05_SF_STL,1999,REG,5,1999-10-10,Sunday,,SF,STL,20,42,22,TWA Dome,Home,dome,astroturf,1999101007 72 | 70,1999_05_BAL_TEN,1999,REG,5,1999-10-10,Sunday,,BAL,TEN,11,14,3,Adelphia Coliseum,Home,outdoors,grass,1999101009 73 | 71,1999_05_JAX_NYJ,1999,REG,5,1999-10-11,Monday,,JAX,NYJ,16,6,-10,Giants Stadium,Home,outdoors,astroturf,1999101100 74 | 72,1999_06_WAS_ARI,1999,REG,6,1999-10-17,Sunday,,WAS,ARI,24,10,-14,Sun Devil Stadium,Home,outdoors,grass,1999101712 75 | 73,1999_06_STL_ATL,1999,REG,6,1999-10-17,Sunday,,STL,ATL,41,13,-28,Georgia Dome,Home,dome,astroturf,1999101707 76 | 74,1999_06_OAK_BUF,1999,REG,6,1999-10-17,Sunday,,OAK,BUF,20,14,-6,Ralph Wilson Stadium,Home,outdoors,astroturf,1999101704 77 | 75,1999_06_PHI_CHI,1999,REG,6,1999-10-17,Sunday,,PHI,CHI,20,16,-4,Soldier Field,Home,outdoors,grass,1999101705 78 | 76,1999_06_PIT_CIN,1999,REG,6,1999-10-17,Sunday,,PIT,CIN,17,3,-14,Cinergy Field,Home,outdoors,astroturf,1999101706 79 | 77,1999_06_GB_DEN,1999,REG,6,1999-10-17,Sunday,,GB,DEN,10,31,21,Mile High Stadium,Home,outdoors,grass,1999101711 80 | 78,1999_06_MIN_DET,1999,REG,6,1999-10-17,Sunday,,MIN,DET,23,25,2,Pontiac Silverdome,Home,dome,astroturf,1999101703 81 | 79,1999_06_CLE_JAX,1999,REG,6,1999-10-17,Sunday,,CLE,JAX,7,24,17,Alltel Stadium,Home,outdoors,grass,1999101700 82 | 80,1999_06_MIA_NE,1999,REG,6,1999-10-17,Sunday,,MIA,NE,31,30,-1,Foxboro Stadium,Home,outdoors,grass,1999101702 83 | 81,1999_06_TEN_NO,1999,REG,6,1999-10-17,Sunday,,TEN,NO,24,21,-3,Louisiana Superdome,Home,dome,astroturf,1999101708 84 | 82,1999_06_IND_NYJ,1999,REG,6,1999-10-17,Sunday,,IND,NYJ,16,13,-3,Giants Stadium,Home,outdoors,astroturf,1999101701 85 | 83,1999_06_SEA_SD,1999,REG,6,1999-10-17,Sunday,,SEA,SD,10,13,3,Qualcomm Stadium,Home,outdoors,grass,1999101709 86 | 84,1999_06_CAR_SF,1999,REG,6,1999-10-17,Sunday,,CAR,SF,31,29,-2,3Com Park,Home,outdoors,grass,1999101710 87 | 85,1999_06_DAL_NYG,1999,REG,6,1999-10-18,Monday,,DAL,NYG,10,13,3,Giants Stadium,Home,outdoors,astroturf,1999101800 88 | 86,1999_07_KC_BAL,1999,REG,7,1999-10-21,Thursday,,KC,BAL,35,8,-27,PSINet Stadium,Home,outdoors,grass,1999102100 89 | 87,1999_07_DET_CAR,1999,REG,7,1999-10-24,Sunday,,DET,CAR,24,9,-15,Ericsson Stadium,Home,outdoors,grass,1999102404 90 | 88,1999_07_WAS_DAL,1999,REG,7,1999-10-24,Sunday,,WAS,DAL,20,38,18,Texas Stadium,Home,outdoors,astroturf,1999102408 91 | 89,1999_07_CIN_IND,1999,REG,7,1999-10-24,Sunday,,CIN,IND,10,31,21,RCA Dome,Home,dome,astroturf,1999102401 92 | 90,1999_07_PHI_MIA,1999,REG,7,1999-10-24,Sunday,,PHI,MIA,13,16,3,Pro Player Stadium,Home,outdoors,grass,1999102406 93 | 91,1999_07_SF_MIN,1999,REG,7,1999-10-24,Sunday,,SF,MIN,16,40,24,Hubert H. Humphrey Metrodome,Home,dome,astroturf,1999102407 94 | 92,1999_07_DEN_NE,1999,REG,7,1999-10-24,Sunday,,DEN,NE,23,24,1,Foxboro Stadium,Home,outdoors,grass,1999102403 95 | 93,1999_07_NO_NYG,1999,REG,7,1999-10-24,Sunday,,NO,NYG,3,31,28,Giants Stadium,Home,outdoors,astroturf,1999102405 96 | 94,1999_07_NYJ_OAK,1999,REG,7,1999-10-24,Sunday,,NYJ,OAK,23,24,1,Network Associates Coliseum,Home,outdoors,grass,1999102411 97 | 95,1999_07_GB_SD,1999,REG,7,1999-10-24,Sunday,,GB,SD,31,3,-28,Qualcomm Stadium,Home,outdoors,grass,1999102409 98 | 96,1999_07_BUF_SEA,1999,REG,7,1999-10-24,Sunday,,BUF,SEA,16,26,10,Seattle Kingdome,Home,dome,astroturf,1999102410 99 | 97,1999_07_CLE_STL,1999,REG,7,1999-10-24,Sunday,,CLE,STL,3,34,31,TWA Dome,Home,dome,astroturf,1999102402 100 | 98,1999_07_CHI_TB,1999,REG,7,1999-10-24,Sunday,,CHI,TB,3,6,3,Raymond James Stadium,Home,outdoors,grass,1999102400 101 | 99,1999_07_ATL_PIT,1999,REG,7,1999-10-25,Monday,,ATL,PIT,9,13,4,Three Rivers Stadium,Home,outdoors,astroturf,1999102500 102 | 100,1999_08_NE_ARI,1999,REG,8,1999-10-31,Sunday,,NE,ARI,27,3,-24,Sun Devil Stadium,Home,outdoors,grass,1999103110 103 | 101,1999_08_CAR_ATL,1999,REG,8,1999-10-31,Sunday,,CAR,ATL,20,27,7,Georgia Dome,Home,dome,astroturf,1999103101 104 | 102,1999_08_BUF_BAL,1999,REG,8,1999-10-31,Sunday,,BUF,BAL,13,10,-3,PSINet Stadium,Home,outdoors,grass,1999103100 105 | 103,1999_08_JAX_CIN,1999,REG,8,1999-10-31,Sunday,,JAX,CIN,41,10,-31,Cinergy Field,Home,outdoors,astroturf,1999103105 106 | 104,1999_08_MIN_DEN,1999,REG,8,1999-10-31,Sunday,,MIN,DEN,23,20,-3,Mile High Stadium,Home,outdoors,grass,1999103111 107 | 105,1999_08_TB_DET,1999,REG,8,1999-10-31,Sunday,,TB,DET,3,20,17,Pontiac Silverdome,Home,dome,astroturf,1999103112 108 | 106,1999_08_DAL_IND,1999,REG,8,1999-10-31,Sunday,,DAL,IND,24,34,10,RCA Dome,Home,dome,astroturf,1999103104 109 | 107,1999_08_SD_KC,1999,REG,8,1999-10-31,Sunday,,SD,KC,0,34,34,Arrowhead Stadium,Home,outdoors,grass,1999103108 110 | 108,1999_08_CLE_NO,1999,REG,8,1999-10-31,Sunday,,CLE,NO,21,16,-5,Louisiana Superdome,Home,dome,astroturf,1999103103 111 | 109,1999_08_MIA_OAK,1999,REG,8,1999-10-31,Sunday,,MIA,OAK,16,9,-7,Network Associates Coliseum,Home,outdoors,grass,1999103109 112 | 110,1999_08_NYG_PHI,1999,REG,8,1999-10-31,Sunday,,NYG,PHI,23,17,-6,Veterans Stadium,Home,outdoors,astroturf,1999103106 113 | 111,1999_08_STL_TEN,1999,REG,8,1999-10-31,Sunday,,STL,TEN,21,24,3,Adelphia Coliseum,Home,outdoors,grass,1999103107 114 | 112,1999_08_CHI_WAS,1999,REG,8,1999-10-31,Sunday,,CHI,WAS,22,48,26,Jack Kent Cooke Stadium,Home,outdoors,grass,1999103102 115 | 113,1999_08_SEA_GB,1999,REG,8,1999-11-01,Monday,,SEA,GB,27,7,-20,Lambeau Field,Home,outdoors,grass,1999110100 116 | 114,1999_09_JAX_ATL,1999,REG,9,1999-11-07,Sunday,,JAX,ATL,30,7,-23,Georgia Dome,Home,dome,astroturf,1999110704 117 | 115,1999_09_PHI_CAR,1999,REG,9,1999-11-07,Sunday,,PHI,CAR,7,33,26,Ericsson Stadium,Home,outdoors,grass,1999110706 118 | 116,1999_09_BAL_CLE,1999,REG,9,1999-11-07,Sunday,,BAL,CLE,41,9,-32,Cleveland Browns Stadium,Home,outdoors,grass,1999110701 119 | 117,1999_09_STL_DET,1999,REG,9,1999-11-07,Sunday,,STL,DET,27,31,4,Pontiac Silverdome,Home,dome,astroturf,1999110707 120 | 118,1999_09_CHI_GB,1999,REG,9,1999-11-07,Sunday,,CHI,GB,14,13,-1,Lambeau Field,Home,outdoors,grass,1999110703 121 | 119,1999_09_KC_IND,1999,REG,9,1999-11-07,Sunday,,KC,IND,17,25,8,RCA Dome,Home,dome,astroturf,1999110705 122 | 120,1999_09_TEN_MIA,1999,REG,9,1999-11-07,Sunday,,TEN,MIA,0,17,17,Pro Player Stadium,Home,outdoors,grass,1999110713 123 | 121,1999_09_TB_NO,1999,REG,9,1999-11-07,Sunday,,TB,NO,31,16,-15,Louisiana Superdome,Home,dome,astroturf,1999110708 124 | 122,1999_09_ARI_NYJ,1999,REG,9,1999-11-07,Sunday,,ARI,NYJ,7,12,5,Giants Stadium,Home,outdoors,astroturf,1999110700 125 | 123,1999_09_DEN_SD,1999,REG,9,1999-11-07,Sunday,,DEN,SD,33,17,-16,Qualcomm Stadium,Home,outdoors,grass,1999110712 126 | 124,1999_09_CIN_SEA,1999,REG,9,1999-11-07,Sunday,,CIN,SEA,20,37,17,Seattle Kingdome,Home,dome,astroturf,1999110711 127 | 125,1999_09_PIT_SF,1999,REG,9,1999-11-07,Sunday,,PIT,SF,27,6,-21,3Com Park,Home,outdoors,grass,1999110709 128 | 126,1999_09_BUF_WAS,1999,REG,9,1999-11-07,Sunday,,BUF,WAS,34,17,-17,Jack Kent Cooke Stadium,Home,outdoors,grass,1999110702 129 | 127,1999_09_DAL_MIN,1999,REG,9,1999-11-08,Monday,,DAL,MIN,17,27,10,Hubert H. Humphrey Metrodome,Home,dome,astroturf,1999110800 130 | 128,1999_10_DET_ARI,1999,REG,10,1999-11-14,Sunday,,DET,ARI,19,23,4,Sun Devil Stadium,Home,outdoors,grass,1999111411 131 | 129,1999_10_MIA_BUF,1999,REG,10,1999-11-14,Sunday,,MIA,BUF,3,23,20,Ralph Wilson Stadium,Home,outdoors,astroturf,1999111404 132 | 130,1999_10_MIN_CHI,1999,REG,10,1999-11-14,Sunday,,MIN,CHI,27,24,-3,Soldier Field,Home,outdoors,grass,1999111405 133 | 131,1999_10_TEN_CIN,1999,REG,10,1999-11-14,Sunday,,TEN,CIN,24,14,-10,Cinergy Field,Home,outdoors,astroturf,1999111407 134 | 132,1999_10_GB_DAL,1999,REG,10,1999-11-14,Sunday,,GB,DAL,13,27,14,Texas Stadium,Home,outdoors,astroturf,1999111412 135 | 133,1999_10_BAL_JAX,1999,REG,10,1999-11-14,Sunday,,BAL,JAX,3,6,3,Alltel Stadium,Home,outdoors,grass,1999111409 136 | 134,1999_10_SF_NO,1999,REG,10,1999-11-14,Sunday,,SF,NO,6,24,18,Louisiana Superdome,Home,dome,astroturf,1999111406 137 | 135,1999_10_IND_NYG,1999,REG,10,1999-11-14,Sunday,,IND,NYG,27,19,-8,Giants Stadium,Home,outdoors,astroturf,1999111402 138 | 136,1999_10_SD_OAK,1999,REG,10,1999-11-14,Sunday,,SD,OAK,9,28,19,Network Associates Coliseum,Home,outdoors,grass,1999111410 139 | 137,1999_10_WAS_PHI,1999,REG,10,1999-11-14,Sunday,,WAS,PHI,28,35,7,Veterans Stadium,Home,outdoors,astroturf,1999111408 140 | 138,1999_10_CLE_PIT,1999,REG,10,1999-11-14,Sunday,,CLE,PIT,16,15,-1,Three Rivers Stadium,Home,outdoors,astroturf,1999111401 141 | 139,1999_10_DEN_SEA,1999,REG,10,1999-11-14,Sunday,,DEN,SEA,17,20,3,Seattle Kingdome,Home,dome,astroturf,1999111413 142 | 140,1999_10_CAR_STL,1999,REG,10,1999-11-14,Sunday,,CAR,STL,10,35,25,TWA Dome,Home,dome,astroturf,1999111400 143 | 141,1999_10_KC_TB,1999,REG,10,1999-11-14,Sunday,,KC,TB,10,17,7,Raymond James Stadium,Home,outdoors,grass,1999111403 144 | 142,1999_10_NYJ_NE,1999,REG,10,1999-11-15,Monday,,NYJ,NE,24,17,-7,Foxboro Stadium,Home,outdoors,grass,1999111500 145 | 143,1999_11_DAL_ARI,1999,REG,11,1999-11-21,Sunday,,DAL,ARI,9,13,4,Sun Devil Stadium,Home,outdoors,grass,1999112110 146 | 144,1999_11_BAL_CIN,1999,REG,11,1999-11-21,Sunday,,BAL,CIN,34,31,-3,Cinergy Field,Home,outdoors,astroturf,1999112108 147 | 145,1999_11_CAR_CLE,1999,REG,11,1999-11-21,Sunday,,CAR,CLE,31,17,-14,Cleveland Browns Stadium,Home,outdoors,grass,1999112102 148 | 146,1999_11_DET_GB,1999,REG,11,1999-11-21,Sunday,,DET,GB,17,26,9,Lambeau Field,Home,outdoors,grass,1999112103 149 | 147,1999_11_NO_JAX,1999,REG,11,1999-11-21,Sunday,,NO,JAX,23,41,18,Alltel Stadium,Home,outdoors,grass,1999112113 150 | 148,1999_11_SEA_KC,1999,REG,11,1999-11-21,Sunday,,SEA,KC,31,19,-12,Arrowhead Stadium,Home,outdoors,grass,1999112107 151 | 149,1999_11_NE_MIA,1999,REG,11,1999-11-21,Sunday,,NE,MIA,17,27,10,Pro Player Stadium,Home,outdoors,grass,1999112105 152 | 150,1999_11_BUF_NYJ,1999,REG,11,1999-11-21,Sunday,,BUF,NYJ,7,17,10,Giants Stadium,Home,outdoors,astroturf,1999112101 153 | 151,1999_11_IND_PHI,1999,REG,11,1999-11-21,Sunday,,IND,PHI,44,17,-27,Veterans Stadium,Home,outdoors,astroturf,1999112104 154 | 152,1999_11_CHI_SD,1999,REG,11,1999-11-21,Sunday,,CHI,SD,23,20,-3,Qualcomm Stadium,Home,outdoors,grass,1999112109 155 | 153,1999_11_STL_SF,1999,REG,11,1999-11-21,Sunday,,STL,SF,23,7,-16,3Com Park,Home,outdoors,grass,1999112112 156 | 154,1999_11_ATL_TB,1999,REG,11,1999-11-21,Sunday,,ATL,TB,10,19,9,Raymond James Stadium,Home,outdoors,grass,1999112100 157 | 155,1999_11_PIT_TEN,1999,REG,11,1999-11-21,Sunday,,PIT,TEN,10,16,6,Adelphia Coliseum,Home,outdoors,grass,1999112106 158 | 156,1999_11_NYG_WAS,1999,REG,11,1999-11-21,Sunday,,NYG,WAS,13,23,10,Jack Kent Cooke Stadium,Home,outdoors,grass,1999112111 159 | 157,1999_11_OAK_DEN,1999,REG,11,1999-11-22,Monday,,OAK,DEN,21,27,6,Mile High Stadium,Home,outdoors,grass,1999112200 160 | 158,1999_12_MIA_DAL,1999,REG,12,1999-11-25,Thursday,,MIA,DAL,0,20,20,Texas Stadium,Home,outdoors,astroturf,1999112501 161 | 159,1999_12_CHI_DET,1999,REG,12,1999-11-25,Thursday,,CHI,DET,17,21,4,Pontiac Silverdome,Home,dome,astroturf,1999112500 162 | 160,1999_12_JAX_BAL,1999,REG,12,1999-11-28,Sunday,,JAX,BAL,30,23,-7,PSINet Stadium,Home,outdoors,grass,1999112802 163 | 161,1999_12_NE_BUF,1999,REG,12,1999-11-28,Sunday,,NE,BUF,7,17,10,Ralph Wilson Stadium,Home,outdoors,astroturf,1999112803 164 | 162,1999_12_ATL_CAR,1999,REG,12,1999-11-28,Sunday,,ATL,CAR,28,34,6,Ericsson Stadium,Home,outdoors,grass,1999112811 165 | 163,1999_12_TEN_CLE,1999,REG,12,1999-11-28,Sunday,,TEN,CLE,33,21,-12,Cleveland Browns Stadium,Home,outdoors,grass,1999112807 166 | 164,1999_12_NYJ_IND,1999,REG,12,1999-11-28,Sunday,,NYJ,IND,6,13,7,RCA Dome,Home,dome,astroturf,1999112810 167 | 165,1999_12_SD_MIN,1999,REG,12,1999-11-28,Sunday,,SD,MIN,27,35,8,Hubert H. Humphrey Metrodome,Home,dome,astroturf,1999112806 168 | 166,1999_12_ARI_NYG,1999,REG,12,1999-11-28,Sunday,,ARI,NYG,34,24,-10,Giants Stadium,Home,outdoors,astroturf,1999112800 169 | 167,1999_12_KC_OAK,1999,REG,12,1999-11-28,Sunday,,KC,OAK,37,34,-3,Network Associates Coliseum,Home,outdoors,grass,1999112809 170 | 168,1999_12_CIN_PIT,1999,REG,12,1999-11-28,Sunday,,CIN,PIT,27,20,-7,Three Rivers Stadium,Home,outdoors,astroturf,1999112801 171 | 169,1999_12_TB_SEA,1999,REG,12,1999-11-28,Sunday,,TB,SEA,16,3,-13,Seattle Kingdome,Home,dome,astroturf,1999112808 172 | 170,1999_12_NO_STL,1999,REG,12,1999-11-28,Sunday,,NO,STL,12,43,31,TWA Dome,Home,dome,astroturf,1999112804 173 | 171,1999_12_PHI_WAS,1999,REG,12,1999-11-28,Sunday,,PHI,WAS,17,20,3,Jack Kent Cooke Stadium,Home,outdoors,grass,1999112805 174 | 172,1999_12_GB_SF,1999,REG,12,1999-11-29,Monday,,GB,SF,20,3,-17,3Com Park,Home,outdoors,grass,1999112900 175 | 173,1999_13_PIT_JAX,1999,REG,13,1999-12-02,Thursday,,PIT,JAX,6,20,14,Alltel Stadium,Home,outdoors,grass,1999120200 176 | 174,1999_13_PHI_ARI,1999,REG,13,1999-12-05,Sunday,,PHI,ARI,17,21,4,Sun Devil Stadium,Home,outdoors,grass,1999120504 177 | 175,1999_13_NO_ATL,1999,REG,13,1999-12-05,Sunday,,NO,ATL,12,35,23,Georgia Dome,Home,dome,astroturf,1999120511 178 | 176,1999_13_TEN_BAL,1999,REG,13,1999-12-05,Sunday,,TEN,BAL,14,41,27,PSINet Stadium,Home,outdoors,grass,1999120502 179 | 177,1999_13_STL_CAR,1999,REG,13,1999-12-05,Sunday,,STL,CAR,34,21,-13,Ericsson Stadium,Home,outdoors,grass,1999120500 180 | 178,1999_13_GB_CHI,1999,REG,13,1999-12-05,Sunday,,GB,CHI,35,19,-16,Soldier Field,Home,outdoors,grass,1999120509 181 | 179,1999_13_SF_CIN,1999,REG,13,1999-12-05,Sunday,,SF,CIN,30,44,14,Cinergy Field,Home,outdoors,astroturf,1999120501 182 | 180,1999_13_KC_DEN,1999,REG,13,1999-12-05,Sunday,,KC,DEN,16,10,-6,Mile High Stadium,Home,outdoors,grass,1999120507 183 | 181,1999_13_WAS_DET,1999,REG,13,1999-12-05,Sunday,,WAS,DET,17,33,16,Pontiac Silverdome,Home,dome,astroturf,1999120503 184 | 182,1999_13_IND_MIA,1999,REG,13,1999-12-05,Sunday,,IND,MIA,37,34,-3,Pro Player Stadium,Home,outdoors,grass,1999120510 185 | 183,1999_13_DAL_NE,1999,REG,13,1999-12-05,Sunday,,DAL,NE,6,13,7,Foxboro Stadium,Home,outdoors,grass,1999120508 186 | 184,1999_13_NYJ_NYG,1999,REG,13,1999-12-05,Sunday,,NYJ,NYG,28,41,13,Giants Stadium,Home,outdoors,astroturf,1999120512 187 | 185,1999_13_SEA_OAK,1999,REG,13,1999-12-05,Sunday,,SEA,OAK,21,30,9,Network Associates Coliseum,Home,outdoors,grass,1999120506 188 | 186,1999_13_CLE_SD,1999,REG,13,1999-12-05,Sunday,,CLE,SD,10,23,13,Qualcomm Stadium,Home,outdoors,grass,1999120505 189 | 187,1999_13_MIN_TB,1999,REG,13,1999-12-06,Monday,,MIN,TB,17,24,7,Raymond James Stadium,Home,outdoors,grass,1999120600 190 | 188,1999_14_OAK_TEN,1999,REG,14,1999-12-09,Thursday,,OAK,TEN,14,21,7,Adelphia Coliseum,Home,outdoors,grass,1999120900 191 | 189,1999_14_NYG_BUF,1999,REG,14,1999-12-12,Sunday,,NYG,BUF,19,17,-2,Ralph Wilson Stadium,Home,outdoors,astroturf,1999121206 192 | 190,1999_14_CLE_CIN,1999,REG,14,1999-12-12,Sunday,,CLE,CIN,28,44,16,Cinergy Field,Home,outdoors,astroturf,1999121203 193 | 191,1999_14_PHI_DAL,1999,REG,14,1999-12-12,Sunday,,PHI,DAL,10,20,10,Texas Stadium,Home,outdoors,astroturf,1999121207 194 | 192,1999_14_CAR_GB,1999,REG,14,1999-12-12,Sunday,,CAR,GB,33,31,-2,Lambeau Field,Home,outdoors,grass,1999121202 195 | 193,1999_14_NE_IND,1999,REG,14,1999-12-12,Sunday,,NE,IND,15,20,5,RCA Dome,Home,dome,astroturf,1999121205 196 | 194,1999_14_MIN_KC,1999,REG,14,1999-12-12,Sunday,,MIN,KC,28,31,3,Arrowhead Stadium,Home,outdoors,grass,1999121212 197 | 195,1999_14_STL_NO,1999,REG,14,1999-12-12,Sunday,,STL,NO,30,14,-16,Louisiana Superdome,Home,dome,astroturf,1999121208 198 | 196,1999_14_MIA_NYJ,1999,REG,14,1999-12-12,Sunday,,MIA,NYJ,20,28,8,Giants Stadium,Home,outdoors,astroturf,1999121210 199 | 197,1999_14_BAL_PIT,1999,REG,14,1999-12-12,Sunday,,BAL,PIT,31,24,-7,Three Rivers Stadium,Home,outdoors,astroturf,1999121201 200 | 198,1999_14_SD_SEA,1999,REG,14,1999-12-12,Sunday,,SD,SEA,19,16,-3,Seattle Kingdome,Home,dome,astroturf,1999121209 201 | 199,1999_14_ATL_SF,1999,REG,14,1999-12-12,Sunday,,ATL,SF,7,26,19,3Com Park,Home,outdoors,grass,1999121211 202 | 200,1999_14_DET_TB,1999,REG,14,1999-12-12,Sunday,,DET,TB,16,23,7,Raymond James Stadium,Home,outdoors,grass,1999121204 203 | 201,1999_14_ARI_WAS,1999,REG,14,1999-12-12,Sunday,,ARI,WAS,3,28,25,Jack Kent Cooke Stadium,Home,outdoors,grass,1999121200 204 | 202,1999_14_DEN_JAX,1999,REG,14,1999-12-13,Monday,,DEN,JAX,24,27,3,Alltel Stadium,Home,outdoors,grass,1999121300 205 | 203,1999_15_SF_CAR,1999,REG,15,1999-12-18,Saturday,,SF,CAR,24,41,17,Ericsson Stadium,Home,outdoors,grass,1999121801 206 | 204,1999_15_PIT_KC,1999,REG,15,1999-12-18,Saturday,,PIT,KC,19,35,16,Arrowhead Stadium,Home,outdoors,grass,1999121800 207 | 205,1999_15_BUF_ARI,1999,REG,15,1999-12-19,Sunday,,BUF,ARI,31,21,-10,Sun Devil Stadium,Home,outdoors,grass,1999121911 208 | 206,1999_15_NO_BAL,1999,REG,15,1999-12-19,Sunday,,NO,BAL,8,31,23,PSINet Stadium,Home,outdoors,grass,1999121904 209 | 207,1999_15_DET_CHI,1999,REG,15,1999-12-19,Sunday,,DET,CHI,10,28,18,Soldier Field,Home,outdoors,grass,1999121901 210 | 208,1999_15_JAX_CLE,1999,REG,15,1999-12-19,Sunday,,JAX,CLE,24,14,-10,Cleveland Browns Stadium,Home,outdoors,grass,1999121902 211 | 209,1999_15_NYJ_DAL,1999,REG,15,1999-12-19,Sunday,,NYJ,DAL,22,21,-1,Texas Stadium,Home,outdoors,astroturf,1999121909 212 | 210,1999_15_SEA_DEN,1999,REG,15,1999-12-19,Sunday,,SEA,DEN,30,36,6,Mile High Stadium,Home,outdoors,grass,1999121910 213 | 211,1999_15_WAS_IND,1999,REG,15,1999-12-19,Sunday,,WAS,IND,21,24,3,RCA Dome,Home,dome,astroturf,1999121907 214 | 212,1999_15_SD_MIA,1999,REG,15,1999-12-19,Sunday,,SD,MIA,9,12,3,Pro Player Stadium,Home,outdoors,grass,1999121906 215 | 213,1999_15_TB_OAK,1999,REG,15,1999-12-19,Sunday,,TB,OAK,0,45,45,Network Associates Coliseum,Home,outdoors,grass,1999121908 216 | 214,1999_15_NE_PHI,1999,REG,15,1999-12-19,Sunday,,NE,PHI,9,24,15,Veterans Stadium,Home,outdoors,astroturf,1999121903 217 | 215,1999_15_NYG_STL,1999,REG,15,1999-12-19,Sunday,,NYG,STL,10,31,21,TWA Dome,Home,dome,astroturf,1999121905 218 | 216,1999_15_ATL_TEN,1999,REG,15,1999-12-19,Sunday,,ATL,TEN,17,30,13,Adelphia Coliseum,Home,outdoors,grass,1999121900 219 | 217,1999_15_GB_MIN,1999,REG,15,1999-12-20,Monday,,GB,MIN,20,24,4,Hubert H. Humphrey Metrodome,Home,dome,astroturf,1999122000 220 | 218,1999_16_DAL_NO,1999,REG,16,1999-12-24,Friday,,DAL,NO,24,31,7,Louisiana Superdome,Home,dome,astroturf,1999122400 221 | 219,1999_16_DEN_DET,1999,REG,16,1999-12-25,Saturday,,DEN,DET,17,7,-10,Pontiac Silverdome,Home,dome,astroturf,1999122500 222 | 220,1999_16_ARI_ATL,1999,REG,16,1999-12-26,Sunday,,ARI,ATL,14,37,23,Georgia Dome,Home,dome,astroturf,1999122600 223 | 221,1999_16_CIN_BAL,1999,REG,16,1999-12-26,Sunday,,CIN,BAL,0,22,22,PSINet Stadium,Home,outdoors,grass,1999122604 224 | 222,1999_16_IND_CLE,1999,REG,16,1999-12-26,Sunday,,IND,CLE,29,28,-1,Cleveland Browns Stadium,Home,outdoors,grass,1999122605 225 | 223,1999_16_BUF_NE,1999,REG,16,1999-12-26,Sunday,,BUF,NE,13,10,-3,Foxboro Stadium,Home,outdoors,grass,1999122601 226 | 224,1999_16_MIN_NYG,1999,REG,16,1999-12-26,Sunday,,MIN,NYG,34,17,-17,Giants Stadium,Home,outdoors,astroturf,1999122607 227 | 225,1999_16_CAR_PIT,1999,REG,16,1999-12-26,Sunday,,CAR,PIT,20,30,10,Three Rivers Stadium,Home,outdoors,astroturf,1999122602 228 | 226,1999_16_OAK_SD,1999,REG,16,1999-12-26,Sunday,,OAK,SD,20,23,3,Qualcomm Stadium,Home,outdoors,grass,1999122608 229 | 227,1999_16_KC_SEA,1999,REG,16,1999-12-26,Sunday,,KC,SEA,14,23,9,Seattle Kingdome,Home,dome,astroturf,1999122609 230 | 228,1999_16_WAS_SF,1999,REG,16,1999-12-26,Sunday,,WAS,SF,26,20,-6,3Com Park,Home,outdoors,grass,1999122611 231 | 229,1999_16_CHI_STL,1999,REG,16,1999-12-26,Sunday,,CHI,STL,12,34,22,TWA Dome,Home,dome,astroturf,1999122603 232 | 230,1999_16_GB_TB,1999,REG,16,1999-12-26,Sunday,,GB,TB,10,29,19,Raymond James Stadium,Home,outdoors,grass,1999122610 233 | 231,1999_16_JAX_TEN,1999,REG,16,1999-12-26,Sunday,,JAX,TEN,14,41,27,Adelphia Coliseum,Home,outdoors,grass,1999122606 234 | 232,1999_16_NYJ_MIA,1999,REG,16,1999-12-27,Monday,,NYJ,MIA,38,31,-7,Pro Player Stadium,Home,outdoors,grass,1999122700 235 | 233,1999_17_IND_BUF,1999,REG,17,2000-01-02,Sunday,,IND,BUF,6,31,25,Ralph Wilson Stadium,Home,outdoors,astroturf,2000010212 236 | 234,1999_17_NO_CAR,1999,REG,17,2000-01-02,Sunday,,NO,CAR,13,45,32,Ericsson Stadium,Home,outdoors,grass,2000010204 237 | 235,1999_17_TB_CHI,1999,REG,17,2000-01-02,Sunday,,TB,CHI,20,6,-14,Soldier Field,Home,outdoors,grass,2000010207 238 | 236,1999_17_NYG_DAL,1999,REG,17,2000-01-02,Sunday,,NYG,DAL,18,26,8,Texas Stadium,Home,outdoors,astroturf,2000010208 239 | 237,1999_17_SD_DEN,1999,REG,17,2000-01-02,Sunday,,SD,DEN,12,6,-6,Mile High Stadium,Home,outdoors,grass,2000010211 240 | 238,1999_17_ARI_GB,1999,REG,17,2000-01-02,Sunday,,ARI,GB,24,49,25,Lambeau Field,Home,outdoors,grass,2000010200 241 | 239,1999_17_CIN_JAX,1999,REG,17,2000-01-02,Sunday,,CIN,JAX,7,24,17,Alltel Stadium,Home,outdoors,grass,2000010202 242 | 240,1999_17_OAK_KC,1999,REG,17,2000-01-02,Sunday,,OAK,KC,41,38,-3,Arrowhead Stadium,Home,outdoors,grass,2000010213 243 | 241,1999_17_DET_MIN,1999,REG,17,2000-01-02,Sunday,,DET,MIN,17,24,7,Hubert H. Humphrey Metrodome,Home,dome,astroturf,2000010203 244 | 242,1999_17_BAL_NE,1999,REG,17,2000-01-02,Sunday,,BAL,NE,3,20,17,Foxboro Stadium,Home,outdoors,grass,2000010201 245 | 243,1999_17_SEA_NYJ,1999,REG,17,2000-01-02,Sunday,,SEA,NYJ,9,19,10,Giants Stadium,Home,outdoors,astroturf,2000010206 246 | 244,1999_17_STL_PHI,1999,REG,17,2000-01-02,Sunday,,STL,PHI,31,38,7,Veterans Stadium,Home,outdoors,astroturf,2000010205 247 | 245,1999_17_TEN_PIT,1999,REG,17,2000-01-02,Sunday,,TEN,PIT,47,36,-11,Three Rivers Stadium,Home,outdoors,astroturf,2000010209 248 | 246,1999_17_MIA_WAS,1999,REG,17,2000-01-02,Sunday,,MIA,WAS,10,21,11,Jack Kent Cooke Stadium,Home,outdoors,grass,2000010210 249 | 247,1999_17_SF_ATL,1999,REG,17,2000-01-03,Monday,,SF,ATL,29,34,5,Georgia Dome,Home,dome,astroturf,2000010300 250 | 248,1999_18_BUF_TEN,1999,WC,18,2000-01-08,Saturday,,BUF,TEN,16,22,6,Adelphia Coliseum,Home,outdoors,grass,2000010800 251 | 249,1999_18_DET_WAS,1999,WC,18,2000-01-08,Saturday,,DET,WAS,13,27,14,Jack Kent Cooke Stadium,Home,outdoors,grass,2000010801 252 | 250,1999_18_DAL_MIN,1999,WC,18,2000-01-09,Sunday,,DAL,MIN,10,27,17,Hubert H. Humphrey Metrodome,Home,dome,astroturf,2000010900 253 | 251,1999_18_MIA_SEA,1999,WC,18,2000-01-09,Sunday,,MIA,SEA,20,17,-3,Seattle Kingdome,Home,dome,astroturf,2000010901 254 | 252,1999_19_MIA_JAX,1999,DIV,19,2000-01-15,Saturday,,MIA,JAX,7,62,55,Alltel Stadium,Home,outdoors,grass,2000011501 255 | 253,1999_19_WAS_TB,1999,DIV,19,2000-01-15,Saturday,,WAS,TB,13,14,1,Raymond James Stadium,Home,outdoors,grass,2000011500 256 | 254,1999_19_TEN_IND,1999,DIV,19,2000-01-16,Sunday,,TEN,IND,19,16,-3,RCA Dome,Home,dome,astroturf,2000011601 257 | 255,1999_19_MIN_STL,1999,DIV,19,2000-01-16,Sunday,,MIN,STL,37,49,12,TWA Dome,Home,dome,astroturf,2000011600 258 | 256,1999_20_TEN_JAX,1999,CON,20,2000-01-23,Sunday,,TEN,JAX,33,14,-19,Alltel Stadium,Home,outdoors,grass,2000012301 259 | 257,1999_20_TB_STL,1999,CON,20,2000-01-23,Sunday,,TB,STL,6,11,5,TWA Dome,Home,dome,astroturf,2000012300 260 | 258,1999_21_STL_TEN,1999,SB,21,2000-01-30,Sunday,,STL,TEN,23,16,-7,Georgia Dome,Neutral,dome,astroturf,2000013000 261 | -------------------------------------------------------------------------------- /data/schedules/2000.csv: -------------------------------------------------------------------------------- 1 | ,game_id,season,game_type,week,gameday,weekday,gametime,away_team,home_team,away_score,home_score,home_result,stadium,location,roof,surface,old_game_id 2 | 0,2000_01_SF_ATL,2000,REG,1,2000-09-03,Sunday,13:00,SF,ATL,28,36,8,Georgia Dome,Home,dome,astroturf,2000090310 3 | 1,2000_01_JAX_CLE,2000,REG,1,2000-09-03,Sunday,13:00,JAX,CLE,27,7,-20,Cleveland Browns Stadium,Home,outdoors,grass,2000090306 4 | 2,2000_01_IND_KC,2000,REG,1,2000-09-03,Sunday,13:00,IND,KC,27,14,-13,Arrowhead Stadium,Home,outdoors,grass,2000090305 5 | 3,2000_01_CHI_MIN,2000,REG,1,2000-09-03,Sunday,13:00,CHI,MIN,27,30,3,Hubert H. Humphrey Metrodome,Home,dome,astroturf,2000090303 6 | 4,2000_01_TB_NE,2000,REG,1,2000-09-03,Sunday,13:00,TB,NE,21,16,-5,Foxboro Stadium,Home,outdoors,grass,2000090312 7 | 5,2000_01_DET_NO,2000,REG,1,2000-09-03,Sunday,13:00,DET,NO,14,10,-4,Louisiana Superdome,Home,dome,astroturf,2000090304 8 | 6,2000_01_ARI_NYG,2000,REG,1,2000-09-03,Sunday,13:00,ARI,NYG,16,21,5,Giants Stadium,Home,outdoors,grass,2000090300 9 | 7,2000_01_BAL_PIT,2000,REG,1,2000-09-03,Sunday,13:00,BAL,PIT,16,0,-16,Three Rivers Stadium,Home,outdoors,astroturf,2000090301 10 | 8,2000_01_CAR_WAS,2000,REG,1,2000-09-03,Sunday,13:00,CAR,WAS,17,20,3,FedExField,Home,outdoors,grass,2000090302 11 | 9,2000_01_PHI_DAL,2000,REG,1,2000-09-03,Sunday,16:05,PHI,DAL,41,14,-27,Texas Stadium,Home,outdoors,astroturf,2000090308 12 | 10,2000_01_NYJ_GB,2000,REG,1,2000-09-03,Sunday,16:15,NYJ,GB,20,16,-4,Lambeau Field,Home,outdoors,grass,2000090307 13 | 11,2000_01_SEA_MIA,2000,REG,1,2000-09-03,Sunday,16:15,SEA,MIA,0,23,23,Pro Player Stadium,Home,outdoors,grass,2000090311 14 | 12,2000_01_SD_OAK,2000,REG,1,2000-09-03,Sunday,16:15,SD,OAK,6,9,3,Network Associates Coliseum,Home,outdoors,grass,2000090309 15 | 13,2000_01_TEN_BUF,2000,REG,1,2000-09-03,Sunday,20:20,TEN,BUF,13,16,3,Ralph Wilson Stadium,Home,outdoors,astroturf,2000090313 16 | 14,2000_01_DEN_STL,2000,REG,1,2000-09-04,Monday,09:00,DEN,STL,36,41,5,TWA Dome,Home,dome,astroturf,2000090400 17 | 15,2000_02_OAK_IND,2000,REG,2,2000-09-10,Sunday,12:00,OAK,IND,38,31,-7,RCA Dome,Home,dome,astroturf,2000091010 18 | 16,2000_02_JAX_BAL,2000,REG,2,2000-09-10,Sunday,13:00,JAX,BAL,36,39,3,PSINet Stadium,Home,outdoors,grass,2000091005 19 | 17,2000_02_GB_BUF,2000,REG,2,2000-09-10,Sunday,13:00,GB,BUF,18,27,9,Ralph Wilson Stadium,Home,outdoors,astroturf,2000091004 20 | 18,2000_02_CLE_CIN,2000,REG,2,2000-09-10,Sunday,13:00,CLE,CIN,24,7,-17,Paul Brown Stadium,Home,outdoors,grass,2000091003 21 | 19,2000_02_MIA_MIN,2000,REG,2,2000-09-10,Sunday,13:00,MIA,MIN,7,13,6,Hubert H. Humphrey Metrodome,Home,dome,astroturf,2000091007 22 | 20,2000_02_NYG_PHI,2000,REG,2,2000-09-10,Sunday,13:00,NYG,PHI,33,18,-15,Veterans Stadium,Home,outdoors,astroturf,2000091009 23 | 21,2000_02_CHI_TB,2000,REG,2,2000-09-10,Sunday,13:00,CHI,TB,0,41,41,Raymond James Stadium,Home,outdoors,grass,2000091002 24 | 22,2000_02_KC_TEN,2000,REG,2,2000-09-10,Sunday,13:00,KC,TEN,14,17,3,Adelphia Coliseum,Home,outdoors,grass,2000091006 25 | 23,2000_02_ATL_DEN,2000,REG,2,2000-09-10,Sunday,16:15,ATL,DEN,14,42,28,Mile High Stadium,Home,outdoors,grass,2000091000 26 | 24,2000_02_WAS_DET,2000,REG,2,2000-09-10,Sunday,16:15,WAS,DET,10,15,5,Pontiac Silverdome,Home,dome,astroturf,2000091012 27 | 25,2000_02_NO_SD,2000,REG,2,2000-09-10,Sunday,16:15,NO,SD,28,27,-1,Qualcomm Stadium,Home,outdoors,grass,2000091008 28 | 26,2000_02_STL_SEA,2000,REG,2,2000-09-10,Sunday,16:15,STL,SEA,37,34,-3,Husky Stadium,Home,outdoors,fieldturf,2000091011 29 | 27,2000_02_CAR_SF,2000,REG,2,2000-09-10,Sunday,16:15,CAR,SF,38,22,-16,3Com Park,Home,outdoors,grass,2000091001 30 | 28,2000_02_DAL_ARI,2000,REG,2,2000-09-10,Sunday,20:20,DAL,ARI,31,32,1,Sun Devil Stadium,Home,outdoors,grass,2000091013 31 | 29,2000_02_NE_NYJ,2000,REG,2,2000-09-11,Monday,09:00,NE,NYJ,19,20,1,Giants Stadium,Home,outdoors,grass,2000091100 32 | 30,2000_03_ATL_CAR,2000,REG,3,2000-09-17,Sunday,13:00,ATL,CAR,15,10,-5,Ericsson Stadium,Home,outdoors,grass,2000091700 33 | 31,2000_03_PIT_CLE,2000,REG,3,2000-09-17,Sunday,13:00,PIT,CLE,20,23,3,Cleveland Browns Stadium,Home,outdoors,grass,2000091708 34 | 32,2000_03_TB_DET,2000,REG,3,2000-09-17,Sunday,13:00,TB,DET,31,10,-21,Pontiac Silverdome,Home,dome,astroturf,2000091711 35 | 33,2000_03_PHI_GB,2000,REG,3,2000-09-17,Sunday,13:00,PHI,GB,3,6,3,Lambeau Field,Home,outdoors,grass,2000091707 36 | 34,2000_03_CIN_JAX,2000,REG,3,2000-09-17,Sunday,13:00,CIN,JAX,0,13,13,Alltel Stadium,Home,outdoors,grass,2000091702 37 | 35,2000_03_SD_KC,2000,REG,3,2000-09-17,Sunday,13:00,SD,KC,10,42,32,Arrowhead Stadium,Home,outdoors,grass,2000091709 38 | 36,2000_03_BUF_NYJ,2000,REG,3,2000-09-17,Sunday,13:00,BUF,NYJ,14,27,13,Giants Stadium,Home,outdoors,grass,2000091701 39 | 37,2000_03_SF_STL,2000,REG,3,2000-09-17,Sunday,13:00,SF,STL,24,41,17,TWA Dome,Home,dome,astroturf,2000091710 40 | 38,2000_03_DEN_OAK,2000,REG,3,2000-09-17,Sunday,16:05,DEN,OAK,33,24,-9,Network Associates Coliseum,Home,outdoors,grass,2000091703 41 | 39,2000_03_NYG_CHI,2000,REG,3,2000-09-17,Sunday,16:15,NYG,CHI,14,7,-7,Soldier Field,Home,outdoors,grass,2000091706 42 | 40,2000_03_MIN_NE,2000,REG,3,2000-09-17,Sunday,16:15,MIN,NE,21,13,-8,Foxboro Stadium,Home,outdoors,grass,2000091704 43 | 41,2000_03_NO_SEA,2000,REG,3,2000-09-17,Sunday,16:15,NO,SEA,10,20,10,Husky Stadium,Home,outdoors,fieldturf,2000091705 44 | 42,2000_03_BAL_MIA,2000,REG,3,2000-09-17,Sunday,20:20,BAL,MIA,6,19,13,Pro Player Stadium,Home,outdoors,grass,2000091712 45 | 43,2000_03_DAL_WAS,2000,REG,3,2000-09-18,Monday,09:00,DAL,WAS,27,21,-6,FedExField,Home,outdoors,grass,2000091800 46 | 44,2000_04_STL_ATL,2000,REG,4,2000-09-24,Sunday,13:00,STL,ATL,41,20,-21,Georgia Dome,Home,dome,astroturf,2000092408 47 | 45,2000_04_CIN_BAL,2000,REG,4,2000-09-24,Sunday,13:00,CIN,BAL,0,37,37,PSINet Stadium,Home,outdoors,grass,2000092400 48 | 46,2000_04_DET_CHI,2000,REG,4,2000-09-24,Sunday,13:00,DET,CHI,21,14,-7,Soldier Field,Home,outdoors,grass,2000092402 49 | 47,2000_04_SF_DAL,2000,REG,4,2000-09-24,Sunday,13:00,SF,DAL,41,24,-17,Texas Stadium,Home,outdoors,astroturf,2000092409 50 | 48,2000_04_NE_MIA,2000,REG,4,2000-09-24,Sunday,13:00,NE,MIA,3,10,7,Pro Player Stadium,Home,outdoors,grass,2000092405 51 | 49,2000_04_PHI_NO,2000,REG,4,2000-09-24,Sunday,13:00,PHI,NO,21,7,-14,Louisiana Superdome,Home,dome,astroturf,2000092407 52 | 50,2000_04_TEN_PIT,2000,REG,4,2000-09-24,Sunday,13:00,TEN,PIT,23,20,-3,Three Rivers Stadium,Home,outdoors,astroturf,2000092411 53 | 51,2000_04_GB_ARI,2000,REG,4,2000-09-24,Sunday,15:05,GB,ARI,29,3,-26,Sun Devil Stadium,Home,outdoors,grass,2000092403 54 | 52,2000_04_KC_DEN,2000,REG,4,2000-09-24,Sunday,16:15,KC,DEN,23,22,-1,Mile High Stadium,Home,outdoors,grass,2000092404 55 | 53,2000_04_CLE_OAK,2000,REG,4,2000-09-24,Sunday,16:15,CLE,OAK,10,36,26,Network Associates Coliseum,Home,outdoors,grass,2000092401 56 | 54,2000_04_SEA_SD,2000,REG,4,2000-09-24,Sunday,16:15,SEA,SD,20,12,-8,Qualcomm Stadium,Home,outdoors,grass,2000092410 57 | 55,2000_04_NYJ_TB,2000,REG,4,2000-09-24,Sunday,16:15,NYJ,TB,21,17,-4,Raymond James Stadium,Home,outdoors,grass,2000092406 58 | 56,2000_04_WAS_NYG,2000,REG,4,2000-09-24,Sunday,20:20,WAS,NYG,16,6,-10,Giants Stadium,Home,outdoors,grass,2000092412 59 | 57,2000_04_JAX_IND,2000,REG,4,2000-09-25,Monday,09:00,JAX,IND,14,43,29,RCA Dome,Home,dome,astroturf,2000092500 60 | 58,2000_05_IND_BUF,2000,REG,5,2000-10-01,Sunday,13:00,IND,BUF,18,16,-2,Ralph Wilson Stadium,Home,outdoors,astroturf,2000100104 61 | 59,2000_05_DAL_CAR,2000,REG,5,2000-10-01,Sunday,13:00,DAL,CAR,16,13,-3,Ericsson Stadium,Home,outdoors,grass,2000100103 62 | 60,2000_05_BAL_CLE,2000,REG,5,2000-10-01,Sunday,13:00,BAL,CLE,12,0,-12,Cleveland Browns Stadium,Home,outdoors,grass,2000100101 63 | 61,2000_05_MIN_DET,2000,REG,5,2000-10-01,Sunday,13:00,MIN,DET,31,24,-7,Pontiac Silverdome,Home,dome,astroturf,2000100106 64 | 62,2000_05_PIT_JAX,2000,REG,5,2000-10-01,Sunday,13:00,PIT,JAX,24,13,-11,Alltel Stadium,Home,outdoors,grass,2000100109 65 | 63,2000_05_SD_STL,2000,REG,5,2000-10-01,Sunday,13:00,SD,STL,31,57,26,TWA Dome,Home,dome,astroturf,2000100110 66 | 64,2000_05_NYG_TEN,2000,REG,5,2000-10-01,Sunday,13:00,NYG,TEN,14,28,14,Adelphia Coliseum,Home,outdoors,grass,2000100108 67 | 65,2000_05_MIA_CIN,2000,REG,5,2000-10-01,Sunday,16:05,MIA,CIN,31,16,-15,Paul Brown Stadium,Home,outdoors,grass,2000100105 68 | 66,2000_05_NE_DEN,2000,REG,5,2000-10-01,Sunday,16:05,NE,DEN,28,19,-9,Mile High Stadium,Home,outdoors,grass,2000100107 69 | 67,2000_05_CHI_GB,2000,REG,5,2000-10-01,Sunday,16:15,CHI,GB,27,24,-3,Lambeau Field,Home,outdoors,grass,2000100102 70 | 68,2000_05_ARI_SF,2000,REG,5,2000-10-01,Sunday,16:15,ARI,SF,20,27,7,3Com Park,Home,outdoors,grass,2000100100 71 | 69,2000_05_TB_WAS,2000,REG,5,2000-10-01,Sunday,16:15,TB,WAS,17,20,3,FedExField,Home,outdoors,grass,2000100111 72 | 70,2000_05_ATL_PHI,2000,REG,5,2000-10-01,Sunday,20:20,ATL,PHI,10,38,28,Veterans Stadium,Home,outdoors,astroturf,2000100112 73 | 71,2000_05_SEA_KC,2000,REG,5,2000-10-02,Monday,09:00,SEA,KC,17,24,7,Arrowhead Stadium,Home,outdoors,grass,2000100200 74 | 72,2000_06_NO_CHI,2000,REG,6,2000-10-08,Sunday,13:00,NO,CHI,31,10,-21,Soldier Field,Home,outdoors,grass,2000100805 75 | 73,2000_06_TEN_CIN,2000,REG,6,2000-10-08,Sunday,13:00,TEN,CIN,23,14,-9,Paul Brown Stadium,Home,outdoors,grass,2000100810 76 | 74,2000_06_GB_DET,2000,REG,6,2000-10-08,Sunday,13:00,GB,DET,24,31,7,Pontiac Silverdome,Home,dome,astroturf,2000100803 77 | 75,2000_06_BUF_MIA,2000,REG,6,2000-10-08,Sunday,13:00,BUF,MIA,13,22,9,Pro Player Stadium,Home,outdoors,grass,2000100800 78 | 76,2000_06_IND_NE,2000,REG,6,2000-10-08,Sunday,13:00,IND,NE,16,24,8,Foxboro Stadium,Home,outdoors,grass,2000100804 79 | 77,2000_06_PIT_NYJ,2000,REG,6,2000-10-08,Sunday,13:00,PIT,NYJ,20,3,-17,Giants Stadium,Home,outdoors,grass,2000100808 80 | 78,2000_06_WAS_PHI,2000,REG,6,2000-10-08,Sunday,13:00,WAS,PHI,17,14,-3,Veterans Stadium,Home,outdoors,astroturf,2000100811 81 | 79,2000_06_CLE_ARI,2000,REG,6,2000-10-08,Sunday,15:15,CLE,ARI,21,29,8,Sun Devil Stadium,Home,outdoors,grass,2000100801 82 | 80,2000_06_NYG_ATL,2000,REG,6,2000-10-08,Sunday,16:05,NYG,ATL,13,6,-7,Georgia Dome,Home,dome,astroturf,2000100806 83 | 81,2000_06_SEA_CAR,2000,REG,6,2000-10-08,Sunday,16:15,SEA,CAR,3,26,23,Ericsson Stadium,Home,outdoors,grass,2000100809 84 | 82,2000_06_DEN_SD,2000,REG,6,2000-10-08,Sunday,16:15,DEN,SD,21,7,-14,Qualcomm Stadium,Home,outdoors,grass,2000100802 85 | 83,2000_06_OAK_SF,2000,REG,6,2000-10-08,Sunday,16:15,OAK,SF,34,28,-6,3Com Park,Home,outdoors,grass,2000100807 86 | 84,2000_06_BAL_JAX,2000,REG,6,2000-10-08,Sunday,20:20,BAL,JAX,15,10,-5,Alltel Stadium,Home,outdoors,grass,2000100812 87 | 85,2000_06_TB_MIN,2000,REG,6,2000-10-09,Monday,09:00,TB,MIN,23,30,7,Hubert H. Humphrey Metrodome,Home,dome,astroturf,2000100900 88 | 86,2000_07_SD_BUF,2000,REG,7,2000-10-15,Sunday,13:00,SD,BUF,24,27,3,Ralph Wilson Stadium,Home,outdoors,astroturf,2000101510 89 | 87,2000_07_OAK_KC,2000,REG,7,2000-10-15,Sunday,13:00,OAK,KC,20,17,-3,Arrowhead Stadium,Home,outdoors,grass,2000101508 90 | 88,2000_07_CAR_NO,2000,REG,7,2000-10-15,Sunday,13:00,CAR,NO,6,24,18,Louisiana Superdome,Home,dome,astroturf,2000101502 91 | 89,2000_07_DAL_NYG,2000,REG,7,2000-10-15,Sunday,13:00,DAL,NYG,14,19,5,Giants Stadium,Home,outdoors,grass,2000101505 92 | 90,2000_07_CIN_PIT,2000,REG,7,2000-10-15,Sunday,13:00,CIN,PIT,0,15,15,Three Rivers Stadium,Home,outdoors,astroturf,2000101503 93 | 91,2000_07_ATL_STL,2000,REG,7,2000-10-15,Sunday,13:00,ATL,STL,29,45,16,TWA Dome,Home,dome,astroturf,2000101500 94 | 92,2000_07_BAL_WAS,2000,REG,7,2000-10-15,Sunday,13:00,BAL,WAS,3,10,7,FedExField,Home,outdoors,grass,2000101501 95 | 93,2000_07_PHI_ARI,2000,REG,7,2000-10-15,Sunday,15:15,PHI,ARI,33,14,-19,Sun Devil Stadium,Home,outdoors,grass,2000101509 96 | 94,2000_07_CLE_DEN,2000,REG,7,2000-10-15,Sunday,16:05,CLE,DEN,10,44,34,Mile High Stadium,Home,outdoors,grass,2000101504 97 | 95,2000_07_NYJ_NE,2000,REG,7,2000-10-15,Sunday,16:05,NYJ,NE,34,17,-17,Foxboro Stadium,Home,outdoors,grass,2000101507 98 | 96,2000_07_IND_SEA,2000,REG,7,2000-10-15,Sunday,16:05,IND,SEA,37,24,-13,Husky Stadium,Home,outdoors,fieldturf,2000101506 99 | 97,2000_07_SF_GB,2000,REG,7,2000-10-15,Sunday,16:15,SF,GB,28,31,3,Lambeau Field,Home,outdoors,grass,2000101511 100 | 98,2000_07_MIN_CHI,2000,REG,7,2000-10-15,Sunday,20:20,MIN,CHI,28,16,-12,Soldier Field,Home,outdoors,grass,2000101512 101 | 99,2000_07_JAX_TEN,2000,REG,7,2000-10-16,Monday,09:00,JAX,TEN,13,27,14,Adelphia Coliseum,Home,outdoors,grass,2000101600 102 | 100,2000_08_DET_TB,2000,REG,8,2000-10-19,Thursday,20:20,DET,TB,28,14,-14,Raymond James Stadium,Home,outdoors,grass,2000101900 103 | 101,2000_08_NE_IND,2000,REG,8,2000-10-22,Sunday,12:00,NE,IND,23,30,7,RCA Dome,Home,dome,astroturf,2000102205 104 | 102,2000_08_NO_ATL,2000,REG,8,2000-10-22,Sunday,13:00,NO,ATL,21,19,-2,Georgia Dome,Home,dome,astroturf,2000102206 105 | 103,2000_08_TEN_BAL,2000,REG,8,2000-10-22,Sunday,13:00,TEN,BAL,14,6,-8,PSINet Stadium,Home,outdoors,grass,2000102210 106 | 104,2000_08_SF_CAR,2000,REG,8,2000-10-22,Sunday,13:00,SF,CAR,16,34,18,Ericsson Stadium,Home,outdoors,grass,2000102208 107 | 105,2000_08_DEN_CIN,2000,REG,8,2000-10-22,Sunday,13:00,DEN,CIN,21,31,10,Paul Brown Stadium,Home,outdoors,grass,2000102204 108 | 106,2000_08_ARI_DAL,2000,REG,8,2000-10-22,Sunday,13:00,ARI,DAL,7,48,41,Texas Stadium,Home,outdoors,astroturf,2000102200 109 | 107,2000_08_STL_KC,2000,REG,8,2000-10-22,Sunday,13:00,STL,KC,34,54,20,Arrowhead Stadium,Home,outdoors,grass,2000102207 110 | 108,2000_08_BUF_MIN,2000,REG,8,2000-10-22,Sunday,13:00,BUF,MIN,27,31,4,Hubert H. Humphrey Metrodome,Home,dome,astroturf,2000102201 111 | 109,2000_08_CHI_PHI,2000,REG,8,2000-10-22,Sunday,13:00,CHI,PHI,9,13,4,Veterans Stadium,Home,outdoors,astroturf,2000102202 112 | 110,2000_08_SEA_OAK,2000,REG,8,2000-10-22,Sunday,16:05,SEA,OAK,3,31,28,Network Associates Coliseum,Home,outdoors,grass,2000102209 113 | 111,2000_08_CLE_PIT,2000,REG,8,2000-10-22,Sunday,16:05,CLE,PIT,0,22,22,Three Rivers Stadium,Home,outdoors,astroturf,2000102203 114 | 112,2000_08_WAS_JAX,2000,REG,8,2000-10-22,Sunday,16:15,WAS,JAX,35,16,-19,Alltel Stadium,Home,outdoors,grass,2000102211 115 | 113,2000_08_MIA_NYJ,2000,REG,8,2000-10-23,Monday,09:00,MIA,NYJ,37,40,3,Giants Stadium,Home,outdoors,grass,2000102300 116 | 114,2000_09_CAR_ATL,2000,REG,9,2000-10-29,Sunday,13:00,CAR,ATL,12,13,1,Georgia Dome,Home,dome,astroturf,2000102900 117 | 115,2000_09_PIT_BAL,2000,REG,9,2000-10-29,Sunday,13:00,PIT,BAL,9,6,-3,PSINet Stadium,Home,outdoors,grass,2000102910 118 | 116,2000_09_NYJ_BUF,2000,REG,9,2000-10-29,Sunday,13:00,NYJ,BUF,20,23,3,Ralph Wilson Stadium,Home,outdoors,astroturf,2000102908 119 | 117,2000_09_CIN_CLE,2000,REG,9,2000-10-29,Sunday,13:00,CIN,CLE,12,3,-9,Cleveland Browns Stadium,Home,outdoors,grass,2000102901 120 | 118,2000_09_DET_IND,2000,REG,9,2000-10-29,Sunday,13:00,DET,IND,18,30,12,RCA Dome,Home,dome,astroturf,2000102902 121 | 119,2000_09_GB_MIA,2000,REG,9,2000-10-29,Sunday,13:00,GB,MIA,20,28,8,Pro Player Stadium,Home,outdoors,grass,2000102903 122 | 120,2000_09_MIN_TB,2000,REG,9,2000-10-29,Sunday,13:00,MIN,TB,13,41,28,Raymond James Stadium,Home,outdoors,grass,2000102906 123 | 121,2000_09_NO_ARI,2000,REG,9,2000-10-29,Sunday,16:05,NO,ARI,21,10,-11,Sun Devil Stadium,Home,outdoors,grass,2000102907 124 | 122,2000_09_PHI_NYG,2000,REG,9,2000-10-29,Sunday,16:05,PHI,NYG,7,24,17,Giants Stadium,Home,outdoors,grass,2000102909 125 | 123,2000_09_STL_SF,2000,REG,9,2000-10-29,Sunday,16:05,STL,SF,34,24,-10,3Com Park,Home,outdoors,grass,2000102911 126 | 124,2000_09_JAX_DAL,2000,REG,9,2000-10-29,Sunday,16:15,JAX,DAL,23,17,-6,Texas Stadium,Home,outdoors,astroturf,2000102904 127 | 125,2000_09_KC_SEA,2000,REG,9,2000-10-29,Sunday,16:15,KC,SEA,24,19,-5,Husky Stadium,Home,outdoors,fieldturf,2000102905 128 | 126,2000_09_OAK_SD,2000,REG,9,2000-10-29,Sunday,20:20,OAK,SD,15,13,-2,Qualcomm Stadium,Home,outdoors,grass,2000102912 129 | 127,2000_09_TEN_WAS,2000,REG,9,2000-10-30,Monday,09:00,TEN,WAS,27,21,-6,FedExField,Home,outdoors,grass,2000103000 130 | 128,2000_10_TB_ATL,2000,REG,10,2000-11-05,Sunday,13:00,TB,ATL,27,14,-13,Georgia Dome,Home,dome,astroturf,2000110511 131 | 129,2000_10_IND_CHI,2000,REG,10,2000-11-05,Sunday,13:00,IND,CHI,24,27,3,Soldier Field,Home,outdoors,grass,2000110504 132 | 130,2000_10_BAL_CIN,2000,REG,10,2000-11-05,Sunday,13:00,BAL,CIN,27,7,-20,Paul Brown Stadium,Home,outdoors,grass,2000110500 133 | 131,2000_10_NYG_CLE,2000,REG,10,2000-11-05,Sunday,13:00,NYG,CLE,24,3,-21,Cleveland Browns Stadium,Home,outdoors,grass,2000110507 134 | 132,2000_10_MIA_DET,2000,REG,10,2000-11-05,Sunday,13:00,MIA,DET,23,8,-15,Pontiac Silverdome,Home,dome,astroturf,2000110506 135 | 133,2000_10_BUF_NE,2000,REG,10,2000-11-05,Sunday,13:00,BUF,NE,16,13,-3,Foxboro Stadium,Home,outdoors,grass,2000110501 136 | 134,2000_10_SF_NO,2000,REG,10,2000-11-05,Sunday,13:00,SF,NO,15,31,16,Louisiana Superdome,Home,dome,astroturf,2000110510 137 | 135,2000_10_DAL_PHI,2000,REG,10,2000-11-05,Sunday,13:00,DAL,PHI,13,16,3,Veterans Stadium,Home,outdoors,astroturf,2000110502 138 | 136,2000_10_PIT_TEN,2000,REG,10,2000-11-05,Sunday,13:00,PIT,TEN,7,9,2,Adelphia Coliseum,Home,outdoors,grass,2000110508 139 | 137,2000_10_WAS_ARI,2000,REG,10,2000-11-05,Sunday,16:05,WAS,ARI,15,16,1,Sun Devil Stadium,Home,outdoors,grass,2000110512 140 | 138,2000_10_DEN_NYJ,2000,REG,10,2000-11-05,Sunday,16:15,DEN,NYJ,30,23,-7,Giants Stadium,Home,outdoors,grass,2000110503 141 | 139,2000_10_KC_OAK,2000,REG,10,2000-11-05,Sunday,16:15,KC,OAK,31,49,18,Network Associates Coliseum,Home,outdoors,grass,2000110505 142 | 140,2000_10_SD_SEA,2000,REG,10,2000-11-05,Sunday,16:15,SD,SEA,15,17,2,Husky Stadium,Home,outdoors,fieldturf,2000110509 143 | 141,2000_10_CAR_STL,2000,REG,10,2000-11-05,Sunday,20:20,CAR,STL,27,24,-3,TWA Dome,Home,dome,astroturf,2000110513 144 | 142,2000_10_MIN_GB,2000,REG,10,2000-11-06,Monday,09:00,MIN,GB,20,26,6,Lambeau Field,Home,outdoors,grass,2000110600 145 | 143,2000_11_CHI_BUF,2000,REG,11,2000-11-12,Sunday,13:00,CHI,BUF,3,20,17,Ralph Wilson Stadium,Home,outdoors,astroturf,2000111203 146 | 144,2000_11_NO_CAR,2000,REG,11,2000-11-12,Sunday,13:00,NO,CAR,20,10,-10,Ericsson Stadium,Home,outdoors,grass,2000111209 147 | 145,2000_11_CIN_DAL,2000,REG,11,2000-11-12,Sunday,13:00,CIN,DAL,6,23,17,Texas Stadium,Home,outdoors,astroturf,2000111204 148 | 146,2000_11_ATL_DET,2000,REG,11,2000-11-12,Sunday,13:00,ATL,DET,10,13,3,Pontiac Silverdome,Home,dome,astroturf,2000111201 149 | 147,2000_11_SEA_JAX,2000,REG,11,2000-11-12,Sunday,13:00,SEA,JAX,28,21,-7,Alltel Stadium,Home,outdoors,grass,2000111212 150 | 148,2000_11_ARI_MIN,2000,REG,11,2000-11-12,Sunday,13:00,ARI,MIN,14,31,17,Hubert H. Humphrey Metrodome,Home,dome,astroturf,2000111200 151 | 149,2000_11_PHI_PIT,2000,REG,11,2000-11-12,Sunday,13:00,PHI,PIT,26,23,-3,Three Rivers Stadium,Home,outdoors,astroturf,2000111210 152 | 150,2000_11_BAL_TEN,2000,REG,11,2000-11-12,Sunday,13:00,BAL,TEN,24,23,-1,Adelphia Coliseum,Home,outdoors,grass,2000111202 153 | 151,2000_11_NE_CLE,2000,REG,11,2000-11-12,Sunday,13:05,NE,CLE,11,19,8,Cleveland Browns Stadium,Home,outdoors,grass,2000111208 154 | 152,2000_11_MIA_SD,2000,REG,11,2000-11-12,Sunday,16:05,MIA,SD,17,7,-10,Qualcomm Stadium,Home,outdoors,grass,2000111207 155 | 153,2000_11_KC_SF,2000,REG,11,2000-11-12,Sunday,16:05,KC,SF,7,21,14,3Com Park,Home,outdoors,grass,2000111206 156 | 154,2000_11_STL_NYG,2000,REG,11,2000-11-12,Sunday,16:15,STL,NYG,38,24,-14,Giants Stadium,Home,outdoors,grass,2000111211 157 | 155,2000_11_GB_TB,2000,REG,11,2000-11-12,Sunday,16:15,GB,TB,15,20,5,Raymond James Stadium,Home,outdoors,grass,2000111205 158 | 156,2000_11_NYJ_IND,2000,REG,11,2000-11-12,Sunday,20:20,NYJ,IND,15,23,8,RCA Dome,Home,dome,astroturf,2000111213 159 | 157,2000_11_OAK_DEN,2000,REG,11,2000-11-13,Monday,09:00,OAK,DEN,24,27,3,Mile High Stadium,Home,outdoors,grass,2000111300 160 | 158,2000_12_TB_CHI,2000,REG,12,2000-11-19,Sunday,13:00,TB,CHI,10,13,3,Soldier Field,Home,outdoors,grass,2000111912 161 | 159,2000_12_IND_GB,2000,REG,12,2000-11-19,Sunday,13:00,IND,GB,24,26,2,Lambeau Field,Home,outdoors,grass,2000111908 162 | 160,2000_12_BUF_KC,2000,REG,12,2000-11-19,Sunday,13:00,BUF,KC,21,17,-4,Arrowhead Stadium,Home,outdoors,grass,2000111902 163 | 161,2000_12_CAR_MIN,2000,REG,12,2000-11-19,Sunday,13:00,CAR,MIN,17,31,14,Hubert H. Humphrey Metrodome,Home,dome,astroturf,2000111903 164 | 162,2000_12_CIN_NE,2000,REG,12,2000-11-19,Sunday,13:00,CIN,NE,13,16,3,Foxboro Stadium,Home,outdoors,grass,2000111904 165 | 163,2000_12_OAK_NO,2000,REG,12,2000-11-19,Sunday,13:00,OAK,NO,31,22,-9,Louisiana Superdome,Home,dome,astroturf,2000111910 166 | 164,2000_12_DET_NYG,2000,REG,12,2000-11-19,Sunday,13:00,DET,NYG,31,21,-10,Giants Stadium,Home,outdoors,grass,2000111907 167 | 165,2000_12_ARI_PHI,2000,REG,12,2000-11-19,Sunday,13:00,ARI,PHI,9,34,25,Veterans Stadium,Home,outdoors,astroturf,2000111900 168 | 166,2000_12_CLE_TEN,2000,REG,12,2000-11-19,Sunday,13:00,CLE,TEN,10,24,14,Adelphia Coliseum,Home,outdoors,grass,2000111905 169 | 167,2000_12_SD_DEN,2000,REG,12,2000-11-19,Sunday,16:05,SD,DEN,37,38,1,Mile High Stadium,Home,outdoors,grass,2000111911 170 | 168,2000_12_NYJ_MIA,2000,REG,12,2000-11-19,Sunday,16:05,NYJ,MIA,20,3,-17,Pro Player Stadium,Home,outdoors,grass,2000111909 171 | 169,2000_12_DAL_BAL,2000,REG,12,2000-11-19,Sunday,16:15,DAL,BAL,0,27,27,PSINet Stadium,Home,outdoors,grass,2000111906 172 | 170,2000_12_ATL_SF,2000,REG,12,2000-11-19,Sunday,16:15,ATL,SF,6,16,10,3Com Park,Home,outdoors,grass,2000111901 173 | 171,2000_12_JAX_PIT,2000,REG,12,2000-11-19,Sunday,20:20,JAX,PIT,34,24,-10,Three Rivers Stadium,Home,outdoors,astroturf,2000111913 174 | 172,2000_12_WAS_STL,2000,REG,12,2000-11-20,Monday,09:00,WAS,STL,33,20,-13,TWA Dome,Home,dome,astroturf,2000112000 175 | 173,2000_13_NE_DET,2000,REG,13,2000-11-23,Thursday,12:30,NE,DET,9,34,25,Pontiac Silverdome,Home,dome,astroturf,2000112301 176 | 174,2000_13_MIN_DAL,2000,REG,13,2000-11-23,Thursday,16:05,MIN,DAL,27,15,-12,Texas Stadium,Home,outdoors,astroturf,2000112300 177 | 175,2000_13_CLE_BAL,2000,REG,13,2000-11-26,Sunday,13:00,CLE,BAL,7,44,37,PSINet Stadium,Home,outdoors,grass,2000112603 178 | 176,2000_13_PIT_CIN,2000,REG,13,2000-11-26,Sunday,13:00,PIT,CIN,48,28,-20,Paul Brown Stadium,Home,outdoors,grass,2000112609 179 | 177,2000_13_CHI_NYJ,2000,REG,13,2000-11-26,Sunday,13:00,CHI,NYJ,10,17,7,Giants Stadium,Home,outdoors,grass,2000112602 180 | 178,2000_13_NO_STL,2000,REG,13,2000-11-26,Sunday,13:00,NO,STL,31,24,-7,TWA Dome,Home,dome,astroturf,2000112607 181 | 179,2000_13_BUF_TB,2000,REG,13,2000-11-26,Sunday,13:00,BUF,TB,17,31,14,Raymond James Stadium,Home,outdoors,grass,2000112601 182 | 180,2000_13_PHI_WAS,2000,REG,13,2000-11-26,Sunday,13:00,PHI,WAS,23,20,-3,FedExField,Home,outdoors,grass,2000112608 183 | 181,2000_13_ATL_OAK,2000,REG,13,2000-11-26,Sunday,16:05,ATL,OAK,14,41,27,Network Associates Coliseum,Home,outdoors,grass,2000112600 184 | 182,2000_13_MIA_IND,2000,REG,13,2000-11-26,Sunday,16:15,MIA,IND,17,14,-3,RCA Dome,Home,dome,astroturf,2000112606 185 | 183,2000_13_TEN_JAX,2000,REG,13,2000-11-26,Sunday,16:15,TEN,JAX,13,16,3,Alltel Stadium,Home,outdoors,grass,2000112610 186 | 184,2000_13_KC_SD,2000,REG,13,2000-11-26,Sunday,16:15,KC,SD,16,17,1,Qualcomm Stadium,Home,outdoors,grass,2000112605 187 | 185,2000_13_DEN_SEA,2000,REG,13,2000-11-26,Sunday,16:15,DEN,SEA,38,31,-7,Husky Stadium,Home,outdoors,fieldturf,2000112604 188 | 186,2000_13_NYG_ARI,2000,REG,13,2000-11-26,Sunday,20:20,NYG,ARI,31,7,-24,Sun Devil Stadium,Home,outdoors,grass,2000112611 189 | 187,2000_13_GB_CAR,2000,REG,13,2000-11-27,Monday,09:00,GB,CAR,14,31,17,Ericsson Stadium,Home,outdoors,grass,2000112700 190 | 188,2000_14_DET_MIN,2000,REG,14,2000-11-30,Thursday,20:20,DET,MIN,17,24,7,Hubert H. Humphrey Metrodome,Home,dome,astroturf,2000113000 191 | 189,2000_14_SEA_ATL,2000,REG,14,2000-12-03,Sunday,13:00,SEA,ATL,30,10,-20,Georgia Dome,Home,dome,astroturf,2000120310 192 | 190,2000_14_MIA_BUF,2000,REG,14,2000-12-03,Sunday,13:00,MIA,BUF,33,6,-27,Ralph Wilson Stadium,Home,outdoors,astroturf,2000120305 193 | 191,2000_14_STL_CAR,2000,REG,14,2000-12-03,Sunday,13:00,STL,CAR,3,16,13,Ericsson Stadium,Home,outdoors,grass,2000120308 194 | 192,2000_14_ARI_CIN,2000,REG,14,2000-12-03,Sunday,13:00,ARI,CIN,13,24,11,Paul Brown Stadium,Home,outdoors,grass,2000120300 195 | 193,2000_14_DEN_NO,2000,REG,14,2000-12-03,Sunday,13:00,DEN,NO,38,23,-15,Louisiana Superdome,Home,dome,astroturf,2000120303 196 | 194,2000_14_TEN_PHI,2000,REG,14,2000-12-03,Sunday,13:00,TEN,PHI,15,13,-2,Veterans Stadium,Home,outdoors,astroturf,2000120311 197 | 195,2000_14_OAK_PIT,2000,REG,14,2000-12-03,Sunday,13:00,OAK,PIT,20,21,1,Three Rivers Stadium,Home,outdoors,astroturf,2000120307 198 | 196,2000_14_DAL_TB,2000,REG,14,2000-12-03,Sunday,13:00,DAL,TB,7,27,20,Raymond James Stadium,Home,outdoors,grass,2000120302 199 | 197,2000_14_NYG_WAS,2000,REG,14,2000-12-03,Sunday,13:00,NYG,WAS,9,7,-2,FedExField,Home,outdoors,grass,2000120306 200 | 198,2000_14_SF_SD,2000,REG,14,2000-12-03,Sunday,16:05,SF,SD,45,17,-28,Qualcomm Stadium,Home,outdoors,grass,2000120309 201 | 199,2000_14_CLE_JAX,2000,REG,14,2000-12-03,Sunday,16:15,CLE,JAX,0,48,48,Alltel Stadium,Home,outdoors,grass,2000120301 202 | 200,2000_14_IND_NYJ,2000,REG,14,2000-12-03,Sunday,16:15,IND,NYJ,17,27,10,Giants Stadium,Home,outdoors,grass,2000120304 203 | 201,2000_14_GB_CHI,2000,REG,14,2000-12-03,Sunday,20:20,GB,CHI,28,6,-22,Soldier Field,Home,outdoors,grass,2000120312 204 | 202,2000_14_KC_NE,2000,REG,14,2000-12-04,Monday,09:00,KC,NE,24,30,6,Foxboro Stadium,Home,outdoors,grass,2000120400 205 | 203,2000_15_SD_BAL,2000,REG,15,2000-12-10,Sunday,13:00,SD,BAL,3,24,21,PSINet Stadium,Home,outdoors,grass,2000121009 206 | 204,2000_15_NE_CHI,2000,REG,15,2000-12-10,Sunday,13:00,NE,CHI,17,24,7,Soldier Field,Home,outdoors,grass,2000121005 207 | 205,2000_15_PHI_CLE,2000,REG,15,2000-12-10,Sunday,13:00,PHI,CLE,35,24,-11,Cleveland Browns Stadium,Home,outdoors,grass,2000121007 208 | 206,2000_15_DET_GB,2000,REG,15,2000-12-10,Sunday,13:00,DET,GB,13,26,13,Lambeau Field,Home,outdoors,grass,2000121003 209 | 207,2000_15_ARI_JAX,2000,REG,15,2000-12-10,Sunday,13:00,ARI,JAX,10,44,34,Alltel Stadium,Home,outdoors,grass,2000121000 210 | 208,2000_15_CAR_KC,2000,REG,15,2000-12-10,Sunday,13:00,CAR,KC,14,15,1,Arrowhead Stadium,Home,outdoors,grass,2000121001 211 | 209,2000_15_TB_MIA,2000,REG,15,2000-12-10,Sunday,13:00,TB,MIA,16,13,-3,Pro Player Stadium,Home,outdoors,grass,2000121011 212 | 210,2000_15_PIT_NYG,2000,REG,15,2000-12-10,Sunday,13:00,PIT,NYG,10,30,20,Giants Stadium,Home,outdoors,grass,2000121008 213 | 211,2000_15_CIN_TEN,2000,REG,15,2000-12-10,Sunday,13:00,CIN,TEN,3,35,32,Adelphia Coliseum,Home,outdoors,grass,2000121002 214 | 212,2000_15_SEA_DEN,2000,REG,15,2000-12-10,Sunday,16:05,SEA,DEN,24,31,7,Mile High Stadium,Home,outdoors,grass,2000121010 215 | 213,2000_15_WAS_DAL,2000,REG,15,2000-12-10,Sunday,16:15,WAS,DAL,13,32,19,Texas Stadium,Home,outdoors,astroturf,2000121012 216 | 214,2000_15_NO_SF,2000,REG,15,2000-12-10,Sunday,16:15,NO,SF,31,27,-4,3Com Park,Home,outdoors,grass,2000121006 217 | 215,2000_15_MIN_STL,2000,REG,15,2000-12-10,Sunday,16:15,MIN,STL,29,40,11,TWA Dome,Home,dome,astroturf,2000121004 218 | 216,2000_15_NYJ_OAK,2000,REG,15,2000-12-10,Sunday,20:20,NYJ,OAK,7,31,24,Network Associates Coliseum,Home,outdoors,grass,2000121013 219 | 217,2000_15_BUF_IND,2000,REG,15,2000-12-11,Monday,09:00,BUF,IND,20,44,24,RCA Dome,Home,dome,astroturf,2000121100 220 | 218,2000_16_WAS_PIT,2000,REG,16,2000-12-16,Saturday,12:30,WAS,PIT,3,24,21,Three Rivers Stadium,Home,outdoors,astroturf,2000121600 221 | 219,2000_16_OAK_SEA,2000,REG,16,2000-12-16,Saturday,16:05,OAK,SEA,24,27,3,Husky Stadium,Home,outdoors,fieldturf,2000121601 222 | 220,2000_16_NE_BUF,2000,REG,16,2000-12-17,Sunday,13:00,NE,BUF,13,10,-3,Ralph Wilson Stadium,Home,outdoors,astroturf,2000121708 223 | 221,2000_16_SD_CAR,2000,REG,16,2000-12-17,Sunday,13:00,SD,CAR,22,30,8,Ericsson Stadium,Home,outdoors,grass,2000121709 224 | 222,2000_16_JAX_CIN,2000,REG,16,2000-12-17,Sunday,13:00,JAX,CIN,14,17,3,Paul Brown Stadium,Home,outdoors,grass,2000121707 225 | 223,2000_16_TEN_CLE,2000,REG,16,2000-12-17,Sunday,13:00,TEN,CLE,24,0,-24,Cleveland Browns Stadium,Home,outdoors,grass,2000121710 226 | 224,2000_16_DEN_KC,2000,REG,16,2000-12-17,Sunday,13:00,DEN,KC,7,20,13,Arrowhead Stadium,Home,outdoors,grass,2000121703 227 | 225,2000_16_GB_MIN,2000,REG,16,2000-12-17,Sunday,13:00,GB,MIN,33,28,-5,Hubert H. Humphrey Metrodome,Home,dome,astroturf,2000121705 228 | 226,2000_16_ATL_NO,2000,REG,16,2000-12-17,Sunday,13:00,ATL,NO,7,23,16,Louisiana Superdome,Home,dome,astroturf,2000121700 229 | 227,2000_16_DET_NYJ,2000,REG,16,2000-12-17,Sunday,13:00,DET,NYJ,10,7,-3,Giants Stadium,Home,outdoors,grass,2000121704 230 | 228,2000_16_CHI_SF,2000,REG,16,2000-12-17,Sunday,16:05,CHI,SF,0,17,17,3Com Park,Home,outdoors,grass,2000121702 231 | 229,2000_16_BAL_ARI,2000,REG,16,2000-12-17,Sunday,16:15,BAL,ARI,13,7,-6,Sun Devil Stadium,Home,outdoors,grass,2000121701 232 | 230,2000_16_IND_MIA,2000,REG,16,2000-12-17,Sunday,16:15,IND,MIA,20,13,-7,Pro Player Stadium,Home,outdoors,grass,2000121706 233 | 231,2000_16_NYG_DAL,2000,REG,16,2000-12-17,Sunday,20:20,NYG,DAL,17,13,-4,Texas Stadium,Home,outdoors,astroturf,2000121711 234 | 232,2000_16_STL_TB,2000,REG,16,2000-12-18,Monday,09:00,STL,TB,35,38,3,Raymond James Stadium,Home,outdoors,grass,2000121800 235 | 233,2000_17_JAX_NYG,2000,REG,17,2000-12-23,Saturday,12:30,JAX,NYG,25,28,3,Giants Stadium,Home,outdoors,grass,2000122300 236 | 234,2000_17_SF_DEN,2000,REG,17,2000-12-23,Saturday,16:15,SF,DEN,9,38,29,Mile High Stadium,Home,outdoors,grass,2000122301 237 | 235,2000_17_BUF_SEA,2000,REG,17,2000-12-23,Saturday,20:20,BUF,SEA,42,23,-19,Husky Stadium,Home,outdoors,fieldturf,2000122302 238 | 236,2000_17_KC_ATL,2000,REG,17,2000-12-24,Sunday,13:00,KC,ATL,13,29,16,Georgia Dome,Home,dome,astroturf,2000122404 239 | 237,2000_17_NYJ_BAL,2000,REG,17,2000-12-24,Sunday,13:00,NYJ,BAL,20,34,14,PSINet Stadium,Home,outdoors,grass,2000122407 240 | 238,2000_17_CHI_DET,2000,REG,17,2000-12-24,Sunday,13:00,CHI,DET,23,20,-3,Pontiac Silverdome,Home,dome,astroturf,2000122402 241 | 239,2000_17_TB_GB,2000,REG,17,2000-12-24,Sunday,13:00,TB,GB,14,17,3,Lambeau Field,Home,outdoors,grass,2000122410 242 | 240,2000_17_MIA_NE,2000,REG,17,2000-12-24,Sunday,13:00,MIA,NE,27,24,-3,Foxboro Stadium,Home,outdoors,grass,2000122405 243 | 241,2000_17_STL_NO,2000,REG,17,2000-12-24,Sunday,13:00,STL,NO,26,21,-5,Louisiana Superdome,Home,dome,astroturf,2000122409 244 | 242,2000_17_CIN_PHI,2000,REG,17,2000-12-24,Sunday,13:00,CIN,PHI,7,16,9,Veterans Stadium,Home,outdoors,astroturf,2000122403 245 | 243,2000_17_ARI_WAS,2000,REG,17,2000-12-24,Sunday,13:00,ARI,WAS,3,20,17,FedExField,Home,outdoors,grass,2000122400 246 | 244,2000_17_PIT_SD,2000,REG,17,2000-12-24,Sunday,16:05,PIT,SD,34,21,-13,Qualcomm Stadium,Home,outdoors,grass,2000122408 247 | 245,2000_17_MIN_IND,2000,REG,17,2000-12-24,Sunday,16:15,MIN,IND,10,31,21,RCA Dome,Home,dome,astroturf,2000122406 248 | 246,2000_17_CAR_OAK,2000,REG,17,2000-12-24,Sunday,16:15,CAR,OAK,9,52,43,Network Associates Coliseum,Home,outdoors,grass,2000122401 249 | 247,2000_17_DAL_TEN,2000,REG,17,2000-12-25,Monday,09:00,DAL,TEN,0,31,31,Adelphia Coliseum,Home,outdoors,grass,2000122500 250 | 248,2000_18_IND_MIA,2000,WC,18,2000-12-30,Saturday,12:30,IND,MIA,17,23,6,Pro Player Stadium,Home,outdoors,grass,2000123001 251 | 249,2000_18_STL_NO,2000,WC,18,2000-12-30,Saturday,16:00,STL,NO,28,31,3,Louisiana Superdome,Home,dome,astroturf,2000123000 252 | 250,2000_18_DEN_BAL,2000,WC,18,2000-12-31,Sunday,12:30,DEN,BAL,3,21,18,PSINet Stadium,Home,outdoors,grass,2000123101 253 | 251,2000_18_TB_PHI,2000,WC,18,2000-12-31,Sunday,16:15,TB,PHI,3,21,18,Veterans Stadium,Home,outdoors,astroturf,2000123100 254 | 252,2000_19_NO_MIN,2000,DIV,19,2001-01-06,Saturday,12:30,NO,MIN,16,34,18,Hubert H. Humphrey Metrodome,Home,dome,astroturf,2001010600 255 | 253,2000_19_MIA_OAK,2000,DIV,19,2001-01-06,Saturday,16:00,MIA,OAK,0,27,27,Network Associates Coliseum,Home,outdoors,grass,2001010601 256 | 254,2000_19_BAL_TEN,2000,DIV,19,2001-01-07,Sunday,12:30,BAL,TEN,24,10,-14,Adelphia Coliseum,Home,outdoors,grass,2001010700 257 | 255,2000_19_PHI_NYG,2000,DIV,19,2001-01-07,Sunday,16:00,PHI,NYG,10,20,10,Giants Stadium,Home,outdoors,grass,2001010701 258 | 256,2000_20_MIN_NYG,2000,CON,20,2001-01-14,Sunday,13:00,MIN,NYG,0,41,41,Giants Stadium,Home,outdoors,grass,2001011401 259 | 257,2000_20_BAL_OAK,2000,CON,20,2001-01-14,Sunday,16:00,BAL,OAK,16,3,-13,Network Associates Coliseum,Home,outdoors,grass,2001011400 260 | 258,2000_21_BAL_NYG,2000,SB,21,2001-01-28,Sunday,18:18,BAL,NYG,34,7,-27,Raymond James Stadium,Neutral,outdoors,grass,2001012800 261 | -------------------------------------------------------------------------------- /data/schedules/2001.csv: -------------------------------------------------------------------------------- 1 | ,game_id,season,game_type,week,gameday,weekday,gametime,away_team,home_team,away_score,home_score,home_result,stadium,location,roof,surface,old_game_id 2 | 0,2001_01_CHI_BAL,2001,REG,1,2001-09-09,Sunday,13:00,CHI,BAL,6,17,11,PSINet Stadium,Home,outdoors,grass,2001090902 3 | 1,2001_01_NO_BUF,2001,REG,1,2001-09-09,Sunday,13:00,NO,BUF,24,6,-18,Ralph Wilson Stadium,Home,outdoors,astroturf,2001090906 4 | 2,2001_01_NE_CIN,2001,REG,1,2001-09-09,Sunday,13:00,NE,CIN,17,23,6,Paul Brown Stadium,Home,outdoors,grass,2001090905 5 | 3,2001_01_SEA_CLE,2001,REG,1,2001-09-09,Sunday,13:00,SEA,CLE,9,6,-3,Cleveland Browns Stadium,Home,outdoors,grass,2001090910 6 | 4,2001_01_TB_DAL,2001,REG,1,2001-09-09,Sunday,13:00,TB,DAL,10,6,-4,Texas Stadium,Home,outdoors,astroturf,2001090911 7 | 5,2001_01_DET_GB,2001,REG,1,2001-09-09,Sunday,13:00,DET,GB,6,28,22,Lambeau Field,Home,outdoors,grass,2001090903 8 | 6,2001_01_PIT_JAX,2001,REG,1,2001-09-09,Sunday,13:00,PIT,JAX,3,21,18,Alltel Stadium,Home,outdoors,grass,2001090908 9 | 7,2001_01_OAK_KC,2001,REG,1,2001-09-09,Sunday,13:00,OAK,KC,27,24,-3,Arrowhead Stadium,Home,outdoors,grass,2001090907 10 | 8,2001_01_CAR_MIN,2001,REG,1,2001-09-09,Sunday,13:00,CAR,MIN,24,13,-11,Hubert H. Humphrey Metrodome,Home,dome,astroturf,2001090901 11 | 9,2001_01_IND_NYJ,2001,REG,1,2001-09-09,Sunday,13:00,IND,NYJ,45,24,-21,Giants Stadium,Home,outdoors,grass,2001090904 12 | 10,2001_01_STL_PHI,2001,REG,1,2001-09-09,Sunday,16:15,STL,PHI,20,17,-3,Veterans Stadium,Home,outdoors,fieldturf,2001090909 13 | 11,2001_01_WAS_SD,2001,REG,1,2001-09-09,Sunday,16:15,WAS,SD,3,30,27,Qualcomm Stadium,Home,outdoors,grass,2001090912 14 | 12,2001_01_ATL_SF,2001,REG,1,2001-09-09,Sunday,16:15,ATL,SF,13,16,3,3Com Park,Home,outdoors,grass,2001090900 15 | 13,2001_01_MIA_TEN,2001,REG,1,2001-09-09,Sunday,20:30,MIA,TEN,31,23,-8,Adelphia Coliseum,Home,outdoors,grass,2001090913 16 | 14,2001_01_NYG_DEN,2001,REG,1,2001-09-10,Monday,09:00,NYG,DEN,20,31,11,Invesco Field at Mile High,Home,outdoors,grass,2001091000 17 | 15,2001_02_CAR_ATL,2001,REG,2,2001-09-23,Sunday,13:00,CAR,ATL,16,24,8,Georgia Dome,Home,dome,astroturf,2001092302 18 | 16,2001_02_MIN_CHI,2001,REG,2,2001-09-23,Sunday,13:00,MIN,CHI,10,17,7,Soldier Field,Home,outdoors,grass,2001092304 19 | 17,2001_02_BAL_CIN,2001,REG,2,2001-09-23,Sunday,13:00,BAL,CIN,10,21,11,Paul Brown Stadium,Home,outdoors,grass,2001092300 20 | 18,2001_02_DET_CLE,2001,REG,2,2001-09-23,Sunday,13:00,DET,CLE,14,24,10,Cleveland Browns Stadium,Home,outdoors,grass,2001092303 21 | 19,2001_02_SD_DAL,2001,REG,2,2001-09-23,Sunday,13:00,SD,DAL,32,21,-11,Texas Stadium,Home,outdoors,astroturf,2001092310 22 | 20,2001_02_BUF_IND,2001,REG,2,2001-09-23,Sunday,13:00,BUF,IND,26,42,16,RCA Dome,Home,dome,astroturf,2001092301 23 | 21,2001_02_TEN_JAX,2001,REG,2,2001-09-23,Sunday,13:00,TEN,JAX,6,13,7,Alltel Stadium,Home,outdoors,grass,2001092311 24 | 22,2001_02_NYG_KC,2001,REG,2,2001-09-23,Sunday,13:00,NYG,KC,13,3,-10,Arrowhead Stadium,Home,outdoors,grass,2001092305 25 | 23,2001_02_OAK_MIA,2001,REG,2,2001-09-23,Sunday,13:00,OAK,MIA,15,18,3,Pro Player Stadium,Home,outdoors,grass,2001092307 26 | 24,2001_02_NYJ_NE,2001,REG,2,2001-09-23,Sunday,16:05,NYJ,NE,10,3,-7,Foxboro Stadium,Home,outdoors,grass,2001092306 27 | 25,2001_02_PHI_SEA,2001,REG,2,2001-09-23,Sunday,16:15,PHI,SEA,27,3,-24,Husky Stadium,Home,outdoors,fieldturf,2001092308 28 | 26,2001_02_STL_SF,2001,REG,2,2001-09-23,Sunday,16:15,STL,SF,30,26,-4,3Com Park,Home,outdoors,grass,2001092309 29 | 27,2001_02_DEN_ARI,2001,REG,2,2001-09-23,Sunday,20:30,DEN,ARI,38,17,-21,Sun Devil Stadium,Home,outdoors,grass,2001092312 30 | 28,2001_02_WAS_GB,2001,REG,2,2001-09-24,Monday,09:00,WAS,GB,0,37,37,Lambeau Field,Home,outdoors,grass,2001092400 31 | 29,2001_03_PIT_BUF,2001,REG,3,2001-09-30,Sunday,13:00,PIT,BUF,20,3,-17,Ralph Wilson Stadium,Home,outdoors,astroturf,2001093009 32 | 30,2001_03_GB_CAR,2001,REG,3,2001-09-30,Sunday,13:00,GB,CAR,28,7,-21,Ericsson Stadium,Home,outdoors,grass,2001093004 33 | 31,2001_03_TB_MIN,2001,REG,3,2001-09-30,Sunday,13:00,TB,MIN,16,20,4,Hubert H. Humphrey Metrodome,Home,dome,astroturf,2001093011 34 | 32,2001_03_IND_NE,2001,REG,3,2001-09-30,Sunday,13:00,IND,NE,13,44,31,Foxboro Stadium,Home,outdoors,grass,2001093005 35 | 33,2001_03_NO_NYG,2001,REG,3,2001-09-30,Sunday,13:00,NO,NYG,13,21,8,Giants Stadium,Home,outdoors,grass,2001093008 36 | 34,2001_03_MIA_STL,2001,REG,3,2001-09-30,Sunday,13:00,MIA,STL,10,42,32,Dome at America's Center,Home,dome,astroturf,2001093007 37 | 35,2001_03_KC_WAS,2001,REG,3,2001-09-30,Sunday,13:00,KC,WAS,45,13,-32,FedExField,Home,outdoors,grass,2001093006 38 | 36,2001_03_ATL_ARI,2001,REG,3,2001-09-30,Sunday,16:05,ATL,ARI,34,14,-20,Sun Devil Stadium,Home,outdoors,grass,2001093000 39 | 37,2001_03_BAL_DEN,2001,REG,3,2001-09-30,Sunday,16:15,BAL,DEN,20,13,-7,Invesco Field at Mile High,Home,outdoors,grass,2001093001 40 | 38,2001_03_CLE_JAX,2001,REG,3,2001-09-30,Sunday,16:15,CLE,JAX,23,14,-9,Alltel Stadium,Home,outdoors,grass,2001093003 41 | 39,2001_03_SEA_OAK,2001,REG,3,2001-09-30,Sunday,16:15,SEA,OAK,14,38,24,Network Associates Coliseum,Home,outdoors,grass,2001093010 42 | 40,2001_03_CIN_SD,2001,REG,3,2001-09-30,Sunday,16:15,CIN,SD,14,28,14,Qualcomm Stadium,Home,outdoors,grass,2001093002 43 | 41,2001_03_DAL_PHI,2001,REG,3,2001-09-30,Sunday,20:30,DAL,PHI,18,40,22,Veterans Stadium,Home,outdoors,fieldturf,2001093012 44 | 42,2001_03_SF_NYJ,2001,REG,3,2001-10-01,Monday,09:00,SF,NYJ,19,17,-2,Giants Stadium,Home,outdoors,grass,2001100100 45 | 43,2001_04_CHI_ATL,2001,REG,4,2001-10-07,Sunday,13:00,CHI,ATL,31,3,-28,Georgia Dome,Home,dome,astroturf,2001100701 46 | 44,2001_04_TEN_BAL,2001,REG,4,2001-10-07,Sunday,13:00,TEN,BAL,7,26,19,PSINet Stadium,Home,outdoors,grass,2001100710 47 | 45,2001_04_SD_CLE,2001,REG,4,2001-10-07,Sunday,13:00,SD,CLE,16,20,4,Cleveland Browns Stadium,Home,outdoors,grass,2001100709 48 | 46,2001_04_NE_MIA,2001,REG,4,2001-10-07,Sunday,13:00,NE,MIA,10,30,20,Pro Player Stadium,Home,outdoors,grass,2001100707 49 | 47,2001_04_MIN_NO,2001,REG,4,2001-10-07,Sunday,13:00,MIN,NO,15,28,13,Louisiana Superdome,Home,dome,astroturf,2001100706 50 | 48,2001_04_WAS_NYG,2001,REG,4,2001-10-07,Sunday,13:00,WAS,NYG,9,23,14,Giants Stadium,Home,outdoors,grass,2001100711 51 | 49,2001_04_ARI_PHI,2001,REG,4,2001-10-07,Sunday,13:00,ARI,PHI,21,20,-1,Veterans Stadium,Home,outdoors,fieldturf,2001100700 52 | 50,2001_04_CIN_PIT,2001,REG,4,2001-10-07,Sunday,13:00,CIN,PIT,7,16,9,Heinz Field,Home,outdoors,grass,2001100702 53 | 51,2001_04_NYJ_BUF,2001,REG,4,2001-10-07,Sunday,16:05,NYJ,BUF,42,36,-6,Ralph Wilson Stadium,Home,outdoors,astroturf,2001100708 54 | 52,2001_04_KC_DEN,2001,REG,4,2001-10-07,Sunday,16:05,KC,DEN,6,20,14,Invesco Field at Mile High,Home,outdoors,grass,2001100705 55 | 53,2001_04_JAX_SEA,2001,REG,4,2001-10-07,Sunday,16:05,JAX,SEA,15,24,9,Husky Stadium,Home,outdoors,fieldturf,2001100704 56 | 54,2001_04_DAL_OAK,2001,REG,4,2001-10-07,Sunday,16:15,DAL,OAK,21,28,7,Network Associates Coliseum,Home,outdoors,grass,2001100713 57 | 55,2001_04_GB_TB,2001,REG,4,2001-10-07,Sunday,16:15,GB,TB,10,14,4,Raymond James Stadium,Home,outdoors,grass,2001100703 58 | 56,2001_04_CAR_SF,2001,REG,4,2001-10-07,Sunday,20:30,CAR,SF,14,24,10,3Com Park,Home,outdoors,grass,2001100712 59 | 57,2001_04_STL_DET,2001,REG,4,2001-10-08,Monday,09:00,STL,DET,35,0,-35,Pontiac Silverdome,Home,dome,astroturf,2001100800 60 | 58,2001_05_SF_ATL,2001,REG,5,2001-10-14,Sunday,13:00,SF,ATL,37,31,-6,Georgia Dome,Home,dome,astroturf,2001101410 61 | 59,2001_05_NO_CAR,2001,REG,5,2001-10-14,Sunday,13:00,NO,CAR,27,25,-2,Ericsson Stadium,Home,outdoors,grass,2001101406 62 | 60,2001_05_ARI_CHI,2001,REG,5,2001-10-14,Sunday,13:00,ARI,CHI,13,20,7,Soldier Field,Home,outdoors,grass,2001101400 63 | 61,2001_05_CLE_CIN,2001,REG,5,2001-10-14,Sunday,13:00,CLE,CIN,14,24,10,Paul Brown Stadium,Home,outdoors,grass,2001101402 64 | 62,2001_05_BAL_GB,2001,REG,5,2001-10-14,Sunday,13:00,BAL,GB,23,31,8,Lambeau Field,Home,outdoors,grass,2001101401 65 | 63,2001_05_PIT_KC,2001,REG,5,2001-10-14,Sunday,13:00,PIT,KC,20,17,-3,Arrowhead Stadium,Home,outdoors,grass,2001101408 66 | 64,2001_05_DET_MIN,2001,REG,5,2001-10-14,Sunday,13:00,DET,MIN,26,31,5,Hubert H. Humphrey Metrodome,Home,dome,astroturf,2001101404 67 | 65,2001_05_SD_NE,2001,REG,5,2001-10-14,Sunday,13:00,SD,NE,26,29,3,Foxboro Stadium,Home,outdoors,grass,2001101409 68 | 66,2001_05_NYG_STL,2001,REG,5,2001-10-14,Sunday,13:00,NYG,STL,14,15,1,Dome at America's Center,Home,dome,astroturf,2001101407 69 | 67,2001_05_TB_TEN,2001,REG,5,2001-10-14,Sunday,13:00,TB,TEN,28,31,3,Adelphia Coliseum,Home,outdoors,grass,2001101411 70 | 68,2001_05_MIA_NYJ,2001,REG,5,2001-10-14,Sunday,16:15,MIA,NYJ,17,21,4,Giants Stadium,Home,outdoors,grass,2001101405 71 | 69,2001_05_DEN_SEA,2001,REG,5,2001-10-14,Sunday,16:15,DEN,SEA,21,34,13,Husky Stadium,Home,outdoors,fieldturf,2001101403 72 | 70,2001_05_OAK_IND,2001,REG,5,2001-10-14,Sunday,20:30,OAK,IND,23,18,-5,RCA Dome,Home,dome,astroturf,2001101412 73 | 71,2001_05_WAS_DAL,2001,REG,5,2001-10-15,Monday,09:00,WAS,DAL,7,9,2,Texas Stadium,Home,outdoors,astroturf,2001101500 74 | 72,2001_06_BUF_JAX,2001,REG,6,2001-10-18,Thursday,20:30,BUF,JAX,13,10,-3,Alltel Stadium,Home,outdoors,grass,2001101800 75 | 73,2001_06_CHI_CIN,2001,REG,6,2001-10-21,Sunday,13:00,CHI,CIN,24,0,-24,Paul Brown Stadium,Home,outdoors,grass,2001102103 76 | 74,2001_06_BAL_CLE,2001,REG,6,2001-10-21,Sunday,13:00,BAL,CLE,14,24,10,Cleveland Browns Stadium,Home,outdoors,grass,2001102101 77 | 75,2001_06_TEN_DET,2001,REG,6,2001-10-21,Sunday,13:00,TEN,DET,27,24,-3,Pontiac Silverdome,Home,dome,astroturf,2001102111 78 | 76,2001_06_NE_IND,2001,REG,6,2001-10-21,Sunday,13:00,NE,IND,38,17,-21,RCA Dome,Home,dome,astroturf,2001102108 79 | 77,2001_06_ATL_NO,2001,REG,6,2001-10-21,Sunday,13:00,ATL,NO,20,13,-7,Louisiana Superdome,Home,dome,astroturf,2001102100 80 | 78,2001_06_STL_NYJ,2001,REG,6,2001-10-21,Sunday,13:00,STL,NYJ,34,14,-20,Giants Stadium,Home,outdoors,grass,2001102110 81 | 79,2001_06_PIT_TB,2001,REG,6,2001-10-21,Sunday,13:00,PIT,TB,17,10,-7,Raymond James Stadium,Home,outdoors,grass,2001102109 82 | 80,2001_06_CAR_WAS,2001,REG,6,2001-10-21,Sunday,13:00,CAR,WAS,14,17,3,FedExField,Home,outdoors,grass,2001102102 83 | 81,2001_06_KC_ARI,2001,REG,6,2001-10-21,Sunday,16:00,KC,ARI,16,24,8,Sun Devil Stadium,Home,outdoors,grass,2001102107 84 | 82,2001_06_DEN_SD,2001,REG,6,2001-10-21,Sunday,16:05,DEN,SD,10,27,17,Qualcomm Stadium,Home,outdoors,grass,2001102105 85 | 83,2001_06_GB_MIN,2001,REG,6,2001-10-21,Sunday,16:15,GB,MIN,13,35,22,Hubert H. Humphrey Metrodome,Home,dome,astroturf,2001102106 86 | 84,2001_06_PHI_NYG,2001,REG,6,2001-10-22,Monday,09:00,PHI,NYG,10,9,-1,Giants Stadium,Home,outdoors,grass,2001102200 87 | 85,2001_07_IND_KC,2001,REG,7,2001-10-25,Thursday,20:30,IND,KC,35,28,-7,Arrowhead Stadium,Home,outdoors,grass,2001102500 88 | 86,2001_07_JAX_BAL,2001,REG,7,2001-10-28,Sunday,13:00,JAX,BAL,17,18,1,PSINet Stadium,Home,outdoors,grass,2001102804 89 | 87,2001_07_NYJ_CAR,2001,REG,7,2001-10-28,Sunday,13:00,NYJ,CAR,13,12,-1,Ericsson Stadium,Home,outdoors,grass,2001102809 90 | 88,2001_07_SF_CHI,2001,REG,7,2001-10-28,Sunday,13:00,SF,CHI,31,37,6,Soldier Field,Home,outdoors,grass,2001102811 91 | 89,2001_07_CIN_DET,2001,REG,7,2001-10-28,Sunday,13:00,CIN,DET,31,27,-4,Pontiac Silverdome,Home,dome,astroturf,2001102802 92 | 90,2001_07_NO_STL,2001,REG,7,2001-10-28,Sunday,13:00,NO,STL,34,31,-3,Dome at America's Center,Home,dome,astroturf,2001102808 93 | 91,2001_07_MIN_TB,2001,REG,7,2001-10-28,Sunday,13:00,MIN,TB,14,41,27,Raymond James Stadium,Home,outdoors,grass,2001102806 94 | 92,2001_07_ARI_DAL,2001,REG,7,2001-10-28,Sunday,16:05,ARI,DAL,3,17,14,Texas Stadium,Home,outdoors,astroturf,2001102800 95 | 93,2001_07_NYG_WAS,2001,REG,7,2001-10-28,Sunday,16:05,NYG,WAS,21,35,14,FedExField,Home,outdoors,grass,2001102812 96 | 94,2001_07_NE_DEN,2001,REG,7,2001-10-28,Sunday,16:15,NE,DEN,20,31,11,Invesco Field at Mile High,Home,outdoors,grass,2001102807 97 | 95,2001_07_OAK_PHI,2001,REG,7,2001-10-28,Sunday,16:15,OAK,PHI,20,10,-10,Veterans Stadium,Home,outdoors,fieldturf,2001102810 98 | 96,2001_07_BUF_SD,2001,REG,7,2001-10-28,Sunday,16:15,BUF,SD,24,27,3,Qualcomm Stadium,Home,outdoors,grass,2001102801 99 | 97,2001_07_MIA_SEA,2001,REG,7,2001-10-28,Sunday,16:15,MIA,SEA,24,20,-4,Husky Stadium,Home,outdoors,fieldturf,2001102805 100 | 98,2001_07_TEN_PIT,2001,REG,7,2001-10-29,Monday,09:00,TEN,PIT,7,34,27,Heinz Field,Home,outdoors,grass,2001102900 101 | 99,2001_08_NE_ATL,2001,REG,8,2001-11-04,Sunday,13:00,NE,ATL,24,10,-14,Georgia Dome,Home,dome,astroturf,2001110408 102 | 100,2001_08_IND_BUF,2001,REG,8,2001-11-04,Sunday,13:00,IND,BUF,30,14,-16,Ralph Wilson Stadium,Home,outdoors,astroturf,2001110405 103 | 101,2001_08_TB_GB,2001,REG,8,2001-11-04,Sunday,13:00,TB,GB,20,21,1,Lambeau Field,Home,outdoors,grass,2001110411 104 | 102,2001_08_CAR_MIA,2001,REG,8,2001-11-04,Sunday,13:00,CAR,MIA,6,23,17,Pro Player Stadium,Home,outdoors,grass,2001110401 105 | 103,2001_08_DAL_NYG,2001,REG,8,2001-11-04,Sunday,13:00,DAL,NYG,24,27,3,Giants Stadium,Home,outdoors,grass,2001110403 106 | 104,2001_08_BAL_PIT,2001,REG,8,2001-11-04,Sunday,13:00,BAL,PIT,13,10,-3,Heinz Field,Home,outdoors,grass,2001110400 107 | 105,2001_08_JAX_TEN,2001,REG,8,2001-11-04,Sunday,13:00,JAX,TEN,24,28,4,Adelphia Coliseum,Home,outdoors,grass,2001110406 108 | 106,2001_08_PHI_ARI,2001,REG,8,2001-11-04,Sunday,16:05,PHI,ARI,21,7,-14,Sun Devil Stadium,Home,outdoors,grass,2001110409 109 | 107,2001_08_DET_SF,2001,REG,8,2001-11-04,Sunday,16:05,DET,SF,13,21,8,3Com Park,Home,outdoors,grass,2001110404 110 | 108,2001_08_CLE_CHI,2001,REG,8,2001-11-04,Sunday,16:15,CLE,CHI,21,27,6,Soldier Field,Home,outdoors,grass,2001110402 111 | 109,2001_08_KC_SD,2001,REG,8,2001-11-04,Sunday,16:15,KC,SD,25,20,-5,Qualcomm Stadium,Home,outdoors,grass,2001110407 112 | 110,2001_08_SEA_WAS,2001,REG,8,2001-11-04,Sunday,16:15,SEA,WAS,14,27,13,FedExField,Home,outdoors,grass,2001110410 113 | 111,2001_08_NYJ_NO,2001,REG,8,2001-11-04,Sunday,20:30,NYJ,NO,16,9,-7,Louisiana Superdome,Home,dome,astroturf,2001110412 114 | 112,2001_08_DEN_OAK,2001,REG,8,2001-11-05,Monday,09:00,DEN,OAK,28,38,10,Network Associates Coliseum,Home,outdoors,grass,2001110500 115 | 113,2001_09_DAL_ATL,2001,REG,9,2001-11-11,Sunday,13:00,DAL,ATL,13,20,7,Georgia Dome,Home,dome,astroturf,2001111103 116 | 114,2001_09_GB_CHI,2001,REG,9,2001-11-11,Sunday,13:00,GB,CHI,20,12,-8,Soldier Field,Home,outdoors,grass,2001111104 117 | 115,2001_09_PIT_CLE,2001,REG,9,2001-11-11,Sunday,13:00,PIT,CLE,15,12,-3,Cleveland Browns Stadium,Home,outdoors,grass,2001111110 118 | 116,2001_09_TB_DET,2001,REG,9,2001-11-11,Sunday,13:00,TB,DET,20,17,-3,Pontiac Silverdome,Home,dome,astroturf,2001111112 119 | 117,2001_09_MIA_IND,2001,REG,9,2001-11-11,Sunday,13:00,MIA,IND,27,24,-3,RCA Dome,Home,dome,astroturf,2001111106 120 | 118,2001_09_CIN_JAX,2001,REG,9,2001-11-11,Sunday,13:00,CIN,JAX,13,30,17,Alltel Stadium,Home,outdoors,grass,2001111102 121 | 119,2001_09_BUF_NE,2001,REG,9,2001-11-11,Sunday,13:00,BUF,NE,11,21,10,Foxboro Stadium,Home,outdoors,grass,2001111100 122 | 120,2001_09_KC_NYJ,2001,REG,9,2001-11-11,Sunday,13:00,KC,NYJ,7,27,20,Giants Stadium,Home,outdoors,grass,2001111105 123 | 121,2001_09_CAR_STL,2001,REG,9,2001-11-11,Sunday,13:00,CAR,STL,14,48,34,Dome at America's Center,Home,dome,astroturf,2001111101 124 | 122,2001_09_SD_DEN,2001,REG,9,2001-11-11,Sunday,16:05,SD,DEN,16,26,10,Invesco Field at Mile High,Home,outdoors,grass,2001111111 125 | 123,2001_09_NYG_ARI,2001,REG,9,2001-11-11,Sunday,16:15,NYG,ARI,17,10,-7,Sun Devil Stadium,Home,outdoors,grass,2001111109 126 | 124,2001_09_MIN_PHI,2001,REG,9,2001-11-11,Sunday,16:15,MIN,PHI,17,48,31,Veterans Stadium,Home,outdoors,fieldturf,2001111107 127 | 125,2001_09_NO_SF,2001,REG,9,2001-11-11,Sunday,16:15,NO,SF,27,28,1,3Com Park,Home,outdoors,grass,2001111108 128 | 126,2001_09_OAK_SEA,2001,REG,9,2001-11-11,Sunday,20:30,OAK,SEA,27,34,7,Husky Stadium,Home,outdoors,fieldturf,2001111113 129 | 127,2001_09_BAL_TEN,2001,REG,9,2001-11-12,Monday,09:00,BAL,TEN,16,10,-6,Adelphia Coliseum,Home,outdoors,grass,2001111200 130 | 128,2001_10_CLE_BAL,2001,REG,10,2001-11-18,Sunday,13:00,CLE,BAL,27,17,-10,PSINet Stadium,Home,outdoors,grass,2001111802 131 | 129,2001_10_SEA_BUF,2001,REG,10,2001-11-18,Sunday,13:00,SEA,BUF,23,20,-3,Ralph Wilson Stadium,Home,outdoors,astroturf,2001111810 132 | 130,2001_10_SF_CAR,2001,REG,10,2001-11-18,Sunday,13:00,SF,CAR,25,22,-3,Ericsson Stadium,Home,outdoors,grass,2001111809 133 | 131,2001_10_TEN_CIN,2001,REG,10,2001-11-18,Sunday,13:00,TEN,CIN,20,7,-13,Paul Brown Stadium,Home,outdoors,grass,2001111811 134 | 132,2001_10_PHI_DAL,2001,REG,10,2001-11-18,Sunday,13:00,PHI,DAL,36,3,-33,Texas Stadium,Home,outdoors,astroturf,2001111807 135 | 133,2001_10_ATL_GB,2001,REG,10,2001-11-18,Sunday,13:00,ATL,GB,23,20,-3,Lambeau Field,Home,outdoors,grass,2001111800 136 | 134,2001_10_NYJ_MIA,2001,REG,10,2001-11-18,Sunday,13:00,NYJ,MIA,24,0,-24,Pro Player Stadium,Home,outdoors,grass,2001111806 137 | 135,2001_10_IND_NO,2001,REG,10,2001-11-18,Sunday,13:00,IND,NO,20,34,14,Louisiana Superdome,Home,dome,astroturf,2001111804 138 | 136,2001_10_SD_OAK,2001,REG,10,2001-11-18,Sunday,16:05,SD,OAK,24,34,10,Network Associates Coliseum,Home,outdoors,grass,2001111808 139 | 137,2001_10_JAX_PIT,2001,REG,10,2001-11-18,Sunday,16:05,JAX,PIT,7,20,13,Heinz Field,Home,outdoors,grass,2001111805 140 | 138,2001_10_DET_ARI,2001,REG,10,2001-11-18,Sunday,16:15,DET,ARI,38,45,7,Sun Devil Stadium,Home,outdoors,grass,2001111803 141 | 139,2001_10_WAS_DEN,2001,REG,10,2001-11-18,Sunday,16:15,WAS,DEN,17,10,-7,Invesco Field at Mile High,Home,outdoors,grass,2001111812 142 | 140,2001_10_CHI_TB,2001,REG,10,2001-11-18,Sunday,16:15,CHI,TB,27,24,-3,Raymond James Stadium,Home,outdoors,grass,2001111801 143 | 141,2001_10_STL_NE,2001,REG,10,2001-11-18,Sunday,20:30,STL,NE,24,17,-7,Foxboro Stadium,Home,outdoors,grass,2001111813 144 | 142,2001_10_NYG_MIN,2001,REG,10,2001-11-19,Monday,09:00,NYG,MIN,16,28,12,Hubert H. Humphrey Metrodome,Home,dome,astroturf,2001111900 145 | 143,2001_11_GB_DET,2001,REG,11,2001-11-22,Thursday,12:30,GB,DET,29,27,-2,Pontiac Silverdome,Home,dome,astroturf,2001112200 146 | 144,2001_11_DEN_DAL,2001,REG,11,2001-11-22,Thursday,16:05,DEN,DAL,26,24,-2,Texas Stadium,Home,outdoors,astroturf,2001112201 147 | 145,2001_11_MIA_BUF,2001,REG,11,2001-11-25,Sunday,13:00,MIA,BUF,34,27,-7,Ralph Wilson Stadium,Home,outdoors,astroturf,2001112504 148 | 146,2001_11_ATL_CAR,2001,REG,11,2001-11-25,Sunday,13:00,ATL,CAR,10,7,-3,Ericsson Stadium,Home,outdoors,grass,2001112501 149 | 147,2001_11_CIN_CLE,2001,REG,11,2001-11-25,Sunday,13:00,CIN,CLE,0,18,18,Cleveland Browns Stadium,Home,outdoors,grass,2001112503 150 | 148,2001_11_SF_IND,2001,REG,11,2001-11-25,Sunday,13:00,SF,IND,40,21,-19,RCA Dome,Home,dome,astroturf,2001112508 151 | 149,2001_11_BAL_JAX,2001,REG,11,2001-11-25,Sunday,13:00,BAL,JAX,24,21,-3,Alltel Stadium,Home,outdoors,grass,2001112502 152 | 150,2001_11_SEA_KC,2001,REG,11,2001-11-25,Sunday,13:00,SEA,KC,7,19,12,Arrowhead Stadium,Home,outdoors,grass,2001112509 153 | 151,2001_11_WAS_PHI,2001,REG,11,2001-11-25,Sunday,13:00,WAS,PHI,13,3,-10,Veterans Stadium,Home,outdoors,fieldturf,2001112510 154 | 152,2001_11_PIT_TEN,2001,REG,11,2001-11-25,Sunday,13:00,PIT,TEN,34,24,-10,Adelphia Coliseum,Home,outdoors,grass,2001112507 155 | 153,2001_11_NO_NE,2001,REG,11,2001-11-25,Sunday,16:05,NO,NE,17,34,17,Foxboro Stadium,Home,outdoors,grass,2001112505 156 | 154,2001_11_ARI_SD,2001,REG,11,2001-11-25,Sunday,16:05,ARI,SD,20,17,-3,Qualcomm Stadium,Home,outdoors,grass,2001112500 157 | 155,2001_11_OAK_NYG,2001,REG,11,2001-11-25,Sunday,16:15,OAK,NYG,28,10,-18,Giants Stadium,Home,outdoors,grass,2001112506 158 | 156,2001_11_CHI_MIN,2001,REG,11,2001-11-25,Sunday,20:30,CHI,MIN,13,6,-7,Hubert H. Humphrey Metrodome,Home,dome,astroturf,2001112511 159 | 157,2001_11_TB_STL,2001,REG,11,2001-11-26,Monday,09:00,TB,STL,24,17,-7,Dome at America's Center,Home,dome,astroturf,2001112600 160 | 158,2001_12_PHI_KC,2001,REG,12,2001-11-29,Thursday,20:30,PHI,KC,23,10,-13,Arrowhead Stadium,Home,outdoors,grass,2001112900 161 | 159,2001_12_IND_BAL,2001,REG,12,2001-12-02,Sunday,13:00,IND,BAL,27,39,12,PSINet Stadium,Home,outdoors,grass,2001120205 162 | 160,2001_12_DET_CHI,2001,REG,12,2001-12-02,Sunday,13:00,DET,CHI,10,13,3,Soldier Field,Home,outdoors,grass,2001120204 163 | 161,2001_12_TB_CIN,2001,REG,12,2001-12-02,Sunday,13:00,TB,CIN,16,13,-3,Paul Brown Stadium,Home,outdoors,grass,2001120210 164 | 162,2001_12_TEN_CLE,2001,REG,12,2001-12-02,Sunday,13:00,TEN,CLE,31,15,-16,Cleveland Browns Stadium,Home,outdoors,grass,2001120211 165 | 163,2001_12_DEN_MIA,2001,REG,12,2001-12-02,Sunday,13:00,DEN,MIA,10,21,11,Pro Player Stadium,Home,outdoors,grass,2001120203 166 | 164,2001_12_CAR_NO,2001,REG,12,2001-12-02,Sunday,13:00,CAR,NO,23,27,4,Louisiana Superdome,Home,dome,astroturf,2001120201 167 | 165,2001_12_NE_NYJ,2001,REG,12,2001-12-02,Sunday,13:00,NE,NYJ,17,16,-1,Giants Stadium,Home,outdoors,grass,2001120207 168 | 166,2001_12_MIN_PIT,2001,REG,12,2001-12-02,Sunday,13:00,MIN,PIT,16,21,5,Heinz Field,Home,outdoors,grass,2001120206 169 | 167,2001_12_SD_SEA,2001,REG,12,2001-12-02,Sunday,16:05,SD,SEA,10,13,3,Husky Stadium,Home,outdoors,fieldturf,2001120209 170 | 168,2001_12_STL_ATL,2001,REG,12,2001-12-02,Sunday,16:15,STL,ATL,35,6,-29,Georgia Dome,Home,dome,astroturf,2001120208 171 | 169,2001_12_ARI_OAK,2001,REG,12,2001-12-02,Sunday,16:15,ARI,OAK,34,31,-3,Network Associates Coliseum,Home,outdoors,grass,2001120200 172 | 170,2001_12_DAL_WAS,2001,REG,12,2001-12-02,Sunday,16:15,DAL,WAS,20,14,-6,FedExField,Home,outdoors,grass,2001120202 173 | 171,2001_12_BUF_SF,2001,REG,12,2001-12-02,Sunday,20:30,BUF,SF,0,35,35,3Com Park,Home,outdoors,grass,2001120212 174 | 172,2001_12_GB_JAX,2001,REG,12,2001-12-03,Monday,09:00,GB,JAX,28,21,-7,Alltel Stadium,Home,outdoors,grass,2001120300 175 | 173,2001_13_NO_ATL,2001,REG,13,2001-12-09,Sunday,13:00,NO,ATL,28,10,-18,Georgia Dome,Home,dome,astroturf,2001120906 176 | 174,2001_13_CAR_BUF,2001,REG,13,2001-12-09,Sunday,13:00,CAR,BUF,24,25,1,Ralph Wilson Stadium,Home,outdoors,astroturf,2001120900 177 | 175,2001_13_JAX_CIN,2001,REG,13,2001-12-09,Sunday,13:00,JAX,CIN,14,10,-4,Paul Brown Stadium,Home,outdoors,grass,2001120904 178 | 176,2001_13_NYG_DAL,2001,REG,13,2001-12-09,Sunday,13:00,NYG,DAL,13,20,7,Texas Stadium,Home,outdoors,astroturf,2001120907 179 | 177,2001_13_CHI_GB,2001,REG,13,2001-12-09,Sunday,13:00,CHI,GB,7,17,10,Lambeau Field,Home,outdoors,grass,2001120901 180 | 178,2001_13_TEN_MIN,2001,REG,13,2001-12-09,Sunday,13:00,TEN,MIN,24,42,18,Hubert H. Humphrey Metrodome,Home,dome,astroturf,2001120911 181 | 179,2001_13_CLE_NE,2001,REG,13,2001-12-09,Sunday,13:00,CLE,NE,16,27,11,Foxboro Stadium,Home,outdoors,grass,2001120902 182 | 180,2001_13_SD_PHI,2001,REG,13,2001-12-09,Sunday,13:00,SD,PHI,14,24,10,Veterans Stadium,Home,outdoors,fieldturf,2001120909 183 | 181,2001_13_SF_STL,2001,REG,13,2001-12-09,Sunday,13:00,SF,STL,14,27,13,Dome at America's Center,Home,dome,astroturf,2001120910 184 | 182,2001_13_DET_TB,2001,REG,13,2001-12-09,Sunday,13:00,DET,TB,12,15,3,Raymond James Stadium,Home,outdoors,grass,2001120903 185 | 183,2001_13_WAS_ARI,2001,REG,13,2001-12-09,Sunday,16:05,WAS,ARI,20,10,-10,Sun Devil Stadium,Home,outdoors,grass,2001120912 186 | 184,2001_13_KC_OAK,2001,REG,13,2001-12-09,Sunday,16:15,KC,OAK,26,28,2,Network Associates Coliseum,Home,outdoors,grass,2001120905 187 | 185,2001_13_NYJ_PIT,2001,REG,13,2001-12-09,Sunday,16:15,NYJ,PIT,7,18,11,Heinz Field,Home,outdoors,grass,2001120908 188 | 186,2001_13_SEA_DEN,2001,REG,13,2001-12-09,Sunday,20:30,SEA,DEN,7,20,13,Invesco Field at Mile High,Home,outdoors,grass,2001120913 189 | 187,2001_13_IND_MIA,2001,REG,13,2001-12-10,Monday,09:00,IND,MIA,6,41,35,Pro Player Stadium,Home,outdoors,grass,2001121000 190 | 188,2001_14_ARI_NYG,2001,REG,14,2001-12-15,Saturday,13:30,ARI,NYG,13,17,4,Giants Stadium,Home,outdoors,grass,2001121500 191 | 189,2001_14_OAK_SD,2001,REG,14,2001-12-15,Saturday,17:00,OAK,SD,13,6,-7,Qualcomm Stadium,Home,outdoors,grass,2001121501 192 | 190,2001_14_NE_BUF,2001,REG,14,2001-12-16,Sunday,13:00,NE,BUF,12,9,-3,Ralph Wilson Stadium,Home,outdoors,astroturf,2001121608 193 | 191,2001_14_TB_CHI,2001,REG,14,2001-12-16,Sunday,13:00,TB,CHI,3,27,24,Soldier Field,Home,outdoors,grass,2001121610 194 | 192,2001_14_JAX_CLE,2001,REG,14,2001-12-16,Sunday,13:00,JAX,CLE,15,10,-5,Cleveland Browns Stadium,Home,outdoors,grass,2001121605 195 | 193,2001_14_MIN_DET,2001,REG,14,2001-12-16,Sunday,13:00,MIN,DET,24,27,3,Pontiac Silverdome,Home,dome,astroturf,2001121607 196 | 194,2001_14_ATL_IND,2001,REG,14,2001-12-16,Sunday,13:00,ATL,IND,27,41,14,RCA Dome,Home,dome,astroturf,2001121600 197 | 195,2001_14_DEN_KC,2001,REG,14,2001-12-16,Sunday,13:00,DEN,KC,23,26,3,Arrowhead Stadium,Home,outdoors,grass,2001121603 198 | 196,2001_14_CIN_NYJ,2001,REG,14,2001-12-16,Sunday,13:00,CIN,NYJ,14,15,1,Giants Stadium,Home,outdoors,grass,2001121601 199 | 197,2001_14_PHI_WAS,2001,REG,14,2001-12-16,Sunday,16:00,PHI,WAS,20,6,-14,FedExField,Home,outdoors,grass,2001121609 200 | 198,2001_14_MIA_SF,2001,REG,14,2001-12-16,Sunday,16:05,MIA,SF,0,21,21,3Com Park,Home,outdoors,grass,2001121606 201 | 199,2001_14_DAL_SEA,2001,REG,14,2001-12-16,Sunday,16:15,DAL,SEA,3,29,26,Husky Stadium,Home,outdoors,fieldturf,2001121602 202 | 200,2001_14_GB_TEN,2001,REG,14,2001-12-16,Sunday,16:15,GB,TEN,20,26,6,Adelphia Coliseum,Home,outdoors,grass,2001121604 203 | 201,2001_14_PIT_BAL,2001,REG,14,2001-12-16,Sunday,20:30,PIT,BAL,26,21,-5,PSINet Stadium,Home,outdoors,grass,2001121611 204 | 202,2001_14_STL_NO,2001,REG,14,2001-12-17,Monday,09:00,STL,NO,34,21,-13,Louisiana Superdome,Home,dome,astroturf,2001121700 205 | 203,2001_15_TEN_OAK,2001,REG,15,2001-12-22,Saturday,09:00,TEN,OAK,13,10,-3,Network Associates Coliseum,Home,outdoors,grass,2001122202 206 | 204,2001_15_MIA_NE,2001,REG,15,2001-12-22,Saturday,13:30,MIA,NE,13,20,7,Foxboro Stadium,Home,outdoors,grass,2001122200 207 | 205,2001_15_PHI_SF,2001,REG,15,2001-12-22,Saturday,17:00,PHI,SF,3,13,10,3Com Park,Home,outdoors,grass,2001122201 208 | 206,2001_15_BUF_ATL,2001,REG,15,2001-12-23,Sunday,13:00,BUF,ATL,30,33,3,Georgia Dome,Home,dome,astroturf,2001122300 209 | 207,2001_15_CIN_BAL,2001,REG,15,2001-12-23,Sunday,13:00,CIN,BAL,0,16,16,PSINet Stadium,Home,outdoors,grass,2001122302 210 | 208,2001_15_STL_CAR,2001,REG,15,2001-12-23,Sunday,13:00,STL,CAR,38,32,-6,Ericsson Stadium,Home,outdoors,grass,2001122308 211 | 209,2001_15_SD_KC,2001,REG,15,2001-12-23,Sunday,13:00,SD,KC,17,20,3,Arrowhead Stadium,Home,outdoors,grass,2001122309 212 | 210,2001_15_JAX_MIN,2001,REG,15,2001-12-23,Sunday,13:00,JAX,MIN,33,3,-30,Hubert H. Humphrey Metrodome,Home,dome,astroturf,2001122306 213 | 211,2001_15_SEA_NYG,2001,REG,15,2001-12-23,Sunday,13:00,SEA,NYG,24,27,3,Giants Stadium,Home,outdoors,grass,2001122310 214 | 212,2001_15_DET_PIT,2001,REG,15,2001-12-23,Sunday,13:00,DET,PIT,14,47,33,Heinz Field,Home,outdoors,grass,2001122305 215 | 213,2001_15_NO_TB,2001,REG,15,2001-12-23,Sunday,13:00,NO,TB,21,48,27,Raymond James Stadium,Home,outdoors,grass,2001122307 216 | 214,2001_15_CHI_WAS,2001,REG,15,2001-12-23,Sunday,13:00,CHI,WAS,20,15,-5,FedExField,Home,outdoors,grass,2001122301 217 | 215,2001_15_DAL_ARI,2001,REG,15,2001-12-23,Sunday,16:05,DAL,ARI,10,17,7,Sun Devil Stadium,Home,outdoors,grass,2001122304 218 | 216,2001_15_CLE_GB,2001,REG,15,2001-12-23,Sunday,16:15,CLE,GB,7,30,23,Lambeau Field,Home,outdoors,grass,2001122303 219 | 217,2001_15_NYJ_IND,2001,REG,15,2001-12-23,Sunday,20:30,NYJ,IND,29,28,-1,RCA Dome,Home,dome,astroturf,2001122311 220 | 218,2001_16_BAL_TB,2001,REG,16,2001-12-29,Saturday,09:00,BAL,TB,10,22,12,Raymond James Stadium,Home,outdoors,grass,2001122900 221 | 219,2001_16_ARI_CAR,2001,REG,16,2001-12-30,Sunday,13:00,ARI,CAR,30,7,-23,Ericsson Stadium,Home,outdoors,grass,2001123000 222 | 220,2001_16_PIT_CIN,2001,REG,16,2001-12-30,Sunday,13:00,PIT,CIN,23,26,3,Paul Brown Stadium,Home,outdoors,grass,2001123010 223 | 221,2001_16_SF_DAL,2001,REG,16,2001-12-30,Sunday,13:00,SF,DAL,21,27,6,Texas Stadium,Home,outdoors,astroturf,2001123011 224 | 222,2001_16_CHI_DET,2001,REG,16,2001-12-30,Sunday,13:00,CHI,DET,24,0,-24,Pontiac Silverdome,Home,dome,astroturf,2001123003 225 | 223,2001_16_MIN_GB,2001,REG,16,2001-12-30,Sunday,13:00,MIN,GB,13,24,11,Lambeau Field,Home,outdoors,grass,2001123007 226 | 224,2001_16_KC_JAX,2001,REG,16,2001-12-30,Sunday,13:00,KC,JAX,30,26,-4,Alltel Stadium,Home,outdoors,grass,2001123006 227 | 225,2001_16_ATL_MIA,2001,REG,16,2001-12-30,Sunday,13:00,ATL,MIA,14,21,7,Pro Player Stadium,Home,outdoors,grass,2001123001 228 | 226,2001_16_BUF_NYJ,2001,REG,16,2001-12-30,Sunday,13:00,BUF,NYJ,14,9,-5,Giants Stadium,Home,outdoors,grass,2001123002 229 | 227,2001_16_IND_STL,2001,REG,16,2001-12-30,Sunday,13:00,IND,STL,17,42,25,Dome at America's Center,Home,dome,astroturf,2001123005 230 | 228,2001_16_CLE_TEN,2001,REG,16,2001-12-30,Sunday,13:00,CLE,TEN,41,38,-3,Adelphia Coliseum,Home,outdoors,grass,2001123004 231 | 229,2001_16_NYG_PHI,2001,REG,16,2001-12-30,Sunday,16:05,NYG,PHI,21,24,3,Veterans Stadium,Home,outdoors,fieldturf,2001123008 232 | 230,2001_16_OAK_DEN,2001,REG,16,2001-12-30,Sunday,16:15,OAK,DEN,17,23,6,Invesco Field at Mile High,Home,outdoors,grass,2001123009 233 | 231,2001_16_SEA_SD,2001,REG,16,2001-12-30,Sunday,16:15,SEA,SD,25,22,-3,Qualcomm Stadium,Home,outdoors,grass,2001123012 234 | 232,2001_16_WAS_NO,2001,REG,16,2001-12-30,Sunday,20:30,WAS,NO,40,10,-30,Louisiana Superdome,Home,dome,astroturf,2001123013 235 | 233,2001_17_DEN_IND,2001,REG,17,2002-01-06,Sunday,12:00,DEN,IND,10,29,19,RCA Dome,Home,dome,astroturf,2002010605 236 | 234,2001_17_NE_CAR,2001,REG,17,2002-01-06,Sunday,13:00,NE,CAR,38,6,-32,Ericsson Stadium,Home,outdoors,grass,2002010609 237 | 235,2001_17_JAX_CHI,2001,REG,17,2002-01-06,Sunday,13:00,JAX,CHI,13,33,20,Soldier Field,Home,outdoors,grass,2002010607 238 | 236,2001_17_DAL_DET,2001,REG,17,2002-01-06,Sunday,13:00,DAL,DET,10,15,5,Pontiac Silverdome,Home,dome,astroturf,2002010604 239 | 237,2001_17_SF_NO,2001,REG,17,2002-01-06,Sunday,13:00,SF,NO,38,0,-38,Louisiana Superdome,Home,dome,astroturf,2002010612 240 | 238,2001_17_GB_NYG,2001,REG,17,2002-01-06,Sunday,13:00,GB,NYG,34,25,-9,Giants Stadium,Home,outdoors,grass,2002010606 241 | 239,2001_17_CLE_PIT,2001,REG,17,2002-01-06,Sunday,13:00,CLE,PIT,7,28,21,Heinz Field,Home,outdoors,grass,2002010613 242 | 240,2001_17_CIN_TEN,2001,REG,17,2002-01-06,Sunday,13:00,CIN,TEN,23,21,-2,Adelphia Coliseum,Home,outdoors,grass,2002010603 243 | 241,2001_17_ARI_WAS,2001,REG,17,2002-01-06,Sunday,13:00,ARI,WAS,17,20,3,FedExField,Home,outdoors,grass,2002010601 244 | 242,2001_17_ATL_STL,2001,REG,17,2002-01-06,Sunday,16:05,ATL,STL,13,31,18,Dome at America's Center,Home,dome,astroturf,2002010600 245 | 243,2001_17_BUF_MIA,2001,REG,17,2002-01-06,Sunday,16:15,BUF,MIA,7,34,27,Pro Player Stadium,Home,outdoors,grass,2002010602 246 | 244,2001_17_NYJ_OAK,2001,REG,17,2002-01-06,Sunday,16:15,NYJ,OAK,24,22,-2,Network Associates Coliseum,Home,outdoors,grass,2002010610 247 | 245,2001_17_KC_SEA,2001,REG,17,2002-01-06,Sunday,16:15,KC,SEA,18,21,3,Husky Stadium,Home,outdoors,fieldturf,2002010608 248 | 246,2001_17_PHI_TB,2001,REG,17,2002-01-06,Sunday,20:30,PHI,TB,17,13,-4,Raymond James Stadium,Home,outdoors,grass,2002010611 249 | 247,2001_17_MIN_BAL,2001,REG,17,2002-01-07,Monday,09:00,MIN,BAL,3,19,16,PSINet Stadium,Home,outdoors,grass,2002010700 250 | 248,2001_18_TB_PHI,2001,WC,18,2002-01-12,Saturday,16:30,TB,PHI,9,31,22,Veterans Stadium,Home,outdoors,fieldturf,2002011200 251 | 249,2001_18_NYJ_OAK,2001,WC,18,2002-01-12,Saturday,20:00,NYJ,OAK,24,38,14,Network Associates Coliseum,Home,outdoors,grass,2002011201 252 | 250,2001_18_SF_GB,2001,WC,18,2002-01-13,Sunday,12:30,SF,GB,15,25,10,Lambeau Field,Home,outdoors,grass,2002011300 253 | 251,2001_18_BAL_MIA,2001,WC,18,2002-01-13,Sunday,16:00,BAL,MIA,20,3,-17,Pro Player Stadium,Home,outdoors,grass,2002011301 254 | 252,2001_19_PHI_CHI,2001,DIV,19,2002-01-19,Saturday,16:30,PHI,CHI,33,19,-14,Soldier Field,Home,outdoors,grass,2002011900 255 | 253,2001_19_OAK_NE,2001,DIV,19,2002-01-19,Saturday,20:00,OAK,NE,13,16,3,Foxboro Stadium,Home,outdoors,grass,2002011901 256 | 254,2001_19_BAL_PIT,2001,DIV,19,2002-01-20,Sunday,12:30,BAL,PIT,10,27,17,Heinz Field,Home,outdoors,grass,2002012001 257 | 255,2001_19_GB_STL,2001,DIV,19,2002-01-20,Sunday,16:00,GB,STL,17,45,28,Dome at America's Center,Home,dome,astroturf,2002012000 258 | 256,2001_20_NE_PIT,2001,CON,20,2002-01-27,Sunday,12:30,NE,PIT,24,17,-7,Heinz Field,Home,outdoors,grass,2002012700 259 | 257,2001_20_PHI_STL,2001,CON,20,2002-01-27,Sunday,16:00,PHI,STL,24,29,5,Dome at America's Center,Home,dome,astroturf,2002012701 260 | 258,2001_21_STL_NE,2001,SB,21,2002-02-03,Sunday,18:40,STL,NE,17,20,3,Louisiana Superdome,Neutral,dome,astroturf,2002020300 261 | -------------------------------------------------------------------------------- /data/schedules/2021.csv: -------------------------------------------------------------------------------- 1 | ,game_id,season,game_type,week,gameday,weekday,gametime,away_team,home_team,away_score,home_score,home_result,stadium,location,roof,surface,old_game_id 2 | 0,2021_01_DAL_TB,2021,REG,1,2021-09-09,Thursday,20:20,DAL,TB,,,,Raymond James Stadium,Home,outdoors,grass,2021090900 3 | 1,2021_01_PHI_ATL,2021,REG,1,2021-09-12,Sunday,13:00,PHI,ATL,,,,Mercedes-Benz Stadium,Home,,fieldturf,2021091200 4 | 2,2021_01_PIT_BUF,2021,REG,1,2021-09-12,Sunday,13:00,PIT,BUF,,,,New Era Field,Home,outdoors,astroturf,2021091201 5 | 3,2021_01_NYJ_CAR,2021,REG,1,2021-09-12,Sunday,13:00,NYJ,CAR,,,,Bank of America Stadium,Home,outdoors,grass,2021091202 6 | 4,2021_01_MIN_CIN,2021,REG,1,2021-09-12,Sunday,13:00,MIN,CIN,,,,Paul Brown Stadium,Home,outdoors,grass,2021091203 7 | 5,2021_01_SF_DET,2021,REG,1,2021-09-12,Sunday,13:00,SF,DET,,,,Ford Field,Home,dome,fieldturf,2021091204 8 | 6,2021_01_JAX_HOU,2021,REG,1,2021-09-12,Sunday,13:00,JAX,HOU,,,,NRG Stadium,Home,,grass,2021091205 9 | 7,2021_01_SEA_IND,2021,REG,1,2021-09-12,Sunday,13:00,SEA,IND,,,,Lucas Oil Stadium,Home,,fieldturf,2021091206 10 | 8,2021_01_ARI_TEN,2021,REG,1,2021-09-12,Sunday,13:00,ARI,TEN,,,,Nissan Stadium,Home,outdoors,grass,2021091207 11 | 9,2021_01_LAC_WAS,2021,REG,1,2021-09-12,Sunday,13:00,LAC,WAS,,,,FedExField,Home,outdoors,grass,2021091208 12 | 10,2021_01_CLE_KC,2021,REG,1,2021-09-12,Sunday,16:25,CLE,KC,,,,GEHA Field at Arrowhead Stadium,Home,outdoors,astroturf,2021091209 13 | 11,2021_01_MIA_NE,2021,REG,1,2021-09-12,Sunday,16:25,MIA,NE,,,,Gillette Stadium,Home,outdoors,grass,2021091210 14 | 12,2021_01_GB_NO,2021,REG,1,2021-09-12,Sunday,16:25,GB,NO,,,,Mercedes-Benz Superdome,Home,dome,astroturf,2021091211 15 | 13,2021_01_DEN_NYG,2021,REG,1,2021-09-12,Sunday,16:25,DEN,NYG,,,,MetLife Stadium,Home,outdoors,fieldturf ,2021091212 16 | 14,2021_01_CHI_LA,2021,REG,1,2021-09-12,Sunday,20:20,CHI,LA,,,,SoFi Stadium,Home,dome,matrixturf,2021091213 17 | 15,2021_01_BAL_LV,2021,REG,1,2021-09-13,Monday,20:15,BAL,LV,,,,Allegiant Stadium,Home,dome,grass,2021091300 18 | 16,2021_02_NYG_WAS,2021,REG,2,2021-09-16,Thursday,20:20,NYG,WAS,,,,FedExField,Home,outdoors,grass,2021091600 19 | 17,2021_02_NO_CAR,2021,REG,2,2021-09-19,Sunday,13:00,NO,CAR,,,,Bank of America Stadium,Home,outdoors,grass,2021091908 20 | 18,2021_02_CIN_CHI,2021,REG,2,2021-09-19,Sunday,13:00,CIN,CHI,,,,Soldier Field,Home,outdoors,grass,2021091906 21 | 19,2021_02_HOU_CLE,2021,REG,2,2021-09-19,Sunday,13:00,HOU,CLE,,,,FirstEnergy Stadium,Home,outdoors,grass,2021091907 22 | 20,2021_02_LA_IND,2021,REG,2,2021-09-19,Sunday,13:00,LA,IND,,,,Lucas Oil Stadium,Home,,fieldturf,2021091904 23 | 21,2021_02_DEN_JAX,2021,REG,2,2021-09-19,Sunday,13:00,DEN,JAX,,,,TIAA Bank Stadium,Home,outdoors,grass,2021091901 24 | 22,2021_02_BUF_MIA,2021,REG,2,2021-09-19,Sunday,13:00,BUF,MIA,,,,Hard Rock Stadium,Home,outdoors,grass,2021091902 25 | 23,2021_02_NE_NYJ,2021,REG,2,2021-09-19,Sunday,13:00,NE,NYJ,,,,MetLife Stadium,Home,outdoors,fieldturf ,2021091900 26 | 24,2021_02_SF_PHI,2021,REG,2,2021-09-19,Sunday,13:00,SF,PHI,,,,Lincoln Financial Field,Home,outdoors,grass,2021091903 27 | 25,2021_02_LV_PIT,2021,REG,2,2021-09-19,Sunday,13:00,LV,PIT,,,,Heinz Field,Home,outdoors,grass,2021091905 28 | 26,2021_02_MIN_ARI,2021,REG,2,2021-09-19,Sunday,16:05,MIN,ARI,,,,State Farm Stadium,Home,closed,grass,2021091909 29 | 27,2021_02_ATL_TB,2021,REG,2,2021-09-19,Sunday,16:05,ATL,TB,,,,Raymond James Stadium,Home,outdoors,grass,2021091910 30 | 28,2021_02_DAL_LAC,2021,REG,2,2021-09-19,Sunday,16:25,DAL,LAC,,,,SoFi Stadium,Home,dome,matrixturf,2021091912 31 | 29,2021_02_TEN_SEA,2021,REG,2,2021-09-19,Sunday,16:25,TEN,SEA,,,,Lumen Field,Home,outdoors,fieldturf,2021091911 32 | 30,2021_02_KC_BAL,2021,REG,2,2021-09-19,Sunday,20:20,KC,BAL,,,,M&T Bank Stadium,Home,outdoors,grass,2021091913 33 | 31,2021_02_DET_GB,2021,REG,2,2021-09-20,Monday,20:15,DET,GB,,,,Lambeau Field,Home,outdoors,grass,2021092000 34 | 32,2021_03_CAR_HOU,2021,REG,3,2021-09-23,Thursday,20:20,CAR,HOU,,,,NRG Stadium,Home,,grass,2021092300 35 | 33,2021_03_WAS_BUF,2021,REG,3,2021-09-26,Sunday,13:00,WAS,BUF,,,,New Era Field,Home,outdoors,astroturf,2021092608 36 | 34,2021_03_CHI_CLE,2021,REG,3,2021-09-26,Sunday,13:00,CHI,CLE,,,,FirstEnergy Stadium,Home,outdoors,grass,2021092604 37 | 35,2021_03_BAL_DET,2021,REG,3,2021-09-26,Sunday,13:00,BAL,DET,,,,Ford Field,Home,dome,fieldturf,2021092605 38 | 36,2021_03_ARI_JAX,2021,REG,3,2021-09-26,Sunday,13:00,ARI,JAX,,,,TIAA Bank Stadium,Home,outdoors,grass,2021092607 39 | 37,2021_03_LAC_KC,2021,REG,3,2021-09-26,Sunday,13:00,LAC,KC,,,,GEHA Field at Arrowhead Stadium,Home,outdoors,astroturf,2021092602 40 | 38,2021_03_NO_NE,2021,REG,3,2021-09-26,Sunday,13:00,NO,NE,,,,Gillette Stadium,Home,outdoors,grass,2021092606 41 | 39,2021_03_ATL_NYG,2021,REG,3,2021-09-26,Sunday,13:00,ATL,NYG,,,,MetLife Stadium,Home,outdoors,fieldturf ,2021092601 42 | 40,2021_03_CIN_PIT,2021,REG,3,2021-09-26,Sunday,13:00,CIN,PIT,,,,Heinz Field,Home,outdoors,grass,2021092603 43 | 41,2021_03_IND_TEN,2021,REG,3,2021-09-26,Sunday,13:00,IND,TEN,,,,Nissan Stadium,Home,outdoors,grass,2021092600 44 | 42,2021_03_NYJ_DEN,2021,REG,3,2021-09-26,Sunday,16:05,NYJ,DEN,,,,Empower Field at Mile High,Home,outdoors,grass,2021092609 45 | 43,2021_03_MIA_LV,2021,REG,3,2021-09-26,Sunday,16:05,MIA,LV,,,,Allegiant Stadium,Home,dome,grass,2021092610 46 | 44,2021_03_TB_LA,2021,REG,3,2021-09-26,Sunday,16:25,TB,LA,,,,SoFi Stadium,Home,dome,matrixturf,2021092612 47 | 45,2021_03_SEA_MIN,2021,REG,3,2021-09-26,Sunday,16:25,SEA,MIN,,,,U.S. Bank Stadium,Home,dome,sportturf,2021092611 48 | 46,2021_03_GB_SF,2021,REG,3,2021-09-26,Sunday,20:20,GB,SF,,,,Levi's Stadium,Home,outdoors,grass,2021092613 49 | 47,2021_03_PHI_DAL,2021,REG,3,2021-09-27,Monday,20:15,PHI,DAL,,,,AT&T Stadium,Home,closed,fieldturf,2021092700 50 | 48,2021_04_JAX_CIN,2021,REG,4,2021-09-30,Thursday,20:20,JAX,CIN,,,,Paul Brown Stadium,Home,outdoors,grass,2021093000 51 | 49,2021_04_WAS_ATL,2021,REG,4,2021-10-03,Sunday,13:00,WAS,ATL,,,,Mercedes-Benz Stadium,Home,,fieldturf,2021100308 52 | 50,2021_04_HOU_BUF,2021,REG,4,2021-10-03,Sunday,13:00,HOU,BUF,,,,New Era Field,Home,outdoors,astroturf,2021100306 53 | 51,2021_04_DET_CHI,2021,REG,4,2021-10-03,Sunday,13:00,DET,CHI,,,,Soldier Field,Home,outdoors,grass,2021100305 54 | 52,2021_04_CAR_DAL,2021,REG,4,2021-10-03,Sunday,13:00,CAR,DAL,,,,AT&T Stadium,Home,closed,fieldturf,2021100302 55 | 53,2021_04_IND_MIA,2021,REG,4,2021-10-03,Sunday,13:00,IND,MIA,,,,Hard Rock Stadium,Home,outdoors,grass,2021100307 56 | 54,2021_04_CLE_MIN,2021,REG,4,2021-10-03,Sunday,13:00,CLE,MIN,,,,U.S. Bank Stadium,Home,dome,sportturf,2021100304 57 | 55,2021_04_NYG_NO,2021,REG,4,2021-10-03,Sunday,13:00,NYG,NO,,,,Mercedes-Benz Superdome,Home,dome,astroturf,2021100303 58 | 56,2021_04_TEN_NYJ,2021,REG,4,2021-10-03,Sunday,13:00,TEN,NYJ,,,,MetLife Stadium,Home,outdoors,fieldturf ,2021100300 59 | 57,2021_04_KC_PHI,2021,REG,4,2021-10-03,Sunday,13:00,KC,PHI,,,,Lincoln Financial Field,Home,outdoors,grass,2021100301 60 | 58,2021_04_ARI_LA,2021,REG,4,2021-10-03,Sunday,16:05,ARI,LA,,,,SoFi Stadium,Home,dome,matrixturf,2021100310 61 | 59,2021_04_SEA_SF,2021,REG,4,2021-10-03,Sunday,16:05,SEA,SF,,,,Levi's Stadium,Home,outdoors,grass,2021100309 62 | 60,2021_04_BAL_DEN,2021,REG,4,2021-10-03,Sunday,16:25,BAL,DEN,,,,Empower Field at Mile High,Home,outdoors,grass,2021100312 63 | 61,2021_04_PIT_GB,2021,REG,4,2021-10-03,Sunday,16:25,PIT,GB,,,,Lambeau Field,Home,outdoors,grass,2021100311 64 | 62,2021_04_TB_NE,2021,REG,4,2021-10-03,Sunday,20:20,TB,NE,,,,Gillette Stadium,Home,outdoors,grass,2021100313 65 | 63,2021_04_LV_LAC,2021,REG,4,2021-10-04,Monday,20:15,LV,LAC,,,,SoFi Stadium,Home,dome,matrixturf,2021100400 66 | 64,2021_05_LA_SEA,2021,REG,5,2021-10-07,Thursday,20:20,LA,SEA,,,,Lumen Field,Home,outdoors,fieldturf,2021100700 67 | 65,2021_05_NYJ_ATL,2021,REG,5,2021-10-10,Sunday,09:30,NYJ,ATL,,,,Mercedes-Benz Stadium,Neutral,,fieldturf,2021101000 68 | 66,2021_05_PHI_CAR,2021,REG,5,2021-10-10,Sunday,13:00,PHI,CAR,,,,Bank of America Stadium,Home,outdoors,grass,2021101007 69 | 67,2021_05_GB_CIN,2021,REG,5,2021-10-10,Sunday,13:00,GB,CIN,,,,Paul Brown Stadium,Home,outdoors,grass,2021101005 70 | 68,2021_05_NE_HOU,2021,REG,5,2021-10-10,Sunday,13:00,NE,HOU,,,,NRG Stadium,Home,,grass,2021101003 71 | 69,2021_05_TEN_JAX,2021,REG,5,2021-10-10,Sunday,13:00,TEN,JAX,,,,TIAA Bank Stadium,Home,outdoors,grass,2021101008 72 | 70,2021_05_DET_MIN,2021,REG,5,2021-10-10,Sunday,13:00,DET,MIN,,,,U.S. Bank Stadium,Home,dome,sportturf,2021101001 73 | 71,2021_05_DEN_PIT,2021,REG,5,2021-10-10,Sunday,13:00,DEN,PIT,,,,Heinz Field,Home,outdoors,grass,2021101006 74 | 72,2021_05_MIA_TB,2021,REG,5,2021-10-10,Sunday,13:00,MIA,TB,,,,Raymond James Stadium,Home,outdoors,grass,2021101004 75 | 73,2021_05_NO_WAS,2021,REG,5,2021-10-10,Sunday,13:00,NO,WAS,,,,FedExField,Home,outdoors,grass,2021101002 76 | 74,2021_05_CLE_LAC,2021,REG,5,2021-10-10,Sunday,16:05,CLE,LAC,,,,SoFi Stadium,Home,dome,matrixturf,2021101009 77 | 75,2021_05_CHI_LV,2021,REG,5,2021-10-10,Sunday,16:05,CHI,LV,,,,Allegiant Stadium,Home,dome,grass,2021101010 78 | 76,2021_05_SF_ARI,2021,REG,5,2021-10-10,Sunday,16:25,SF,ARI,,,,State Farm Stadium,Home,closed,grass,2021101011 79 | 77,2021_05_NYG_DAL,2021,REG,5,2021-10-10,Sunday,16:25,NYG,DAL,,,,AT&T Stadium,Home,closed,fieldturf,2021101012 80 | 78,2021_05_BUF_KC,2021,REG,5,2021-10-10,Sunday,20:20,BUF,KC,,,,GEHA Field at Arrowhead Stadium,Home,outdoors,astroturf,2021101013 81 | 79,2021_05_IND_BAL,2021,REG,5,2021-10-11,Monday,20:15,IND,BAL,,,,M&T Bank Stadium,Home,outdoors,grass,2021101100 82 | 80,2021_06_TB_PHI,2021,REG,6,2021-10-14,Thursday,20:20,TB,PHI,,,,Lincoln Financial Field,Home,outdoors,grass,2021101400 83 | 81,2021_06_MIA_JAX,2021,REG,6,2021-10-17,Sunday,09:30,MIA,JAX,,,,TIAA Bank Stadium,Neutral,outdoors,grass,2021101700 84 | 82,2021_06_LAC_BAL,2021,REG,6,2021-10-17,Sunday,13:00,LAC,BAL,,,,M&T Bank Stadium,Home,outdoors,grass,2021101706 85 | 83,2021_06_MIN_CAR,2021,REG,6,2021-10-17,Sunday,13:00,MIN,CAR,,,,Bank of America Stadium,Home,outdoors,grass,2021101707 86 | 84,2021_06_GB_CHI,2021,REG,6,2021-10-17,Sunday,13:00,GB,CHI,,,,Soldier Field,Home,outdoors,grass,2021101705 87 | 85,2021_06_CIN_DET,2021,REG,6,2021-10-17,Sunday,13:00,CIN,DET,,,,Ford Field,Home,dome,fieldturf,2021101704 88 | 86,2021_06_HOU_IND,2021,REG,6,2021-10-17,Sunday,13:00,HOU,IND,,,,Lucas Oil Stadium,Home,,fieldturf,2021101703 89 | 87,2021_06_LA_NYG,2021,REG,6,2021-10-17,Sunday,13:00,LA,NYG,,,,MetLife Stadium,Home,outdoors,fieldturf ,2021101702 90 | 88,2021_06_KC_WAS,2021,REG,6,2021-10-17,Sunday,13:00,KC,WAS,,,,FedExField,Home,outdoors,grass,2021101701 91 | 89,2021_06_ARI_CLE,2021,REG,6,2021-10-17,Sunday,16:05,ARI,CLE,,,,FirstEnergy Stadium,Home,outdoors,grass,2021101708 92 | 90,2021_06_LV_DEN,2021,REG,6,2021-10-17,Sunday,16:25,LV,DEN,,,,Empower Field at Mile High,Home,outdoors,grass,2021101709 93 | 91,2021_06_DAL_NE,2021,REG,6,2021-10-17,Sunday,16:25,DAL,NE,,,,Gillette Stadium,Home,outdoors,grass,2021101710 94 | 92,2021_06_SEA_PIT,2021,REG,6,2021-10-17,Sunday,20:20,SEA,PIT,,,,Heinz Field,Home,outdoors,grass,2021101711 95 | 93,2021_06_BUF_TEN,2021,REG,6,2021-10-18,Monday,20:15,BUF,TEN,,,,Nissan Stadium,Home,outdoors,grass,2021101800 96 | 94,2021_07_DEN_CLE,2021,REG,7,2021-10-21,Thursday,20:20,DEN,CLE,,,,FirstEnergy Stadium,Home,outdoors,grass,2021102100 97 | 95,2021_07_CIN_BAL,2021,REG,7,2021-10-24,Sunday,13:00,CIN,BAL,,,,M&T Bank Stadium,Home,outdoors,grass,2021102405 98 | 96,2021_07_WAS_GB,2021,REG,7,2021-10-24,Sunday,13:00,WAS,GB,,,,Lambeau Field,Home,outdoors,grass,2021102403 99 | 97,2021_07_ATL_MIA,2021,REG,7,2021-10-24,Sunday,13:00,ATL,MIA,,,,Hard Rock Stadium,Home,outdoors,grass,2021102404 100 | 98,2021_07_NYJ_NE,2021,REG,7,2021-10-24,Sunday,13:00,NYJ,NE,,,,Gillette Stadium,Home,outdoors,grass,2021102401 101 | 99,2021_07_CAR_NYG,2021,REG,7,2021-10-24,Sunday,13:00,CAR,NYG,,,,MetLife Stadium,Home,outdoors,fieldturf ,2021102400 102 | 100,2021_07_KC_TEN,2021,REG,7,2021-10-24,Sunday,13:00,KC,TEN,,,,Nissan Stadium,Home,outdoors,grass,2021102402 103 | 101,2021_07_DET_LA,2021,REG,7,2021-10-24,Sunday,16:05,DET,LA,,,,SoFi Stadium,Home,dome,matrixturf,2021102406 104 | 102,2021_07_PHI_LV,2021,REG,7,2021-10-24,Sunday,16:05,PHI,LV,,,,Allegiant Stadium,Home,dome,grass,2021102407 105 | 103,2021_07_HOU_ARI,2021,REG,7,2021-10-24,Sunday,16:25,HOU,ARI,,,,State Farm Stadium,Home,closed,grass,2021102408 106 | 104,2021_07_CHI_TB,2021,REG,7,2021-10-24,Sunday,16:25,CHI,TB,,,,Raymond James Stadium,Home,outdoors,grass,2021102409 107 | 105,2021_07_IND_SF,2021,REG,7,2021-10-24,Sunday,20:20,IND,SF,,,,Levi's Stadium,Home,outdoors,grass,2021102410 108 | 106,2021_07_NO_SEA,2021,REG,7,2021-10-25,Monday,20:15,NO,SEA,,,,Lumen Field,Home,outdoors,fieldturf,2021102500 109 | 107,2021_08_GB_ARI,2021,REG,8,2021-10-28,Thursday,20:20,GB,ARI,,,,State Farm Stadium,Home,closed,grass,2021102800 110 | 108,2021_08_CAR_ATL,2021,REG,8,2021-10-31,Sunday,13:00,CAR,ATL,,,,Mercedes-Benz Stadium,Home,,fieldturf,2021103106 111 | 109,2021_08_MIA_BUF,2021,REG,8,2021-10-31,Sunday,13:00,MIA,BUF,,,,New Era Field,Home,outdoors,astroturf,2021103107 112 | 110,2021_08_SF_CHI,2021,REG,8,2021-10-31,Sunday,13:00,SF,CHI,,,,Soldier Field,Home,outdoors,grass,2021103105 113 | 111,2021_08_PIT_CLE,2021,REG,8,2021-10-31,Sunday,13:00,PIT,CLE,,,,FirstEnergy Stadium,Home,outdoors,grass,2021103103 114 | 112,2021_08_PHI_DET,2021,REG,8,2021-10-31,Sunday,13:00,PHI,DET,,,,Ford Field,Home,dome,fieldturf,2021103104 115 | 113,2021_08_LA_HOU,2021,REG,8,2021-10-31,Sunday,13:00,LA,HOU,,,,NRG Stadium,Home,,grass,2021103102 116 | 114,2021_08_TEN_IND,2021,REG,8,2021-10-31,Sunday,13:00,TEN,IND,,,,Lucas Oil Stadium,Home,,fieldturf,2021103101 117 | 115,2021_08_CIN_NYJ,2021,REG,8,2021-10-31,Sunday,13:00,CIN,NYJ,,,,MetLife Stadium,Home,outdoors,fieldturf ,2021103100 118 | 116,2021_08_NE_LAC,2021,REG,8,2021-10-31,Sunday,16:05,NE,LAC,,,,SoFi Stadium,Home,dome,matrixturf,2021103108 119 | 117,2021_08_JAX_SEA,2021,REG,8,2021-10-31,Sunday,16:05,JAX,SEA,,,,Lumen Field,Home,outdoors,fieldturf,2021103109 120 | 118,2021_08_WAS_DEN,2021,REG,8,2021-10-31,Sunday,16:25,WAS,DEN,,,,Empower Field at Mile High,Home,outdoors,grass,2021103110 121 | 119,2021_08_TB_NO,2021,REG,8,2021-10-31,Sunday,16:25,TB,NO,,,,Mercedes-Benz Superdome,Home,dome,astroturf,2021103111 122 | 120,2021_08_DAL_MIN,2021,REG,8,2021-10-31,Sunday,20:20,DAL,MIN,,,,U.S. Bank Stadium,Home,dome,sportturf,2021103112 123 | 121,2021_08_NYG_KC,2021,REG,8,2021-11-01,Monday,20:15,NYG,KC,,,,GEHA Field at Arrowhead Stadium,Home,outdoors,astroturf,2021110100 124 | 122,2021_09_NYJ_IND,2021,REG,9,2021-11-04,Thursday,20:20,NYJ,IND,,,,Lucas Oil Stadium,Home,,fieldturf,2021110400 125 | 123,2021_09_MIN_BAL,2021,REG,9,2021-11-07,Sunday,13:00,MIN,BAL,,,,M&T Bank Stadium,Home,outdoors,grass,2021110703 126 | 124,2021_09_NE_CAR,2021,REG,9,2021-11-07,Sunday,13:00,NE,CAR,,,,Bank of America Stadium,Home,outdoors,grass,2021110702 127 | 125,2021_09_CLE_CIN,2021,REG,9,2021-11-07,Sunday,13:00,CLE,CIN,,,,Paul Brown Stadium,Home,outdoors,grass,2021110704 128 | 126,2021_09_DEN_DAL,2021,REG,9,2021-11-07,Sunday,13:00,DEN,DAL,,,,AT&T Stadium,Home,closed,fieldturf,2021110701 129 | 127,2021_09_BUF_JAX,2021,REG,9,2021-11-07,Sunday,13:00,BUF,JAX,,,,TIAA Bank Stadium,Home,outdoors,grass,2021110705 130 | 128,2021_09_HOU_MIA,2021,REG,9,2021-11-07,Sunday,13:00,HOU,MIA,,,,Hard Rock Stadium,Home,outdoors,grass,2021110706 131 | 129,2021_09_ATL_NO,2021,REG,9,2021-11-07,Sunday,13:00,ATL,NO,,,,Mercedes-Benz Superdome,Home,dome,astroturf,2021110700 132 | 130,2021_09_LV_NYG,2021,REG,9,2021-11-07,Sunday,13:00,LV,NYG,,,,MetLife Stadium,Home,outdoors,fieldturf ,2021110707 133 | 131,2021_09_LAC_PHI,2021,REG,9,2021-11-07,Sunday,16:05,LAC,PHI,,,,Lincoln Financial Field,Home,outdoors,grass,2021110708 134 | 132,2021_09_GB_KC,2021,REG,9,2021-11-07,Sunday,16:25,GB,KC,,,,GEHA Field at Arrowhead Stadium,Home,outdoors,astroturf,2021110709 135 | 133,2021_09_ARI_SF,2021,REG,9,2021-11-07,Sunday,16:25,ARI,SF,,,,Levi's Stadium,Home,outdoors,grass,2021110710 136 | 134,2021_09_TEN_LA,2021,REG,9,2021-11-07,Sunday,20:20,TEN,LA,,,,SoFi Stadium,Home,dome,matrixturf,2021110711 137 | 135,2021_09_CHI_PIT,2021,REG,9,2021-11-08,Monday,20:15,CHI,PIT,,,,Heinz Field,Home,outdoors,grass,2021110800 138 | 136,2021_10_BAL_MIA,2021,REG,10,2021-11-11,Thursday,20:20,BAL,MIA,,,,Hard Rock Stadium,Home,outdoors,grass,2021111100 139 | 137,2021_10_ATL_DAL,2021,REG,10,2021-11-14,Sunday,13:00,ATL,DAL,,,,AT&T Stadium,Home,closed,fieldturf,2021111402 140 | 138,2021_10_JAX_IND,2021,REG,10,2021-11-14,Sunday,13:00,JAX,IND,,,,Lucas Oil Stadium,Home,,fieldturf,2021111404 141 | 139,2021_10_CLE_NE,2021,REG,10,2021-11-14,Sunday,13:00,CLE,NE,,,,Gillette Stadium,Home,outdoors,grass,2021111406 142 | 140,2021_10_BUF_NYJ,2021,REG,10,2021-11-14,Sunday,13:00,BUF,NYJ,,,,MetLife Stadium,Home,outdoors,fieldturf ,2021111400 143 | 141,2021_10_DET_PIT,2021,REG,10,2021-11-14,Sunday,13:00,DET,PIT,,,,Heinz Field,Home,outdoors,grass,2021111405 144 | 142,2021_10_NO_TEN,2021,REG,10,2021-11-14,Sunday,13:00,NO,TEN,,,,Nissan Stadium,Home,outdoors,grass,2021111403 145 | 143,2021_10_TB_WAS,2021,REG,10,2021-11-14,Sunday,13:00,TB,WAS,,,,FedExField,Home,outdoors,grass,2021111401 146 | 144,2021_10_CAR_ARI,2021,REG,10,2021-11-14,Sunday,16:05,CAR,ARI,,,,State Farm Stadium,Home,closed,grass,2021111408 147 | 145,2021_10_MIN_LAC,2021,REG,10,2021-11-14,Sunday,16:05,MIN,LAC,,,,SoFi Stadium,Home,dome,matrixturf,2021111407 148 | 146,2021_10_PHI_DEN,2021,REG,10,2021-11-14,Sunday,16:25,PHI,DEN,,,,Empower Field at Mile High,Home,outdoors,grass,2021111409 149 | 147,2021_10_SEA_GB,2021,REG,10,2021-11-14,Sunday,16:25,SEA,GB,,,,Lambeau Field,Home,outdoors,grass,2021111410 150 | 148,2021_10_KC_LV,2021,REG,10,2021-11-14,Sunday,20:20,KC,LV,,,,Allegiant Stadium,Home,dome,grass,2021111411 151 | 149,2021_10_LA_SF,2021,REG,10,2021-11-15,Monday,20:15,LA,SF,,,,Levi's Stadium,Home,outdoors,grass,2021111500 152 | 150,2021_11_NE_ATL,2021,REG,11,2021-11-18,Thursday,20:20,NE,ATL,,,,Mercedes-Benz Stadium,Home,,fieldturf,2021111800 153 | 151,2021_11_IND_BUF,2021,REG,11,2021-11-21,Sunday,13:00,IND,BUF,,,,New Era Field,Home,outdoors,astroturf,2021112103 154 | 152,2021_11_WAS_CAR,2021,REG,11,2021-11-21,Sunday,13:00,WAS,CAR,,,,Bank of America Stadium,Home,outdoors,grass,2021112102 155 | 153,2021_11_BAL_CHI,2021,REG,11,2021-11-21,Sunday,13:00,BAL,CHI,,,,Soldier Field,Home,outdoors,grass,2021112108 156 | 154,2021_11_DET_CLE,2021,REG,11,2021-11-21,Sunday,13:00,DET,CLE,,,,FirstEnergy Stadium,Home,outdoors,grass,2021112104 157 | 155,2021_11_SF_JAX,2021,REG,11,2021-11-21,Sunday,13:00,SF,JAX,,,,TIAA Bank Stadium,Home,outdoors,grass,2021112105 158 | 156,2021_11_GB_MIN,2021,REG,11,2021-11-21,Sunday,13:00,GB,MIN,,,,U.S. Bank Stadium,Home,dome,sportturf,2021112107 159 | 157,2021_11_MIA_NYJ,2021,REG,11,2021-11-21,Sunday,13:00,MIA,NYJ,,,,MetLife Stadium,Home,outdoors,fieldturf ,2021112101 160 | 158,2021_11_NO_PHI,2021,REG,11,2021-11-21,Sunday,13:00,NO,PHI,,,,Lincoln Financial Field,Home,outdoors,grass,2021112100 161 | 159,2021_11_HOU_TEN,2021,REG,11,2021-11-21,Sunday,13:00,HOU,TEN,,,,Nissan Stadium,Home,outdoors,grass,2021112106 162 | 160,2021_11_CIN_LV,2021,REG,11,2021-11-21,Sunday,16:05,CIN,LV,,,,Allegiant Stadium,Home,dome,grass,2021112109 163 | 161,2021_11_DAL_KC,2021,REG,11,2021-11-21,Sunday,16:25,DAL,KC,,,,GEHA Field at Arrowhead Stadium,Home,outdoors,astroturf,2021112111 164 | 162,2021_11_ARI_SEA,2021,REG,11,2021-11-21,Sunday,16:25,ARI,SEA,,,,Lumen Field,Home,outdoors,fieldturf,2021112110 165 | 163,2021_11_PIT_LAC,2021,REG,11,2021-11-21,Sunday,20:20,PIT,LAC,,,,SoFi Stadium,Home,dome,matrixturf,2021112112 166 | 164,2021_11_NYG_TB,2021,REG,11,2021-11-22,Monday,20:15,NYG,TB,,,,Raymond James Stadium,Home,outdoors,grass,2021112200 167 | 165,2021_12_CHI_DET,2021,REG,12,2021-11-25,Thursday,12:30,CHI,DET,,,,Ford Field,Home,dome,fieldturf,2021112500 168 | 166,2021_12_LV_DAL,2021,REG,12,2021-11-25,Thursday,16:30,LV,DAL,,,,AT&T Stadium,Home,closed,fieldturf,2021112501 169 | 167,2021_12_BUF_NO,2021,REG,12,2021-11-25,Thursday,20:20,BUF,NO,,,,Mercedes-Benz Superdome,Home,dome,astroturf,2021112502 170 | 168,2021_12_PIT_CIN,2021,REG,12,2021-11-28,Sunday,13:00,PIT,CIN,,,,Paul Brown Stadium,Home,outdoors,grass,2021112805 171 | 169,2021_12_NYJ_HOU,2021,REG,12,2021-11-28,Sunday,13:00,NYJ,HOU,,,,NRG Stadium,Home,,grass,2021112801 172 | 170,2021_12_TB_IND,2021,REG,12,2021-11-28,Sunday,13:00,TB,IND,,,,Lucas Oil Stadium,Home,,fieldturf,2021112800 173 | 171,2021_12_ATL_JAX,2021,REG,12,2021-11-28,Sunday,13:00,ATL,JAX,,,,TIAA Bank Stadium,Home,outdoors,grass,2021112806 174 | 172,2021_12_CAR_MIA,2021,REG,12,2021-11-28,Sunday,13:00,CAR,MIA,,,,Hard Rock Stadium,Home,outdoors,grass,2021112803 175 | 173,2021_12_TEN_NE,2021,REG,12,2021-11-28,Sunday,13:00,TEN,NE,,,,Gillette Stadium,Home,outdoors,grass,2021112804 176 | 174,2021_12_PHI_NYG,2021,REG,12,2021-11-28,Sunday,13:00,PHI,NYG,,,,MetLife Stadium,Home,outdoors,fieldturf ,2021112802 177 | 175,2021_12_LAC_DEN,2021,REG,12,2021-11-28,Sunday,16:05,LAC,DEN,,,,Empower Field at Mile High,Home,outdoors,grass,2021112807 178 | 176,2021_12_LA_GB,2021,REG,12,2021-11-28,Sunday,16:25,LA,GB,,,,Lambeau Field,Home,outdoors,grass,2021112808 179 | 177,2021_12_MIN_SF,2021,REG,12,2021-11-28,Sunday,16:25,MIN,SF,,,,Levi's Stadium,Home,outdoors,grass,2021112809 180 | 178,2021_12_CLE_BAL,2021,REG,12,2021-11-28,Sunday,20:20,CLE,BAL,,,,M&T Bank Stadium,Home,outdoors,grass,2021112810 181 | 179,2021_12_SEA_WAS,2021,REG,12,2021-11-29,Monday,20:15,SEA,WAS,,,,FedExField,Home,outdoors,grass,2021112900 182 | 180,2021_13_DAL_NO,2021,REG,13,2021-12-02,Thursday,20:20,DAL,NO,,,,Mercedes-Benz Superdome,Home,dome,astroturf,2021120200 183 | 181,2021_13_TB_ATL,2021,REG,13,2021-12-05,Sunday,13:00,TB,ATL,,,,Mercedes-Benz Stadium,Home,,fieldturf,2021120507 184 | 182,2021_13_ARI_CHI,2021,REG,13,2021-12-05,Sunday,13:00,ARI,CHI,,,,Soldier Field,Home,outdoors,grass,2021120505 185 | 183,2021_13_LAC_CIN,2021,REG,13,2021-12-05,Sunday,13:00,LAC,CIN,,,,Paul Brown Stadium,Home,outdoors,grass,2021120506 186 | 184,2021_13_MIN_DET,2021,REG,13,2021-12-05,Sunday,13:00,MIN,DET,,,,Ford Field,Home,dome,fieldturf,2021120502 187 | 185,2021_13_IND_HOU,2021,REG,13,2021-12-05,Sunday,13:00,IND,HOU,,,,NRG Stadium,Home,,grass,2021120501 188 | 186,2021_13_DEN_KC,2021,REG,13,2021-12-05,Sunday,13:00,DEN,KC,,,,GEHA Field at Arrowhead Stadium,Home,outdoors,astroturf,2021120504 189 | 187,2021_13_NYG_MIA,2021,REG,13,2021-12-05,Sunday,13:00,NYG,MIA,,,,Hard Rock Stadium,Home,outdoors,grass,2021120500 190 | 188,2021_13_PHI_NYJ,2021,REG,13,2021-12-05,Sunday,13:00,PHI,NYJ,,,,MetLife Stadium,Home,outdoors,fieldturf ,2021120503 191 | 189,2021_13_WAS_LV,2021,REG,13,2021-12-05,Sunday,16:05,WAS,LV,,,,Allegiant Stadium,Home,dome,grass,2021120508 192 | 190,2021_13_JAX_LA,2021,REG,13,2021-12-05,Sunday,16:25,JAX,LA,,,,SoFi Stadium,Home,dome,matrixturf,2021120509 193 | 191,2021_13_BAL_PIT,2021,REG,13,2021-12-05,Sunday,16:25,BAL,PIT,,,,Heinz Field,Home,outdoors,grass,2021120510 194 | 192,2021_13_SF_SEA,2021,REG,13,2021-12-05,Sunday,20:20,SF,SEA,,,,Lumen Field,Home,outdoors,fieldturf,2021120511 195 | 193,2021_13_NE_BUF,2021,REG,13,2021-12-06,Monday,20:15,NE,BUF,,,,New Era Field,Home,outdoors,astroturf,2021120600 196 | 194,2021_14_PIT_MIN,2021,REG,14,2021-12-09,Thursday,20:20,PIT,MIN,,,,U.S. Bank Stadium,Home,dome,sportturf,2021120900 197 | 195,2021_14_ATL_CAR,2021,REG,14,2021-12-12,Sunday,13:00,ATL,CAR,,,,Bank of America Stadium,Home,outdoors,grass,2021121206 198 | 196,2021_14_SF_CIN,2021,REG,14,2021-12-12,Sunday,13:00,SF,CIN,,,,Paul Brown Stadium,Home,outdoors,grass,2021121201 199 | 197,2021_14_BAL_CLE,2021,REG,14,2021-12-12,Sunday,13:00,BAL,CLE,,,,FirstEnergy Stadium,Home,outdoors,grass,2021121207 200 | 198,2021_14_SEA_HOU,2021,REG,14,2021-12-12,Sunday,13:00,SEA,HOU,,,,NRG Stadium,Home,,grass,2021121203 201 | 199,2021_14_LV_KC,2021,REG,14,2021-12-12,Sunday,13:00,LV,KC,,,,GEHA Field at Arrowhead Stadium,Home,outdoors,astroturf,2021121204 202 | 200,2021_14_NO_NYJ,2021,REG,14,2021-12-12,Sunday,13:00,NO,NYJ,,,,MetLife Stadium,Home,outdoors,fieldturf ,2021121205 203 | 201,2021_14_JAX_TEN,2021,REG,14,2021-12-12,Sunday,13:00,JAX,TEN,,,,Nissan Stadium,Home,outdoors,grass,2021121202 204 | 202,2021_14_DAL_WAS,2021,REG,14,2021-12-12,Sunday,13:00,DAL,WAS,,,,FedExField,Home,outdoors,grass,2021121200 205 | 203,2021_14_DET_DEN,2021,REG,14,2021-12-12,Sunday,16:05,DET,DEN,,,,Empower Field at Mile High,Home,outdoors,grass,2021121209 206 | 204,2021_14_NYG_LAC,2021,REG,14,2021-12-12,Sunday,16:05,NYG,LAC,,,,SoFi Stadium,Home,dome,matrixturf,2021121208 207 | 205,2021_14_BUF_TB,2021,REG,14,2021-12-12,Sunday,16:25,BUF,TB,,,,Raymond James Stadium,Home,outdoors,grass,2021121210 208 | 206,2021_14_CHI_GB,2021,REG,14,2021-12-12,Sunday,20:20,CHI,GB,,,,Lambeau Field,Home,outdoors,grass,2021121211 209 | 207,2021_14_LA_ARI,2021,REG,14,2021-12-13,Monday,20:15,LA,ARI,,,,State Farm Stadium,Home,closed,grass,2021121300 210 | 208,2021_15_KC_LAC,2021,REG,15,2021-12-16,Thursday,20:20,KC,LAC,,,,SoFi Stadium,Home,dome,matrixturf,2021121600 211 | 209,2021_15_GB_BAL,2021,REG,15,2021-12-19,Sunday,13:00,GB,BAL,,,,M&T Bank Stadium,Home,outdoors,grass,2021121903 212 | 210,2021_15_CAR_BUF,2021,REG,15,2021-12-19,Sunday,13:00,CAR,BUF,,,,New Era Field,Home,outdoors,astroturf,2020121903 213 | 211,2021_15_LV_CLE,2021,REG,15,2021-12-19,Sunday,13:00,LV,CLE,,,,FirstEnergy Stadium,Home,outdoors,grass,2020121902 214 | 212,2021_15_ARI_DET,2021,REG,15,2021-12-19,Sunday,13:00,ARI,DET,,,,Ford Field,Home,dome,fieldturf,2021121904 215 | 213,2021_15_NE_IND,2021,REG,15,2021-12-19,Sunday,13:00,NE,IND,,,,Lucas Oil Stadium,Home,,fieldturf,2020121904 216 | 214,2021_15_HOU_JAX,2021,REG,15,2021-12-19,Sunday,13:00,HOU,JAX,,,,TIAA Bank Stadium,Home,outdoors,grass,2021121901 217 | 215,2021_15_NYJ_MIA,2021,REG,15,2021-12-19,Sunday,13:00,NYJ,MIA,,,,Hard Rock Stadium,Home,outdoors,grass,2020121900 218 | 216,2021_15_DAL_NYG,2021,REG,15,2021-12-19,Sunday,13:00,DAL,NYG,,,,MetLife Stadium,Home,outdoors,fieldturf ,2021121900 219 | 217,2021_15_WAS_PHI,2021,REG,15,2021-12-19,Sunday,13:00,WAS,PHI,,,,Lincoln Financial Field,Home,outdoors,grass,2020121901 220 | 218,2021_15_TEN_PIT,2021,REG,15,2021-12-19,Sunday,13:00,TEN,PIT,,,,Heinz Field,Home,outdoors,grass,2021121902 221 | 219,2021_15_CIN_DEN,2021,REG,15,2021-12-19,Sunday,16:05,CIN,DEN,,,,Empower Field at Mile High,Home,outdoors,grass,2021121905 222 | 220,2021_15_ATL_SF,2021,REG,15,2021-12-19,Sunday,16:05,ATL,SF,,,,Levi's Stadium,Home,outdoors,grass,2021121906 223 | 221,2021_15_SEA_LA,2021,REG,15,2021-12-19,Sunday,16:25,SEA,LA,,,,SoFi Stadium,Home,dome,matrixturf,2021121907 224 | 222,2021_15_NO_TB,2021,REG,15,2021-12-19,Sunday,20:20,NO,TB,,,,Raymond James Stadium,Home,outdoors,grass,2021121908 225 | 223,2021_15_MIN_CHI,2021,REG,15,2021-12-20,Monday,20:15,MIN,CHI,,,,Soldier Field,Home,outdoors,grass,2021122000 226 | 224,2021_16_SF_TEN,2021,REG,16,2021-12-23,Thursday,20:20,SF,TEN,,,,Nissan Stadium,Home,outdoors,grass,2021122300 227 | 225,2021_16_CLE_GB,2021,REG,16,2021-12-25,Saturday,16:30,CLE,GB,,,,Lambeau Field,Home,outdoors,grass,2021122500 228 | 226,2021_16_IND_ARI,2021,REG,16,2021-12-25,Saturday,20:15,IND,ARI,,,,State Farm Stadium,Home,closed,grass,2021122501 229 | 227,2021_16_DET_ATL,2021,REG,16,2021-12-26,Sunday,13:00,DET,ATL,,,,Mercedes-Benz Stadium,Home,,fieldturf,2021122605 230 | 228,2021_16_TB_CAR,2021,REG,16,2021-12-26,Sunday,13:00,TB,CAR,,,,Bank of America Stadium,Home,outdoors,grass,2021122603 231 | 229,2021_16_BAL_CIN,2021,REG,16,2021-12-26,Sunday,13:00,BAL,CIN,,,,Paul Brown Stadium,Home,outdoors,grass,2021122607 232 | 230,2021_16_LAC_HOU,2021,REG,16,2021-12-26,Sunday,13:00,LAC,HOU,,,,NRG Stadium,Home,,grass,2021122606 233 | 231,2021_16_LA_MIN,2021,REG,16,2021-12-26,Sunday,13:00,LA,MIN,,,,U.S. Bank Stadium,Home,dome,sportturf,2021122601 234 | 232,2021_16_BUF_NE,2021,REG,16,2021-12-26,Sunday,13:00,BUF,NE,,,,Gillette Stadium,Home,outdoors,grass,2021122602 235 | 233,2021_16_JAX_NYJ,2021,REG,16,2021-12-26,Sunday,13:00,JAX,NYJ,,,,MetLife Stadium,Home,outdoors,fieldturf ,2021122604 236 | 234,2021_16_NYG_PHI,2021,REG,16,2021-12-26,Sunday,13:00,NYG,PHI,,,,Lincoln Financial Field,Home,outdoors,grass,2021122600 237 | 235,2021_16_CHI_SEA,2021,REG,16,2021-12-26,Sunday,16:05,CHI,SEA,,,,Lumen Field,Home,outdoors,fieldturf,2021122608 238 | 236,2021_16_PIT_KC,2021,REG,16,2021-12-26,Sunday,16:25,PIT,KC,,,,GEHA Field at Arrowhead Stadium,Home,outdoors,astroturf,2021122609 239 | 237,2021_16_DEN_LV,2021,REG,16,2021-12-26,Sunday,16:25,DEN,LV,,,,Allegiant Stadium,Home,dome,grass,2021122610 240 | 238,2021_16_WAS_DAL,2021,REG,16,2021-12-26,Sunday,20:20,WAS,DAL,,,,AT&T Stadium,Home,closed,fieldturf,2021122611 241 | 239,2021_16_MIA_NO,2021,REG,16,2021-12-27,Monday,20:15,MIA,NO,,,,Mercedes-Benz Superdome,Home,dome,astroturf,2021122700 242 | 240,2021_17_ATL_BUF,2021,REG,17,2022-01-02,Sunday,13:00,ATL,BUF,,,,New Era Field,Home,outdoors,astroturf,2022010208 243 | 241,2021_17_NYG_CHI,2021,REG,17,2022-01-02,Sunday,13:00,NYG,CHI,,,,Soldier Field,Home,outdoors,grass,2022010207 244 | 242,2021_17_KC_CIN,2021,REG,17,2022-01-02,Sunday,13:00,KC,CIN,,,,Paul Brown Stadium,Home,outdoors,grass,2022010206 245 | 243,2021_17_ARI_DAL,2021,REG,17,2022-01-02,Sunday,13:00,ARI,DAL,,,,AT&T Stadium,Home,closed,fieldturf,2022010209 246 | 244,2021_17_LV_IND,2021,REG,17,2022-01-02,Sunday,13:00,LV,IND,,,,Lucas Oil Stadium,Home,,fieldturf,2022010205 247 | 245,2021_17_JAX_NE,2021,REG,17,2022-01-02,Sunday,13:00,JAX,NE,,,,Gillette Stadium,Home,outdoors,grass,2022010204 248 | 246,2021_17_CAR_NO,2021,REG,17,2022-01-02,Sunday,13:00,CAR,NO,,,,Mercedes-Benz Superdome,Home,dome,astroturf,2022010201 249 | 247,2021_17_TB_NYJ,2021,REG,17,2022-01-02,Sunday,13:00,TB,NYJ,,,,MetLife Stadium,Home,outdoors,fieldturf ,2022010202 250 | 248,2021_17_MIA_TEN,2021,REG,17,2022-01-02,Sunday,13:00,MIA,TEN,,,,Nissan Stadium,Home,outdoors,grass,2022010203 251 | 249,2021_17_PHI_WAS,2021,REG,17,2022-01-02,Sunday,13:00,PHI,WAS,,,,FedExField,Home,outdoors,grass,2022010200 252 | 250,2021_17_DEN_LAC,2021,REG,17,2022-01-02,Sunday,16:05,DEN,LAC,,,,SoFi Stadium,Home,dome,matrixturf,2022010211 253 | 251,2021_17_HOU_SF,2021,REG,17,2022-01-02,Sunday,16:05,HOU,SF,,,,Levi's Stadium,Home,outdoors,grass,2022010210 254 | 252,2021_17_LA_BAL,2021,REG,17,2022-01-02,Sunday,16:25,LA,BAL,,,,M&T Bank Stadium,Home,outdoors,grass,2022010212 255 | 253,2021_17_DET_SEA,2021,REG,17,2022-01-02,Sunday,16:25,DET,SEA,,,,Lumen Field,Home,outdoors,fieldturf,2022010213 256 | 254,2021_17_MIN_GB,2021,REG,17,2022-01-02,Sunday,20:20,MIN,GB,,,,Lambeau Field,Home,outdoors,grass,2022010214 257 | 255,2021_17_CLE_PIT,2021,REG,17,2022-01-03,Monday,20:15,CLE,PIT,,,,Heinz Field,Home,outdoors,grass,2022010300 258 | 256,2021_18_NO_ATL,2021,REG,18,2022-01-09,Sunday,13:00,NO,ATL,,,,Mercedes-Benz Stadium,Home,,fieldturf,2022010907 259 | 257,2021_18_PIT_BAL,2021,REG,18,2022-01-09,Sunday,13:00,PIT,BAL,,,,M&T Bank Stadium,Home,outdoors,grass,2022010909 260 | 258,2021_18_NYJ_BUF,2021,REG,18,2022-01-09,Sunday,13:00,NYJ,BUF,,,,New Era Field,Home,outdoors,astroturf,2022010910 261 | 259,2021_18_CIN_CLE,2021,REG,18,2022-01-09,Sunday,13:00,CIN,CLE,,,,FirstEnergy Stadium,Home,outdoors,grass,2022010911 262 | 260,2021_18_GB_DET,2021,REG,18,2022-01-09,Sunday,13:00,GB,DET,,,,Ford Field,Home,dome,fieldturf,2022010901 263 | 261,2021_18_TEN_HOU,2021,REG,18,2022-01-09,Sunday,13:00,TEN,HOU,,,,NRG Stadium,Home,,grass,2022010908 264 | 262,2021_18_IND_JAX,2021,REG,18,2022-01-09,Sunday,13:00,IND,JAX,,,,TIAA Bank Stadium,Home,outdoors,grass,2022010902 265 | 263,2021_18_NE_MIA,2021,REG,18,2022-01-09,Sunday,13:00,NE,MIA,,,,Hard Rock Stadium,Home,outdoors,grass,2022010906 266 | 264,2021_18_CHI_MIN,2021,REG,18,2022-01-09,Sunday,13:00,CHI,MIN,,,,U.S. Bank Stadium,Home,dome,sportturf,2022010904 267 | 265,2021_18_WAS_NYG,2021,REG,18,2022-01-09,Sunday,13:00,WAS,NYG,,,,MetLife Stadium,Home,outdoors,fieldturf ,2022010903 268 | 266,2021_18_DAL_PHI,2021,REG,18,2022-01-09,Sunday,13:00,DAL,PHI,,,,Lincoln Financial Field,Home,outdoors,grass,2022010900 269 | 267,2021_18_CAR_TB,2021,REG,18,2022-01-09,Sunday,13:00,CAR,TB,,,,Raymond James Stadium,Home,outdoors,grass,2022010905 270 | 268,2021_18_SEA_ARI,2021,REG,18,2022-01-09,Sunday,16:25,SEA,ARI,,,,State Farm Stadium,Home,closed,grass,2022010915 271 | 269,2021_18_KC_DEN,2021,REG,18,2022-01-09,Sunday,16:25,KC,DEN,,,,Empower Field at Mile High,Home,outdoors,grass,2022010914 272 | 270,2021_18_SF_LA,2021,REG,18,2022-01-09,Sunday,16:25,SF,LA,,,,SoFi Stadium,Home,dome,matrixturf,2022010913 273 | 271,2021_18_LAC_LV,2021,REG,18,2022-01-09,Sunday,16:25,LAC,LV,,,,Allegiant Stadium,Home,dome,grass,2022010912 274 | -------------------------------------------------------------------------------- /nfl_data_py/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nflverse/nfl_data_py/a3bce914936ca50064450f5083efe57801a2886d/nfl_data_py/tests/__init__.py -------------------------------------------------------------------------------- /nfl_data_py/tests/nfl_test.py: -------------------------------------------------------------------------------- 1 | from unittest import TestCase 2 | from pathlib import Path 3 | import shutil 4 | import random 5 | 6 | import pandas as pd 7 | 8 | import nfl_data_py as nfl 9 | 10 | 11 | class test_pbp(TestCase): 12 | pbp = nfl.import_pbp_data([2020]) 13 | 14 | def test_is_df_with_data(self): 15 | self.assertIsInstance(self.pbp, pd.DataFrame) 16 | self.assertTrue(len(self.pbp) > 0) 17 | 18 | def test_is_df_with_data_thread_requests(self): 19 | s = nfl.import_pbp_data([2020, 2021], thread_requests=True) 20 | self.assertIsInstance(s, pd.DataFrame) 21 | self.assertTrue(len(s) > 0) 22 | 23 | def test_uses_cache_when_cache_is_true(self): 24 | cache = Path(__file__).parent/f"tmpcache-{random.randint(0, 10000)}" 25 | self.assertRaises( 26 | ValueError, 27 | nfl.import_pbp_data, [2020], cache=True, alt_path=cache 28 | ) 29 | 30 | nfl.cache_pbp([2020], alt_path=cache) 31 | 32 | data = nfl.import_pbp_data([2020], cache=True, alt_path=cache) 33 | self.assertIsInstance(data, pd.DataFrame) 34 | 35 | shutil.rmtree(cache) 36 | 37 | def test_includes_participation_by_default(self): 38 | self.assertIn("offense_players", self.pbp.columns) 39 | 40 | def test_excludes_participation_when_requested(self): 41 | data = nfl.import_pbp_data([2020], include_participation=False) 42 | self.assertIsInstance(self.pbp, pd.DataFrame) 43 | self.assertTrue(len(self.pbp) > 0) 44 | self.assertNotIn("offense_players", data.columns) 45 | 46 | def test_excludes_participation_if_not_available(self): 47 | data = nfl.import_pbp_data([2024]) 48 | self.assertIsInstance(self.pbp, pd.DataFrame) 49 | self.assertTrue(len(self.pbp) > 0) 50 | self.assertNotIn("offense_players", data.columns) 51 | 52 | 53 | class test_weekly(TestCase): 54 | def test_is_df_with_data(self): 55 | s = nfl.import_weekly_data([2020]) 56 | self.assertIsInstance(s, pd.DataFrame) 57 | self.assertTrue(len(s) > 0) 58 | 59 | def test_is_df_with_data_thread_requests(self): 60 | s = nfl.import_weekly_data([2020, 2021], thread_requests=True) 61 | self.assertIsInstance(s, pd.DataFrame) 62 | self.assertTrue(len(s) > 0) 63 | 64 | class test_seasonal(TestCase): 65 | def test_is_df_with_data(self): 66 | s = nfl.import_seasonal_data([2020]) 67 | self.assertIsInstance(s, pd.DataFrame) 68 | self.assertTrue(len(s) > 0) 69 | 70 | class test_pbp_cols(TestCase): 71 | def test_is_list_with_data(self): 72 | s = nfl.see_pbp_cols() 73 | self.assertTrue(len(s) > 0) 74 | 75 | class test_weekly_cols(TestCase): 76 | def test_is_list_with_data(self): 77 | s = nfl.see_weekly_cols() 78 | self.assertTrue(len(s) > 0) 79 | 80 | class test_seasonal_rosters(TestCase): 81 | data = nfl.import_seasonal_rosters([2020]) 82 | 83 | def test_is_df_with_data(self): 84 | self.assertIsInstance(self.data, pd.DataFrame) 85 | self.assertTrue(len(self.data) > 0) 86 | 87 | def test_import_multiple_years(self): 88 | s = nfl.import_weekly_rosters([2022, 2023]) 89 | self.assertIsInstance(s, pd.DataFrame) 90 | self.assertGreater(len(s), len(self.data)) 91 | self.assertListEqual(s.season.unique().tolist(), [2022, 2023]) 92 | 93 | def test_computes_age_as_of_season_start(self): 94 | mahomes_ages = get_pat(self.data).age 95 | self.assertEqual(len(mahomes_ages), 1) 96 | self.assertEqual(mahomes_ages.iloc[0], 24) 97 | 98 | 99 | class test_weekly_rosters(TestCase): 100 | data = nfl.import_weekly_rosters([2022]) 101 | 102 | def test_is_df_with_data(self): 103 | assert isinstance(self.data, pd.DataFrame) 104 | self.assertGreater(len(self.data), 0) 105 | 106 | def test_import_multiple_years(self): 107 | s = nfl.import_weekly_rosters([2022, 2023]) 108 | self.assertIsInstance(s, pd.DataFrame) 109 | self.assertGreater(len(s), len(self.data)) 110 | self.assertListEqual(s.season.unique().tolist(), [2022, 2023]) 111 | 112 | def test_gets_weekly_updates(self): 113 | assert isinstance(self.data, pd.DataFrame) 114 | hock = get_hock(self.data) 115 | self.assertCountEqual(hock[hock.team == 'DET'].week, [1, 2, 3, 4, 5, 7, 8]) 116 | self.assertCountEqual(hock[hock.team == 'MIN'].week, range(9, 20)) 117 | 118 | def test_computes_age_as_of_week(self): 119 | self.assertEqual( 120 | get_pat(self.data).sort_values("week").age.to_list(), 121 | [ 122 | 26.984, 26.995, 27.023, 27.042, 27.064, 27.08, 27.099, 123 | 27.138, 27.157, 27.176, 27.195, 27.214, 27.233, 27.253, 124 | 27.269, 27.291, 27.307, 27.346, 27.368, 27.406 125 | ] 126 | ) 127 | 128 | class test_team_desc(TestCase): 129 | def test_is_df_with_data(self): 130 | s = nfl.import_team_desc() 131 | self.assertEqual(True, isinstance(s, pd.DataFrame)) 132 | self.assertTrue(len(s) > 0) 133 | 134 | class test_schedules(TestCase): 135 | def test_is_df_with_data(self): 136 | s = nfl.import_schedules([2020]) 137 | self.assertEqual(True, isinstance(s, pd.DataFrame)) 138 | self.assertTrue(len(s) > 0) 139 | 140 | class test_win_totals(TestCase): 141 | def test_is_df_with_data(self): 142 | s = nfl.import_win_totals([2020]) 143 | self.assertEqual(True, isinstance(s, pd.DataFrame)) 144 | self.assertTrue(len(s) > 0) 145 | 146 | def test_is_df_with_data_no_years(self): 147 | s = nfl.import_win_totals() 148 | self.assertEqual(True, isinstance(s, pd.DataFrame)) 149 | self.assertTrue(len(s) > 0) 150 | 151 | class test_officials(TestCase): 152 | def test_is_df_with_data(self): 153 | s = nfl.import_officials([2020]) 154 | self.assertEqual(True, isinstance(s, pd.DataFrame)) 155 | self.assertTrue(len(s) > 0) 156 | 157 | class test_draft_picks(TestCase): 158 | def test_is_df_with_data(self): 159 | s = nfl.import_draft_picks([2020]) 160 | self.assertEqual(True, isinstance(s, pd.DataFrame)) 161 | self.assertTrue(len(s) > 0) 162 | 163 | class test_draft_values(TestCase): 164 | def test_is_df_with_data(self): 165 | s = nfl.import_draft_values() 166 | self.assertEqual(True, isinstance(s, pd.DataFrame)) 167 | self.assertTrue(len(s) > 0) 168 | 169 | class test_combine(TestCase): 170 | def test_is_df_with_data_no_years_no_positions(self): 171 | s = nfl.import_combine_data() 172 | self.assertIsInstance(s, pd.DataFrame) 173 | self.assertFalse(s.empty) 174 | 175 | def test_is_df_with_data_with_years_no_positions(self): 176 | s = nfl.import_combine_data([2020]) 177 | self.assertIsInstance(s, pd.DataFrame) 178 | self.assertFalse(s.empty) 179 | 180 | def test_is_df_with_data_no_years_with_positions(self): 181 | s = nfl.import_combine_data(positions=["QB"]) 182 | self.assertIsInstance(s, pd.DataFrame) 183 | self.assertFalse(s.empty) 184 | 185 | def test_is_df_with_data_with_years_and_positions(self): 186 | s = nfl.import_combine_data([2020], positions=["QB"]) 187 | self.assertIsInstance(s, pd.DataFrame) 188 | self.assertFalse(s.empty) 189 | 190 | class test_ids(TestCase): 191 | def test_is_df_with_data(self): 192 | s = nfl.import_ids() 193 | self.assertEqual(True, isinstance(s, pd.DataFrame)) 194 | self.assertTrue(len(s) > 0) 195 | 196 | def test_import_using_ids(self): 197 | ids = ["espn", "yahoo", "gsis"] 198 | s = nfl.import_ids(ids=ids) 199 | self.assertTrue(all([f"{id}_id" in s.columns for id in ids])) 200 | 201 | def test_import_using_columns(self): 202 | ret_columns = ["name", "birthdate", "college"] 203 | not_ret_columns = ["draft_year", "db_season", "team"] 204 | s = nfl.import_ids(columns=ret_columns) 205 | self.assertTrue(all([column in s.columns for column in ret_columns])) 206 | self.assertTrue(all([column not in s.columns for column in not_ret_columns])) 207 | 208 | def test_import_using_ids_and_columns(self): 209 | ret_ids = ["espn", "yahoo", "gsis"] 210 | ret_columns = ["name", "birthdate", "college"] 211 | not_ret_ids = ["cfbref_id", "pff_id", "prf_id"] 212 | not_ret_columns = ["draft_year", "db_season", "team"] 213 | s = nfl.import_ids(columns=ret_columns, ids=ret_ids) 214 | self.assertTrue(all([column in s.columns for column in ret_columns])) 215 | self.assertTrue(all([column not in s.columns for column in not_ret_columns])) 216 | self.assertTrue(all([f"{id}_id" in s.columns for id in ret_ids])) 217 | self.assertTrue(all([f"{id}_id" not in s.columns for id in not_ret_ids])) 218 | 219 | class test_ngs(TestCase): 220 | def test_is_df_with_data(self): 221 | s = nfl.import_ngs_data('passing') 222 | self.assertEqual(True, isinstance(s, pd.DataFrame)) 223 | self.assertTrue(len(s) > 0) 224 | 225 | class test_clean(TestCase): 226 | def test_is_df_with_data(self): 227 | s = nfl.clean_nfl_data(nfl.import_weekly_data([2020])) 228 | self.assertEqual(True, isinstance(s, pd.DataFrame)) 229 | self.assertTrue(len(s) > 0) 230 | 231 | class test_depth_charts(TestCase): 232 | def test_is_df_with_data(self): 233 | s = nfl.import_depth_charts([2020]) 234 | self.assertEqual(True, isinstance(s, pd.DataFrame)) 235 | self.assertTrue(len(s) > 0) 236 | 237 | class test_injuries(TestCase): 238 | def test_is_df_with_data(self): 239 | s = nfl.import_injuries([2020]) 240 | self.assertEqual(True, isinstance(s, pd.DataFrame)) 241 | self.assertTrue(len(s) > 0) 242 | 243 | class test_qbr(TestCase): 244 | def test_is_df_with_data(self): 245 | s = nfl.import_qbr() 246 | self.assertEqual(True, isinstance(s, pd.DataFrame)) 247 | self.assertTrue(len(s) > 0) 248 | 249 | class test_seasonal_pfr(TestCase): 250 | df = nfl.import_seasonal_pfr('pass') 251 | 252 | def test_is_df_with_data(self): 253 | self.assertIsInstance(self.df, pd.DataFrame) 254 | self.assertTrue(len(self.df) > 0) 255 | 256 | def test_contains_one_row_per_player_per_season(self): 257 | pat = get_pat(self.df) 258 | self.assertCountEqual(pat.season, pat.season.unique()) 259 | 260 | def test_contains_seasonal_exclusive_columns(self): 261 | self.assertIn("rpo_plays", self.df.columns) 262 | 263 | def test_retrieves_all_available_years_by_default(self): 264 | available_years = pd.read_parquet( 265 | "https://github.com/nflverse/nflverse-data/releases/download/pfr_advstats/advstats_season_pass.parquet" 266 | ).season.unique() 267 | self.assertCountEqual(self.df.season.unique(), available_years) 268 | 269 | def test_filters_by_year(self): 270 | only_20_21 = nfl.import_seasonal_pfr('pass', [2020, 2021]) 271 | self.assertCountEqual(only_20_21.season.unique(), [2020, 2021]) 272 | 273 | class test_weekly_pfr(TestCase): 274 | df = nfl.import_weekly_pfr('pass') 275 | 276 | def test_is_df_with_data(self): 277 | self.assertIsInstance(self.df, pd.DataFrame) 278 | self.assertTrue(len(self.df) > 0) 279 | 280 | def test_contains_one_row_per_player_per_week(self): 281 | test_seasons = self.df.loc[self.df.season.isin(range(2018, 2023))] 282 | weeks_per_season = get_pat(test_seasons).groupby("season").week.nunique() 283 | self.assertEqual(weeks_per_season.to_list(), [18, 17, 18, 20, 20]) 284 | 285 | def test_does_not_contain_seasonal_exclusive_columns(self): 286 | self.assertNotIn("rpo_plays", self.df.columns) 287 | 288 | def test_retrieves_all_available_years_by_default(self): 289 | available_years = pd.read_parquet( 290 | "https://github.com/nflverse/nflverse-data/releases/download/pfr_advstats/advstats_season_pass.parquet" 291 | ).season.unique() 292 | self.assertCountEqual(self.df.season.unique(), available_years) 293 | 294 | def test_filters_by_year(self): 295 | only_20_21 = nfl.import_weekly_pfr('pass', [2020, 2021]) 296 | self.assertCountEqual(only_20_21.season.unique(), [2020, 2021]) 297 | 298 | 299 | class test_snaps(TestCase): 300 | def test_is_df_with_data(self): 301 | s = nfl.import_snap_counts([2020]) 302 | self.assertEqual(True, isinstance(s, pd.DataFrame)) 303 | self.assertTrue(len(s) > 0) 304 | 305 | 306 | class test_ftn(TestCase): 307 | def test_is_df_with_data(self): 308 | s = nfl.import_ftn_data([2023]) 309 | self.assertEqual(True, isinstance(s, pd.DataFrame)) 310 | self.assertTrue(len(s) > 0) 311 | 312 | def test_is_df_with_data_thread_requests(self): 313 | s = nfl.import_ftn_data([2022, 2023], thread_requests=True) 314 | self.assertEqual(True, isinstance(s, pd.DataFrame)) 315 | self.assertTrue(len(s) > 0) 316 | 317 | 318 | class test_cache(TestCase): 319 | def test_cache(self): 320 | cache = Path(__file__).parent/f"tmpcache-{random.randint(0, 10000)}" 321 | self.assertFalse(cache.is_dir()) 322 | 323 | nfl.cache_pbp([2020], alt_path=cache) 324 | 325 | self.assertTrue(cache.is_dir()) 326 | 327 | pbp2020 = pd.read_parquet(cache/"season=2020"/"part.0.parquet") 328 | self.assertIsInstance(pbp2020, pd.DataFrame) 329 | self.assertFalse(pbp2020.empty) 330 | 331 | shutil.rmtree(cache) 332 | 333 | class test_contracts(TestCase): 334 | def test_contracts(self): 335 | s = nfl.import_contracts() 336 | self.assertEqual(True, isinstance(s, pd.DataFrame)) 337 | self.assertTrue(len(s) > 0) 338 | 339 | class test_players(TestCase): 340 | def test_players(self): 341 | s = nfl.import_players() 342 | self.assertEqual(True, isinstance(s, pd.DataFrame)) 343 | self.assertTrue(len(s) > 0) 344 | 345 | 346 | # ---------------------------- Helper Functions ------------------------------- 347 | 348 | def __get_player(df: pd.DataFrame, player_name: str): 349 | player_name_cols = ('player_name', 'player', 'pfr_player_name') 350 | player_name_col = set(player_name_cols).intersection(set(df.columns)).pop() 351 | return df[df[player_name_col] == player_name] 352 | 353 | def get_pat(df): 354 | return __get_player(df, 'Patrick Mahomes') 355 | 356 | def get_hock(df): 357 | return __get_player(df, 'T.J. Hockenson') -------------------------------------------------------------------------------- /nfl_data_py/troubleshooting_info.py: -------------------------------------------------------------------------------- 1 | import re 2 | import platform as pf 3 | import importlib.metadata as md 4 | 5 | 6 | def troubleshooting_info(): 7 | """Print system, package and deps information relevant to troubleshooting""" 8 | 9 | print("OS:", pf.platform()) 10 | python = pf.python_implementation(), pf.python_version() 11 | print("nfl_data_py", md.version("nfl_data_py"), "on", *python) 12 | 13 | for dep in md.requires("nfl_data_py"): # type: ignore 14 | match = re.match(r'^([a-zA-Z_-]+)(.*)$', dep) 15 | name, constraints = match.groups() if match else (dep, "") 16 | version = f"v{md.version(name).ljust(12)}" 17 | print(f" - {name}\t{version}({constraints.strip('=')})") 18 | 19 | 20 | if __name__ == "__main__": 21 | troubleshooting_info() -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [project] 2 | name = "nfl_data_py" 3 | dynamic = ["version"] 4 | requires-python = ">=3.6.1,<3.13" 5 | description = "python library for interacting with NFL data" 6 | urls = { homepage = "https://github.com/nflverse/nfl_data_py"} 7 | authors = [{name = "cooperdff"}] 8 | maintainers = [{name = "Alec Ostrander", email = "alec.ostrander@gmail.com"}] 9 | readme = "README.md" 10 | # license = "MIT" 11 | # license-files = ["LICENSE"] 12 | # Need to use the deprecated format until we drop Python 3.8 support 13 | license = {text = "MIT"} 14 | dependencies = [ 15 | "appdirs==1.*", 16 | "fastparquet>0.5", 17 | "numpy==1.*", 18 | "pandas==1.*", 19 | ] 20 | classifiers = [ 21 | # Trove classifiers. Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers 22 | 'Programming Language :: Python', 23 | 'Programming Language :: Python :: 3', 24 | 'Programming Language :: Python :: 3 :: Only', 25 | 'Programming Language :: Python :: 3.6', 26 | 'Programming Language :: Python :: 3.7', 27 | 'Programming Language :: Python :: 3.8', 28 | 'Programming Language :: Python :: 3.9', 29 | 'Programming Language :: Python :: 3.10', 30 | 'Programming Language :: Python :: 3.11', 31 | 'Programming Language :: Python :: 3.12', 32 | 'Programming Language :: Python :: Implementation :: CPython', 33 | 'Programming Language :: Python :: Implementation :: PyPy', 34 | 'Intended Audience :: Developers', 35 | 'Intended Audience :: Science/Research', 36 | 'Topic :: Scientific/Engineering :: Information Analysis', 37 | 'Operating System :: OS Independent', 38 | ] 39 | 40 | [dependency-groups] 41 | dev = [ 42 | "debugpy", 43 | "invoke", 44 | "ipykernel", 45 | "ipython", 46 | "jupyter", 47 | "matplotlib", 48 | "ruff", 49 | "seaborn", 50 | ] 51 | test = [ 52 | "pytest", 53 | ] 54 | 55 | [build-system] 56 | requires = ["setuptools"] 57 | build-backend = "setuptools.build_meta" 58 | 59 | [tool.setuptools] 60 | packages = ["nfl_data_py"] 61 | 62 | [tool.setuptools.dynamic] 63 | version = {attr = "nfl_data_py.__version__"} 64 | 65 | [tool.ruff] 66 | cache-dir = ".venv/.ruff_cache" 67 | line-length = 90 68 | 69 | [tool.ruff.lint] 70 | select = ["E4", "E7", "E9", "F"] 71 | 72 | [tool.pytest.ini_options] 73 | testpaths = ["nfl_data_py/tests"] 74 | cache_dir = ".venv/.pytest_cache" --------------------------------------------------------------------------------