Fantasy Football : NFL Score Predictor Matt Grecco Abhishek Goyal.

Slides:



Advertisements
Similar presentations
Americas Game By: Chris Penwell. Dallas Cowboys are one of the teams that went to the most Super Bowls in the NFL history. They have a lot of records.
Advertisements

American Football. The Field, Time of Game, and Players.
Fantasy Football Forecasting
The New OSL Web Site April Introduction The OSL have a new web site for the 2006 season To introduce how the new site will work we have generated.
CS 8803 Advanced Internet Systems and Application Development ASHWIN RAGHUNATHAN S.BHARATH RENGARAJAN SOCCER FANTASY LEAGUE.
Predicting the Winner of an NFL Football Game Matt Gray CS/ECE 539.
Oliver Reimer Matthew Crites Brian Jones.  Determine the winner of a NFL game between two teams.  How? ◦ What aspects of a team are most important in.
Fantasy Football By: Carson Barnette. Fantasy Football Fantasy football is a game based on the performance of NFL players How do you play? What does this.
By Andrew Finley. Research Question Is it possible to predict a football player’s professional based on collegiate performance? That is, is it possible.
Chapter 9 Estimating ABILITY with Confidence Intervals Objectives Students will be able to: 1)Construct confidence intervals to estimate a proportion or.
MEASURING AND PREDICTING UW BADGERS’S PERFORMANCE BY QUARTERBACK AND RUNNING BACK STATS By: Tyler Chu ECE 539 Fall 2013.
The BCS National Championship. The BCS National Championship Game The BCS National Championship Game is the final bowl game of the annual Bowl Championship.
Health and Wellness for all Arizonans Bureau of EMS and Trauma System Secure, Encrypted, On-Line EMS Services System 2015 Training Programs System Instruction.
Use of spreadsheet Software!
2-10 Equivalent Fractions and Decimals Course 2 Warm Up Warm Up Problem of the Day Problem of the Day Lesson Presentation Lesson Presentation.
Warm Up Lesson Presentation Lesson Quizzes.
Warm Up Problem of the Day Lesson Presentation Lesson Quizzes.
CPSC 171 Introduction to Computer Science 3 Levels of Understanding Algorithms More Algorithm Discovery and Design.
FANTASY SPORTS “FOOTBALL” Learning Target: I can define “Fantasy Sports” I can apply the rules of the FFFL by competing in the FFFL competition without.
FANTASY SPORTS “FOOTBALL” Learning Target: I can define “Fantasy Sports” I can apply the rules of the FFFL by competing in the FFFL competition without.
Using a Feed-forward ANN to predict NBA Games. About my ANN -Trained incrementally using back propagation -Currently it only uses sigmoid activation -Outputs.
The Concept of Fantasy Football By Eric VanRemortel.
ABC Bowling’s League Secretary USE Case: –Reduces time greatly in the calculation of weekly bowling statistics. –Reduces human error in generating correct.
ITS-VIP SPRING 2012 FINAL PRESENTATION DATA MINING GROUP PHP?HTML INTERFACE Mide Ajayi Nakul Dureja Data Miners Rakesh Kumar David Fleischhauer.
Basketball Stats Jeremy Lin is a point guard. And a point guard plays an important role on the basketball team. In some ways, the point guard is like.
Welcome to Physical Education Class. Developed by Mr. Recktor.
2014 SOMD JAMBOREE Hosted by Pax River Raiders Youth Football League
Hoos going to win the NCAA Tournament? 5 minute persuasive talk By: Jim Boley
Introducing the OT Box Turtle GAME LOG. What is GAME LOG? A sophisticated digital Game Log (a.k.a. Day-by- Day book) FEATURES: Stores, tracks and outputs.
Welcome to the Third Annual SEBMS 6 th grade Fantasy Football Draft Night!
Overview. What is Fantasy Football?  Fantasy football allows fans to take an active, personal role in professional football  Increasing their enjoyment.
UFCEKS-20-2Multimedia Authoring Times Table Quiz.
ECE 539 Presented: 12/14/2010 Joseph Quigley. Objective Train a multi-layer perceptron network to predict the regular season records of NFL Football teams.
Sundara Ram Matta Feb 16 th, Sundara Ram Matta Feb 16 th, 2015
PREDICTING WHICH POSITION AN NFL PLAYER SHOULD BE ON THE VIDEO GAME MADDEN. Forrest Lamp & Matt Nord.
Transfer Market Optimizer by Colton Freund and Zachary Krepps.
By Tyrin F..  By being an All-Star Football player  Quarterback for the New England Patriots  Made to the super bowl this year.
An ANN Approach to Predicting NHL Game Outcomes Erik Everson ECE /10/01.
UFCFY5-30-1Multimedia Studio Scripting for Interactive Media Times Table Quiz This will contribute towards your online portfolio for this module.
Finding the Mean David R. David N.. Mean The average of the numbers in a set of data is the mean.
Fantasy Football 2008 Rules,Regulations, And Learning how Mr. D will beat you!
Measuring NFL team performance by quarterback stats A neural networks approach By David Michlig EC 539.
By: Joey Hess & Logan Flaherty. The New England Patriots is a Professional Football team based in the greater Boston area playing there home games in.
Excel Assignment #3 Adding Numbers in Excel Using Formulas.
High school football field John Elway has always loved playing sports. In high school Elway played for the Granada Hill Team.
Modeling Fantasy Football Quarterbacks Myles Wallin Kyle Zeberlein MAY 4, 2016 CELEBRATION OF LEARNING AUGUSTANA COLLEGE.
Re-write each as a sum 4 -5 = (- 5) = (-3) = = = (-5) = (-3) = = 15.
2-6 Equivalent Fractions and Decimals Warm Up Write each fraction in the simplest form Round each decimal.
Warm Up Write each fraction in the simplest form
Addition, Subtraction, Multiplication, and 
Division of Integers.
Fantasy football.
Math & Exponents.
Warm Up Problem of the Day Lesson Presentation Lesson Quizzes.
Sports Writing.
Equivalent Fractions and Decimals
Equivalent Fractions and Decimals
APBA Football.
Defense Wins Championships
Using Neural Networks to Determine NFL Game Outcomes
The Math of Baseball Will Cranford 11/1/2018.
Example 2: Finding the Least-Squares Line The table shows populations and numbers of U.S. Representatives for several states in the year 2000.
The Game of Football.
Kaytee Bartley DSCI 101 Fall 2018
7.NS.2d Convert fractions to decimals using long division.
Jesse Ohmer DSCI 101 Section 2
NFL Quarterbacks HUNTER king.
Science Fair – Baseball
7.NS.2d Convert fractions to decimals using long division.
Algebra 1B Chapter 3 Notes.
WhatsTheScore Live scores and results in real-time, with video highlights and statistics, teams and players profiles.
Presentation transcript:

