knitr::opts_chunk$set( collapse = TRUE, comment = "#>" )
NFL tiebreaking procedures for division ranks and conference seeds are documented on the NFL.com website and on the NFL Football Operations website. They are mostly identical, but not exactly[^waitwhat].
[^waitwhat]: Yes, you are reading right. And the difference is huge when you try to efficiently code the process, smh. NFL Football Ops prefaces the wildcard tiebreaking process for 3 or more clubs with Note: If two clubs remain tied after a third club or other clubs are eliminated, the tiebreaker reverts to step 1 of the applicable two-club format. NFL.com adds a second - very important - sentence to this, which is If three clubs remain tied after a fourth club is eliminated during any step, tiebreaker restarts at Step 2 of three-club format. That's a big difference because the first part of that section sounds like we are only allowed to restart the process if two clubs remain tied. But we actually have to restart every time a team is eliminated. That's good news because it is easier to code.
Draft pick assignment is also documented on the NFL.com website and on the NFL Football Operations website. However, the author is of the opinion that both texts are so cumbersome and misleadingly worded that he has written his own summary instead.
This website documents the currently in nflseedR implemented process in case the above linked websites change in the future.
This is used to calculate the variable div_rank
If, at the end of the regular season, two or more clubs in the same division finish with identical won-lost-tied percentages, the following steps will be taken until a champion is determined.
If two clubs remain tied after one or more clubs are eliminated during any step, tiebreaker restarts at Step 1 of two-club format. If three clubs remain tied after a fourth club is eliminated during any step, tiebreaker restarts at Step 1 of three-club format.
This is used to calculate the variable conf_rank
The seven postseason participants from each conference are seeded as follows
The following procedures will be used to break standings ties for postseason playoffs and to determine regular-season schedules. NOTE: Tie games count as one-half win and one-half loss for both clubs.
If it is necessary to break ties to determine the three Wild Card clubs from each conference, the following steps will be taken.
If two clubs remain tied after one or more clubs are eliminated during any step, tiebreaker restarts at Step 1 of two-club format. If three clubs remain tied after a fourth club is eliminated during any step, tiebreaker restarts at Step 2 of three-club format.
When the first Wild Card team has been identified, the procedure is repeated to name the second and third Wild Card (i.e., eliminate all but the highest-ranked club in each division prior to proceeding to Step 2). In situations in which three teams from the same division are involved in the procedure, the original seeding of the teams remains the same for subsequent applications of the tiebreaker if the top-ranked team in that division qualifies for a Wild Card berth.
This is used to calculate the variable draft_rank
The order of selection is determined by the reverse order of finish in the previous season. Barring any trades between clubs, each round starts with the team that finished with the worst record and ends with the Super Bowl champions.
Picks are assigned by win percentage in ascending order as follows:
In situations where teams finished the previous season with identical win percentage, the determination of draft position is decided by strength of schedule — the aggregate winning percentage of a team's opponents. The team that played the schedule with the lowest winning percentage will be awarded the earlier pick.
If the teams have the same strength of schedule, division or conference tiebreakers are applied first.
If all teams tied for a pick are from the same division, then the division rank is used. The lower division rank gets the earlier pick.
If all teams tied for a pick are from the same conference, then the conference rank is used. The lower conference rank gets the earlier pick.
If the divisional or conference tiebreakers are not applicable, or ties still exist between teams of different conferences, ties will be broken by the following procedure:
Ties involving THREE OR MORE clubs from different conferences will be broken by applying
(a) divisional tiebreakers to determine the lowest-ranked team in a division, (b) conference tiebreakers to determine the lowest-ranked team within a conference.
After this process, there can only be 2 inter-conference teams participating in the following steps (draft pick assignment is reversed to division or conference ties. Worse teams get earlier picks):
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.