Win Your Fantasy Football Auction Draft: Calculate the Optimal Players to Draft with this Shiny App in R

[This article was first published on Fantasy Football Analytics » R | Fantasy Football Analytics, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

In this post, I use a Shiny app in R to determine the best possible players to pick in a fantasy football auction draft.  The app takes projections from FantasyPros, a site that averages across numerous sources of projections.  Based on your league settings, it determines which players you should draft to maximize your starting lineup’s projected points.  It also allows you to change your risk tolerance to avoid picking risky players.  Best of all, the app updates the selections automatically with your inputs, and you can download the data for yourself.  So let’s get to it.  Here’s a more thorough description:

How it Works

First, I use a script to scrape player’s projected points from FantasyPros using the XML package in R.  FantasyPros is an ideal source of projections because it averages across numerous sources of projections, and is the most accurate source of projections I’ve been able to find.  Second, I scrape average auction values from FantasyPros.  Third, I calculate players’ risk levels, as defined by the standard deviation (uncertainty) around the players’ ranks and projections across sources.  Note that risk is standardized to have a mean of 5 and a standard deviation of 2.  Fourth, I take user inputs on league settings to calculate projections that are custom tailored for your league (e.g., based on how many points a passing TD is worth in your league).  Fifth, I normalize the players’ costs relative to the cap available and to the number of teams.

In line with an unpublished analysis from Harvard on the optimal draft strategy, I apply a 10% premium to the top players and a 10% discount to the lower-tiered players.  According to the study, the majority of one’s excess cap should be spent on the starting lineup, and you should spend less on bench players.  This is because bench players do not contribute much to the team’s projected points.  Although bench players are important in the case of a starter’s injury or under-performance, it is generally best to draft starters with minimal risk to ensure solid, if not superior, performance.  On the other hand, one should accept more risk with bench players because such a move has a low risk, high reward potential.

Then, based on how many starters you need for each position, your cap available, the players already drafted, and your maximum risk tolerance, I use the Rglpk package to find your optimal starting lineup by selecting the remaining players available that maximize the starting lineup’s sum of projected points while meeting all of the constraints.  For a similar execution using Excel’s Solver function, see here.  See below for a description of the possible user inputs.

User Inputs

Number of Teams: the number of teams in your fantasy league.
League Cap: the cap available for each team at the beginning of the draft.
Total Number of Players on Roster: the total number of players on roster, including bench players.  This is used to determine your available cap (it assumes you must spend at least $1 on each bench player).

Scoring Settings
Passing Yards Per Point: How many passing yards are worth 1 fantasy point?
Points Per Passing TD: How many points is each passing touchdown worth?
Points Per Passing INT: How many points is each interception worth?
Rushing Yards Per Point: How many rushing yards are worth 1 fantasy point?
Points Per Rushing TD: How many points is each rushing touchdown worth?
Points Per Reception: How many points are receptions worth?
Receiving Yards Per Point: How many receiving yards are worth 1 fantasy point?
Points Per Receiving TD: How many points is each receiving touchdown worth?
Points Per Fumble: How many points is each fumble worth?

Players You Drafted:  Select all players you’ve already drafted (hold CTRL to select multiple).
Cap Spent: How much cap you spent on the players you drafted.
Other Players Drafted: Select all players that other teams already drafted (hold CTRL to select multiple).
Maximum Risk Tolerance: Selects the maximum risk allowed for any player to be considered for inclusion in the optimal starting lineup.  Players’ risk levels have a mean of 5 and a standard deviation of 2.

Lineup Settings
Enter number of starters needed from each position.

The Shiny App

Below is the Shiny App for optimizing your draft by picking the players that maximize your starting lineup’s projected points.  For the original Shiny App, go to: http://fantasyfootballanalytics.net:3838/Auction Draft/

The post Win Your Fantasy Football Auction Draft: Calculate the Optimal Players to Draft with this Shiny App in R appeared first on Fantasy Football Analytics.

To leave a comment for the author, please follow the link and comment on their blog: Fantasy Football Analytics » R | Fantasy Football Analytics.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)