Fantasy Football : NFL Score Predictor Matt Grecco Abhishek Goyal

Project Description We have designed a database that will take in stats for each of the NFL teams for each week. Based on the stats and the predict equation, the program will predict the outcome of any game.

Description of the solution We used three classes to implement the database – week, team, and teamdb The week class contains all the stats for each week The team class contains the name, wins/losses/ties, and a vector of weeks The teamdb class contains a vector of teams

Description of the solution The database has an insert function through which the user can input all the stats. There is also a display function which displays the stats for any given team. The main part of the database is the predict function which predicts outcomes of games, giving a score for each team.

Predict function We designed an equation that predicts the outcome of the game based on passing yards, passing yards allowed, rushing yards, rushing yards allowed, turnovers, turnovers forced, points for and points against.

Predict function The equation for the predict function: Find averages of all games, previous 8 games, and previous 4 games in all eight statistical categories Average those by using:.5 * avg(4) +.3*avg(8) +.2*avg(all) Find these for both teams

Predict Function Average the offensive parts (rush yards, pass yards, points, turnovers) from one team with the defensive parts of the other, and vice versa. Convert the values into scientific notation (rush yards / 100, etc), and multiply new rush yards, pass yards, points, and turnovers forced together. Finally, multiply by 3 to get score

Getting Data We got all the stats for each team from All the stats are in the Excel file provided with the presentation. They have also been entered in nfl.dat

Results We tested our predict function for Week 12 and Week 13 of the current NFL season. 11 out of 16 predictions were correct each week. We compared our predictions to that of ESPN and Yahoo

Results We predicted more games correctly, with a more accurate score, than both internet sites For example: We predicted Oakland to beat the N. Y. Jets by a score 26 to 20.5 in Week 12. The final score of the game was 26 to 20.

Results Another example Comparing to ESPN We predicted New England to beat Buffalo by a score of 30 to 18 and ESPN predicted a score of 24 to 21. The final score of the game was

Group Members Both of us worked together on all parts of the program. It took us lot of time to get stats for each team for each week and also to enter it in. We had to spent some time to figure out the tied games too.

Improvements We are planning to add a search function to find out statistical leaders of a particular week. We also want to be able to display the team standings by division. We want to figure out a way to implement the home field advantage and loss due to injuries to starting players.