├── .gitignore ├── README.md ├── combine ├── combine00to20.csv ├── combinedata │ ├── 2000 │ │ ├── QB.csv │ │ ├── RB.csv │ │ ├── TE.csv │ │ └── WR.csv │ ├── 2001 │ │ ├── QB.csv │ │ ├── RB.csv │ │ ├── TE.csv │ │ └── WR.csv │ ├── 2002 │ │ ├── QB.csv │ │ ├── RB.csv │ │ ├── TE.csv │ │ └── WR.csv │ ├── 2003 │ │ ├── QB.csv │ │ ├── RB.csv │ │ ├── TE.csv │ │ └── WR.csv │ ├── 2004 │ │ ├── QB.csv │ │ ├── RB.csv │ │ ├── TE.csv │ │ └── WR.csv │ ├── 2005 │ │ ├── QB.csv │ │ ├── RB.csv │ │ ├── TE.csv │ │ └── WR.csv │ ├── 2006 │ │ ├── QB.csv │ │ ├── RB.csv │ │ ├── TE.csv │ │ └── WR.csv │ ├── 2007 │ │ ├── QB.csv │ │ ├── RB.csv │ │ ├── TE.csv │ │ └── WR.csv │ ├── 2008 │ │ ├── QB.csv │ │ ├── RB.csv │ │ ├── TE.csv │ │ └── WR.csv │ ├── 2009 │ │ ├── QB.csv │ │ ├── RB.csv │ │ ├── TE.csv │ │ └── WR.csv │ ├── 2010 │ │ ├── QB.csv │ │ ├── RB.csv │ │ ├── TE.csv │ │ └── WR.csv │ ├── 2011 │ │ ├── QB.csv │ │ ├── RB.csv │ │ ├── TE.csv │ │ └── WR.csv │ ├── 2012 │ │ ├── QB.csv │ │ ├── RB.csv │ │ ├── TE.csv │ │ └── WR.csv │ ├── 2013 │ │ ├── QB.csv │ │ ├── RB.csv │ │ ├── TE.csv │ │ └── WR.csv │ ├── 2014 │ │ ├── QB.csv │ │ ├── RB.csv │ │ ├── TE.csv │ │ └── WR.csv │ ├── 2015 │ │ ├── QB.csv │ │ ├── RB.csv │ │ ├── TE.csv │ │ └── WR.csv │ ├── 2016 │ │ ├── QB.csv │ │ ├── RB.csv │ │ ├── TE.csv │ │ └── WR.csv │ ├── 2017 │ │ ├── QB.csv │ │ ├── RB.csv │ │ ├── TE.csv │ │ └── WR.csv │ ├── 2018 │ │ ├── QB.csv │ │ ├── RB.csv │ │ ├── TE.csv │ │ └── WR.csv │ └── 2019 │ │ ├── QB.csv │ │ ├── RB.csv │ │ ├── TE.csv │ │ └── WR.csv └── get_combine_data.py ├── defense ├── 1966.csv ├── 1967.csv ├── 1968.csv ├── 1969.csv ├── 1970.csv ├── 1971.csv ├── 1972.csv ├── 1973.csv ├── 1974.csv ├── 1975.csv ├── 1976.csv ├── 1977.csv ├── 1978.csv ├── 1979.csv ├── 1980.csv ├── 1981.csv ├── 1982.csv ├── 1983.csv ├── 1984.csv ├── 1985.csv ├── 1986.csv ├── 1987.csv ├── 1988.csv ├── 1989.csv ├── 1990.csv ├── 1991.csv ├── 1992.csv ├── 1993.csv ├── 1994.csv ├── 1995.csv ├── 1996.csv ├── 1997.csv ├── 1998.csv ├── 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 ├── fantasypros ├── adp │ ├── HALF_PPR_ADP.csv │ ├── PPR_ADP.csv │ └── STANDARD_ADP.csv └── ecr │ ├── 2021 │ └── 9_6_2021 │ │ ├── HALF_PPR.csv │ │ ├── PPR.csv │ │ └── STD.csv │ ├── HALF_PPR_ECR.csv │ ├── PPR_ECR.csv │ └── STANDARD_ECR.csv ├── misc └── abbrev.csv ├── requirements.txt ├── scripts └── scrape_pfr.py ├── snapcounts ├── 2013.csv ├── 2014.csv ├── 2015.csv ├── 2016.csv ├── 2017.csv ├── 2018.csv ├── 2019.csv └── 2020.csv ├── sos ├── 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 ├── weekly ├── 1999 │ ├── week1.csv │ ├── week10.csv │ ├── week11.csv │ ├── week12.csv │ ├── week13.csv │ ├── week14.csv │ ├── week15.csv │ ├── week16.csv │ ├── week17.csv │ ├── week2.csv │ ├── week3.csv │ ├── week4.csv │ ├── week5.csv │ ├── week6.csv │ ├── week7.csv │ ├── week8.csv │ └── week9.csv ├── 2000 │ ├── week1.csv │ ├── week10.csv │ ├── week11.csv │ ├── week12.csv │ ├── week13.csv │ ├── week14.csv │ ├── week15.csv │ ├── week16.csv │ ├── week17.csv │ ├── week2.csv │ ├── week3.csv │ ├── week4.csv │ ├── week5.csv │ ├── week6.csv │ ├── week7.csv │ ├── week8.csv │ └── week9.csv ├── 2001 │ ├── week1.csv │ ├── week10.csv │ ├── week11.csv │ ├── week12.csv │ ├── week13.csv │ ├── week14.csv │ ├── week15.csv │ ├── week16.csv │ ├── week17.csv │ ├── week2.csv │ ├── week3.csv │ ├── week4.csv │ ├── week5.csv │ ├── week6.csv │ ├── week7.csv │ ├── week8.csv │ └── week9.csv ├── 2002 │ ├── week1.csv │ ├── week10.csv │ ├── week11.csv │ ├── week12.csv │ ├── week13.csv │ ├── week14.csv │ ├── week15.csv │ ├── week16.csv │ ├── week17.csv │ ├── week2.csv │ ├── week3.csv │ ├── week4.csv │ ├── week5.csv │ ├── week6.csv │ ├── week7.csv │ ├── week8.csv │ └── week9.csv ├── 2003 │ ├── week1.csv │ ├── week10.csv │ ├── week11.csv │ ├── week12.csv │ ├── week13.csv │ ├── week14.csv │ ├── week15.csv │ ├── week16.csv │ ├── week17.csv │ ├── week2.csv │ ├── week3.csv │ ├── week4.csv │ ├── week5.csv │ ├── week6.csv │ ├── week7.csv │ ├── week8.csv │ └── week9.csv ├── 2004 │ ├── week1.csv │ ├── week10.csv │ ├── week11.csv │ ├── week12.csv │ ├── week13.csv │ ├── week14.csv │ ├── week15.csv │ ├── week16.csv │ ├── week17.csv │ ├── week2.csv │ ├── week3.csv │ ├── week4.csv │ ├── week5.csv │ ├── week6.csv │ ├── week7.csv │ ├── week8.csv │ └── week9.csv ├── 2005 │ ├── week1.csv │ ├── week10.csv │ ├── week11.csv │ ├── week12.csv │ ├── week13.csv │ ├── week14.csv │ ├── week15.csv │ ├── week16.csv │ ├── week17.csv │ ├── week2.csv │ ├── week3.csv │ ├── week4.csv │ ├── week5.csv │ ├── week6.csv │ ├── week7.csv │ ├── week8.csv │ └── week9.csv ├── 2006 │ ├── week1.csv │ ├── week10.csv │ ├── week11.csv │ ├── week12.csv │ ├── week13.csv │ ├── week14.csv │ ├── week15.csv │ ├── week16.csv │ ├── week17.csv │ ├── week2.csv │ ├── week3.csv │ ├── week4.csv │ ├── week5.csv │ ├── week6.csv │ ├── week7.csv │ ├── week8.csv │ └── week9.csv ├── 2007 │ ├── week1.csv │ ├── week10.csv │ ├── week11.csv │ ├── week12.csv │ ├── week13.csv │ ├── week14.csv │ ├── week15.csv │ ├── week16.csv │ ├── week17.csv │ ├── week2.csv │ ├── week3.csv │ ├── week4.csv │ ├── week5.csv │ ├── week6.csv │ ├── week7.csv │ ├── week8.csv │ └── week9.csv ├── 2008 │ ├── week1.csv │ ├── week10.csv │ ├── week11.csv │ ├── week12.csv │ ├── week13.csv │ ├── week14.csv │ ├── week15.csv │ ├── week16.csv │ ├── week17.csv │ ├── week2.csv │ ├── week3.csv │ ├── week4.csv │ ├── week5.csv │ ├── week6.csv │ ├── week7.csv │ ├── week8.csv │ └── week9.csv ├── 2009 │ ├── week1.csv │ ├── week10.csv │ ├── week11.csv │ ├── week12.csv │ ├── week13.csv │ ├── week14.csv │ ├── week15.csv │ ├── week16.csv │ ├── week17.csv │ ├── week2.csv │ ├── week3.csv │ ├── week4.csv │ ├── week5.csv │ ├── week6.csv │ ├── week7.csv │ ├── week8.csv │ └── week9.csv ├── 2010 │ ├── week1.csv │ ├── week10.csv │ ├── week11.csv │ ├── week12.csv │ ├── week13.csv │ ├── week14.csv │ ├── week15.csv │ ├── week16.csv │ ├── week17.csv │ ├── week2.csv │ ├── week3.csv │ ├── week4.csv │ ├── week5.csv │ ├── week6.csv │ ├── week7.csv │ ├── week8.csv │ └── week9.csv ├── 2011 │ ├── week1.csv │ ├── week10.csv │ ├── week11.csv │ ├── week12.csv │ ├── week13.csv │ ├── week14.csv │ ├── week15.csv │ ├── week16.csv │ ├── week17.csv │ ├── week2.csv │ ├── week3.csv │ ├── week4.csv │ ├── week5.csv │ ├── week6.csv │ ├── week7.csv │ ├── week8.csv │ └── week9.csv ├── 2012 │ ├── week1.csv │ ├── week10.csv │ ├── week11.csv │ ├── week12.csv │ ├── week13.csv │ ├── week14.csv │ ├── week15.csv │ ├── week16.csv │ ├── week17.csv │ ├── week2.csv │ ├── week3.csv │ ├── week4.csv │ ├── week5.csv │ ├── week6.csv │ ├── week7.csv │ ├── week8.csv │ └── week9.csv ├── 2013 │ ├── week1.csv │ ├── week10.csv │ ├── week11.csv │ ├── week12.csv │ ├── week13.csv │ ├── week14.csv │ ├── week15.csv │ ├── week16.csv │ ├── week17.csv │ ├── week2.csv │ ├── week3.csv │ ├── week4.csv │ ├── week5.csv │ ├── week6.csv │ ├── week7.csv │ ├── week8.csv │ └── week9.csv ├── 2014 │ ├── week1.csv │ ├── week10.csv │ ├── week11.csv │ ├── week12.csv │ ├── week13.csv │ ├── week14.csv │ ├── week15.csv │ ├── week16.csv │ ├── week17.csv │ ├── week2.csv │ ├── week3.csv │ ├── week4.csv │ ├── week5.csv │ ├── week6.csv │ ├── week7.csv │ ├── week8.csv │ └── week9.csv ├── 2015 │ ├── week1.csv │ ├── week10.csv │ ├── week11.csv │ ├── week12.csv │ ├── week13.csv │ ├── week14.csv │ ├── week15.csv │ ├── week16.csv │ ├── week17.csv │ ├── week2.csv │ ├── week3.csv │ ├── week4.csv │ ├── week5.csv │ ├── week6.csv │ ├── week7.csv │ ├── week8.csv │ └── week9.csv ├── 2016 │ ├── week1.csv │ ├── week10.csv │ ├── week11.csv │ ├── week12.csv │ ├── week13.csv │ ├── week14.csv │ ├── week15.csv │ ├── week16.csv │ ├── week17.csv │ ├── week2.csv │ ├── week3.csv │ ├── week4.csv │ ├── week5.csv │ ├── week6.csv │ ├── week7.csv │ ├── week8.csv │ └── week9.csv ├── 2017 │ ├── week1.csv │ ├── week10.csv │ ├── week11.csv │ ├── week12.csv │ ├── week13.csv │ ├── week14.csv │ ├── week15.csv │ ├── week16.csv │ ├── week17.csv │ ├── week2.csv │ ├── week3.csv │ ├── week4.csv │ ├── week5.csv │ ├── week6.csv │ ├── week7.csv │ ├── week8.csv │ └── week9.csv ├── 2018 │ ├── week1.csv │ ├── week10.csv │ ├── week11.csv │ ├── week12.csv │ ├── week13.csv │ ├── week14.csv │ ├── week15.csv │ ├── week16.csv │ ├── week17.csv │ ├── week2.csv │ ├── week3.csv │ ├── week4.csv │ ├── week5.csv │ ├── week6.csv │ ├── week7.csv │ ├── week8.csv │ └── week9.csv ├── 2019 │ ├── week1.csv │ ├── week10.csv │ ├── week11.csv │ ├── week12.csv │ ├── week13.csv │ ├── week14.csv │ ├── week15.csv │ ├── week16.csv │ ├── week17.csv │ ├── week2.csv │ ├── week3.csv │ ├── week4.csv │ ├── week5.csv │ ├── week6.csv │ ├── week7.csv │ ├── week8.csv │ └── week9.csv ├── 2020 │ ├── week1.csv │ ├── week10.csv │ ├── week11.csv │ ├── week12.csv │ ├── week13.csv │ ├── week14.csv │ ├── week15.csv │ ├── week16.csv │ ├── week17.csv │ ├── week2.csv │ ├── week3.csv │ ├── week4.csv │ ├── week5.csv │ ├── week6.csv │ ├── week7.csv │ ├── week8.csv │ └── week9.csv └── 2021 │ ├── week1.csv │ ├── week10.csv │ ├── week11.csv │ ├── week12.csv │ ├── week13.csv │ ├── week14.csv │ ├── week15.csv │ ├── week16.csv │ ├── week17.csv │ ├── week18.csv │ ├── week2.csv │ ├── week3.csv │ ├── week4.csv │ ├── week5.csv │ ├── week6.csv │ ├── week7.csv │ ├── week8.csv │ └── week9.csv └── yearly ├── 1970.csv ├── 1971.csv ├── 1972.csv ├── 1973.csv ├── 1974.csv ├── 1975.csv ├── 1976.csv ├── 1977.csv ├── 1978.csv ├── 1979.csv ├── 1980.csv ├── 1981.csv ├── 1982.csv ├── 1983.csv ├── 1984.csv ├── 1985.csv ├── 1986.csv ├── 1987.csv ├── 1988.csv ├── 1989.csv ├── 1990.csv ├── 1991.csv ├── 1992.csv ├── 1993.csv ├── 1994.csv ├── 1995.csv ├── 1996.csv ├── 1997.csv ├── 1998.csv ├── 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 /.gitignore: -------------------------------------------------------------------------------- 1 | venv 2 | __pycache__ 3 | notebooks 4 | utils.py 5 | *.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Fantasy Football Data Sets 2 | 3 | If you are looking to run the scripts we've provided for locally updating data, clone this repo and install dependencies. 4 | 5 | pip install -r requirements.txt 6 | 7 | ## Strength of Schedule data 8 | Strength of Schedule data is available in the sos directory. Data is available going back to 1999. To load this data in pandas using the following the following url format: 9 | https://raw.githubusercontent.com/fantasydatapros/data/master/sos/{year}.csv 10 | 11 | For example, in pandas do the following: 12 | 13 | import pandas as pd 14 | df = pd.read_csv('https://raw.githubusercontent.com/fantasydatapros/data/master/sos/1999.csv', index_col=0) 15 | df.index = df.index.rename('Team') 16 | 17 | ## Weekly Fantasy Stats 18 | Weekly stats going back to 1999 are available are exposed through the following url format 19 | 20 | https://raw.githubusercontent.com/fantasydatapros/data/master/weekly/{year}/week{week}.csv 21 | 22 | To grab weekly data for year 2019, week 1 in pandas, you would do: 23 | 24 | import pandas as pd 25 | df = pd.read_csv('https://raw.githubusercontent.com/fantasydatapros/data/master/weekly/2019/week1.csv') 26 | 27 | ## Yearly Fantasy stats 28 | Yearly fantasy stats are available going back to 1970. 29 | 30 | The url format: 31 | https://raw.githubusercontent.com/fantasydatapros/data/master/yearly/{year}.csv 32 | 33 | To grab yearly data for 2019 in pandas, do the following: 34 | 35 | import pandas as pd 36 | df = pd.read_csv('https://raw.githubusercontent.com/fantasydatapros/data/master/yearly/2019.csv') 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /combine/combinedata/2000/QB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2000,Spergon Wynn,QB,21,2,Texas State,6-3,229,4.91,34.0,,108,7.71,4.59,Cleveland Browns / 6th / 183rd pick / 2000 3 | 1,2,2000,Chris Redman,QB,22,10,Louisville,6-3,222,5.37,26.5,,98,7.8,4.78,Baltimore Ravens / 3rd / 75th pick / 2000 4 | 2,3,2000,Tim Rattay,QB,22,13,Louisiana Tech,6-0,215,4.91,25.5,,100,7.34,4.21,San Francisco 49ers / 7th / 212th pick / 2000 5 | 3,4,2000,Chad Pennington,QB,23,62,Marshall,6-3,229,4.81,33.5,,111,7.12,4.16,New York Jets / 1st / 18th pick / 2000 6 | 4,5,2000,Tee Martin,QB,21,0,Tennessee,6-2,227,4.58,34.5,,113,,,Pittsburgh Steelers / 5th / 163rd pick / 2000 7 | 5,6,2000,Doug Johnson,QB,22,8,Florida,6-2,226,4.95,29.5,,96,,, 8 | 6,7,2000,Jarious Jackson,QB,22,0,Notre Dame,6-0,226,4.68,,,109,,,Denver Broncos / 7th / 214th pick / 2000 9 | 7,8,2000,Todd Husak,QB,21,0,Stanford,6-3,216,5.2,27.5,,99,7.17,4.41,Washington Redskins / 6th / 202nd pick / 2000 10 | 8,9,2000,Joe Hamilton,QB,22,0,Georgia Tech,5-10,192,4.81,,,106,,,Tampa Bay Buccaneers / 7th / 234th pick / 2000 11 | 9,10,2000,Marc Bulger,QB,22,64,West Virginia,6-2,208,4.97,,,100,7.46,4.34,New Orleans Saints / 6th / 168th pick / 2000 12 | 10,11,2000,Travis Brown,QB,22,1,Northern Arizona,6-3,218,5.01,29.0,,101,7.54,4.87, 13 | 11,12,2000,Tom Brady,QB,22,280,Michigan,6-4,211,5.28,24.5,,99,7.2,4.38,New England Patriots / 6th / 199th pick / 2000 14 | -------------------------------------------------------------------------------- /combine/combinedata/2000/RB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2000,Michael Wiley,RB,22,4,Ohio State,5-11,193,4.5,,,,,,Dallas Cowboys / 5th / 144th pick / 2000 3 | 1,2,2000,Shyrone Stith,RB,21,0,Virginia Tech,5-7,204,4.6,35.0,13.0,111.0,7.14,4.14,Jacksonville Jaguars / 7th / 243rd pick / 2000 4 | 2,3,2000,J.R. Redmond,RB,22,9,Arizona State,5-11,216,4.48,32.5,,121.0,,,New England Patriots / 3rd / 76th pick / 2000 5 | 3,4,2000,Travis Prentice,RB,23,4,Miami (OH),6-0,225,4.5,37.0,23.0,115.0,6.92,4.4,Cleveland Browns / 3rd / 63rd pick / 2000 6 | 4,5,2000,Chad Morton,RB,22,10,USC,5-8,182,4.5,36.0,18.0,121.0,,,New Orleans Saints / 5th / 166th pick / 2000 7 | 5,6,2000,Frank Moreau,RB,23,1,Louisville,6-1,231,4.57,36.0,23.0,117.0,,,Kansas City Chiefs / 4th / 115th pick / 2000 8 | 6,7,2000,Rondell Mealey,RB,23,2,LSU,6-0,212,4.69,33.0,,120.0,6.89,4.15,Green Bay Packers / 7th / 252nd pick / 2000 9 | 7,8,2000,Kevin McDougal,RB,22,0,Colorado State,5-11,206,4.63,32.0,,108.0,7.08,4.12, 10 | 8,9,2000,Jamal Lewis,RB,20,83,Tennessee,6-0,240,4.58,,23.0,,,,Baltimore Ravens / 1st / 5th pick / 2000 11 | 9,10,2000,Curtis Keaton,RB,23,0,West Virginia,5-10,214,4.41,41.5,23.0,131.0,6.82,3.93,Cincinnati Bengals / 4th / 97th pick / 2000 12 | 10,11,2000,Thomas Jones,RB,21,78,Virginia,5-10,216,4.45,,,,,,Arizona Cardinals / 1st / 7th pick / 2000 13 | 11,12,2000,Ronney Jenkins,RB,22,3,Northern Arizona,5-10,184,4.5,,18.0,118.0,,, 14 | 12,13,2000,Marlion Jackson,RB,22,0,Saginaw Valley State,6-1,242,4.6,35.5,24.0,125.0,7.15,4.14, 15 | 13,14,2000,Troy Hambrick,RB,23,13,South Carolina,6-0,237,4.66,34.5,21.0,118.0,7.48,4.44, 16 | 14,15,2000,Reuben Droughns,RB,21,29,Oregon,5-11,215,4.66,30.0,13.0,115.0,7.34,4.41,Detroit Lions / 3rd / 81st pick / 2000 17 | 15,16,2000,Ron Dayne,RB,21,25,Wisconsin,5-11,259,4.65,,,,,,New York Giants / 1st / 11th pick / 2000 18 | 16,17,2000,Doug Chapman,RB,22,3,Marshall,5-10,215,4.56,38.5,16.0,128.0,6.84,4.2,Minnesota Vikings / 3rd / 88th pick / 2000 19 | 17,18,2000,Trung Canidate,RB,23,11,Arizona,5-11,193,4.41,,18.0,,,,St. Louis Rams / 1st / 31st pick / 2000 20 | 18,19,2000,Shaun Alexander,RB,22,79,Alabama,6-0,218,4.58,,,,,,Seattle Seahawks / 1st / 19th pick / 2000 21 | -------------------------------------------------------------------------------- /combine/combinedata/2000/TE.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2000,Austin Wheatley,TE,22,0,Iowa,6-4,254,4.66,32.5,,121.0,6.97,4.18,New Orleans Saints / 5th / 158th pick / 2000 3 | 1,2,2000,James Whalen,TE,22,1,Kentucky,6-2,228,4.78,31.0,,110.0,7.42,4.22,Tampa Bay Buccaneers / 5th / 157th pick / 2000 4 | 2,3,2000,Jay Tant,TE,22,0,Northwestern,6-3,255,4.75,,31.0,,,,Arizona Cardinals / 5th / 164th pick / 2000 5 | 3,4,2000,Dave Stachelski,TE,23,0,Boise State,6-3,250,4.78,38.0,24.0,115.0,6.84,4.14,New England Patriots / 5th / 141st pick / 2000 6 | 4,5,2000,Erron Kinney,TE,22,17,Florida,6-6,272,4.9,,,,,,Tennessee Titans / 3rd / 68th pick / 2000 7 | 5,6,2000,John Jones,TE,24,0,Pittsburgh,6-4,248,4.63,38.5,13.0,125.0,7.33,4.43, 8 | 6,7,2000,Bubba Franks,TE,22,22,Miami (FL),6-6,265,4.85,,,,,,Green Bay Packers / 1st / 14th pick / 2000 9 | 7,8,2000,Zeron Flemister,TE,23,4,Iowa,6-4,249,4.72,37.0,14.0,116.0,6.92,4.16, 10 | 8,9,2000,Casey Crawford,TE,22,0,Virginia,6-6,244,4.83,,18.0,,,, 11 | 9,10,2000,Anthony Becht,TE,22,14,West Virginia,6-6,270,4.78,33.5,,123.0,6.94,4.08,New York Jets / 1st / 27th pick / 2000 12 | -------------------------------------------------------------------------------- /combine/combinedata/2000/WR.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2000,Bashir Yamini,WR,22,0,Iowa,6-3,191,4.53,33.0,,130.0,7.09,4.18, 3 | 1,2,2000,James Williams,WR,22,4,Marshall,5-11,180,4.59,36.0,,123.0,7.22,4.16,Seattle Seahawks / 6th / 175th pick / 2000 4 | 2,3,2000,Dez White,WR,20,19,Georgia Tech,6-1,218,4.62,37.5,,124.0,6.91,4.09,Chicago Bears / 3rd / 69th pick / 2000 5 | 3,4,2000,Peter Warrick,WR,22,30,Florida State,5-11,194,4.58,,,,,,Cincinnati Bengals / 1st / 4th pick / 2000 6 | 4,5,2000,Troy Walters,WR,23,13,Stanford,5-6,171,4.55,32.5,,106.0,6.61,3.84,Minnesota Vikings / 5th / 165th pick / 2000 7 | 5,6,2000,Travis Taylor,WR,21,36,Florida,6-1,199,4.43,37.0,,118.0,7.15,,Baltimore Ravens / 1st / 10th pick / 2000 8 | 6,7,2000,R. Jay Soward,WR,22,2,USC,5-9,177,4.34,35.0,,124.0,,,Jacksonville Jaguars / 1st / 29th pick / 2000 9 | 7,8,2000,Gari Scott,WR,21,0,Michigan State,6-0,194,4.59,33.5,,119.0,,,Philadelphia Eagles / 4th / 99th pick / 2000 10 | 8,9,2000,Jerry Porter,WR,21,38,West Virginia,6-2,221,4.48,,,,,,Oakland Raiders / 2nd / 47th pick / 2000 11 | 9,10,2000,Todd Pinkston,WR,22,29,Southern Miss,6-2,169,4.45,,,,,,Philadelphia Eagles / 2nd / 36th pick / 2000 12 | 10,11,2000,Mareno Philyaw,WR,22,0,Troy,6-2,205,4.66,39.5,,129.0,6.93,4.13,Atlanta Falcons / 6th / 172nd pick / 2000 13 | 11,12,2000,Dennis Northcutt,WR,22,49,Arizona,5-10,175,4.43,37.5,,123.0,6.96,4.04,Cleveland Browns / 2nd / 32nd pick / 2000 14 | 12,13,2000,Sylvester Morris,WR,22,6,Jackson State,6-3,216,4.6,34.5,,119.0,7.06,4.17,Kansas City Chiefs / 1st / 21st pick / 2000 15 | 13,14,2000,Scottie Montgomery,WR,21,2,Duke,6-0,196,4.57,36.0,,117.0,7.16,4.11, 16 | 14,15,2000,Charles Lee,WR,22,7,Central Florida,6-1,202,4.56,35.5,,125.0,7.3,4.25,Green Bay Packers / 7th / 242nd pick / 2000 17 | 15,16,2000,Marcus Knight,WR,21,0,Michigan,6-1,180,4.72,28.5,,106.0,7.11,4.38, 18 | 16,17,2000,Darrell Jackson,WR,21,67,Florida,6-0,197,4.56,,,,,,Seattle Seahawks / 3rd / 80th pick / 2000 19 | 17,18,2000,Trevor Insley,WR,22,2,Nevada,6-0,192,4.7,,,,,, 20 | 18,19,2000,Windrell Hayes,WR,23,1,USC,5-11,204,4.5,,,,7.33,4.18,New York Jets / 5th / 143rd pick / 2000 21 | 19,20,2000,Trevor Gaylor,WR,22,7,Miami (OH),6-3,199,4.56,37.5,,121.0,7.03,4.29,San Diego Chargers / 4th / 111th pick / 2000 22 | 20,21,2000,Larry Foster,WR,23,5,LSU,5-10,198,4.55,37.0,,121.0,6.88,4.06, 23 | 21,22,2000,Danny Farmer,WR,22,5,UCLA,6-3,217,4.58,,,,,,Pittsburgh Steelers / 4th / 103rd pick / 2000 24 | 22,23,2000,Ron Dugans,WR,22,6,Florida State,6-1,206,4.58,,,117.0,,,Cincinnati Bengals / 3rd / 66th pick / 2000 25 | 23,24,2000,JaJuan Dawson,WR,22,5,Tulane,6-1,199,4.55,34.0,,117.0,6.96,4.16,Cleveland Browns / 3rd / 79th pick / 2000 26 | 24,25,2000,Laveranues Coles,WR,22,80,Florida State,5-11,192,4.41,34.0,,115.0,6.89,4.39,New York Jets / 3rd / 78th pick / 2000 27 | 25,26,2000,Chris Coleman,WR,22,0,North Carolina State,6-0,211,4.61,32.5,,110.0,6.79,4.1, 28 | 26,27,2000,Chris Cole,WR,22,1,Texas A&M,6-0,191,4.37,37.5,,125.0,6.76,4.09,Denver Broncos / 3rd / 70th pick / 2000 29 | 27,28,2000,Kwame Cavil,WR,20,0,Texas,6-2,208,4.54,39.5,,118.0,,, 30 | 28,29,2000,Plaxico Burress,WR,22,83,Michigan State,6-5,231,4.59,33.0,,115.0,,,Pittsburgh Steelers / 1st / 8th pick / 2000 31 | -------------------------------------------------------------------------------- /combine/combinedata/2001/QB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2001,Chris Weinke,QB,28,9,Florida State,6-4,226,5.2,,,,,,Carolina Panthers / 4th / 106th pick / 2001 3 | 1,2,2001,Michael Vick,QB,20,113,Virginia Tech,6-0,210,4.33,,,,,,Atlanta Falcons / 1st / 1st pick / 2001 4 | 2,3,2001,Marques Tuiasosopo,QB,21,1,Washington,6-1,223,4.71,35.5,,115.0,7.36,4.35,Oakland Raiders / 2nd / 59th pick / 2001 5 | 3,4,2001,Sage Rosenfels,QB,23,14,Iowa State,6-4,228,4.74,34.0,,107.0,7.07,4.29,Washington Redskins / 4th / 109th pick / 2001 6 | 4,5,2001,Jesse Palmer,QB,22,1,Florida,6-2,231,4.78,35.5,,112.0,7.13,4.29,New York Giants / 4th / 125th pick / 2001 7 | 5,6,2001,Mike McMahon,QB,22,6,Rutgers,6-2,207,4.57,37.5,,124.0,7.12,4.12,Detroit Lions / 5th / 149th pick / 2001 8 | 6,7,2001,Cleo Lemon,QB,21,6,Arkansas State,6-2,226,4.87,35.5,,106.0,7.33,4.27, 9 | 7,8,2001,Tim Hasselbeck,QB,22,1,Boston Col.,6-1,211,4.83,33.0,,113.0,7.27,4.4, 10 | 8,9,2001,Quincy Carter,QB,23,18,Georgia,6-2,225,4.58,35.5,,113.0,7.12,4.12,Dallas Cowboys / 2nd / 53rd pick / 2001 11 | 9,10,2001,Drew Brees,QB,22,267,Purdue,6-0,213,4.83,32.0,,105.0,7.09,4.21,San Diego Chargers / 2nd / 32nd pick / 2001 12 | -------------------------------------------------------------------------------- /combine/combinedata/2001/RB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2001,Reggie White,RB,21,0,Oklahoma State,6-0,228,4.58,37.5,17.0,114.0,7.48,4.4, 3 | 1,2,2001,LaDainian Tomlinson,RB,21,157,TCU,5-10,221,4.46,40.5,18.0,124.0,6.84,4.21,San Diego Chargers / 1st / 5th pick / 2001 4 | 2,3,2001,Anthony Thomas,RB,23,29,Michigan,6-2,229,4.58,32.5,20.0,115.0,7.48,4.44,Chicago Bears / 2nd / 38th pick / 2001 5 | 3,4,2001,Marcel Shipp,RB,22,18,Massachusetts,5-11,222,4.71,32.5,18.0,115.0,,, 6 | 4,5,2001,Travis Minor,RB,21,11,Florida State,5-10,197,4.44,32.0,9.0,115.0,,,Miami Dolphins / 3rd / 85th pick / 2001 7 | 5,6,2001,Deuce McAllister,RB,22,61,Mississippi,6-1,222,4.41,,,,,,New Orleans Saints / 1st / 23rd pick / 2001 8 | 6,7,2001,Lamont Jordan,RB,22,35,Maryland,5-10,234,4.57,,24.0,,,,New York Jets / 2nd / 49th pick / 2001 9 | 7,8,2001,Rudi Johnson,RB,21,52,Auburn,5-10,227,4.57,37.5,24.0,119.0,7.32,4.22,Cincinnati Bengals / 4th / 100th pick / 2001 10 | 8,9,2001,James Jackson,RB,24,9,Miami (FL),5-10,210,4.55,,,,,,Cleveland Browns / 3rd / 65th pick / 2001 11 | 9,10,2001,Travis Henry,RB,22,46,Tennessee,5-9,223,4.61,,23.0,,,,Buffalo Bills / 2nd / 58th pick / 2001 12 | 10,11,2001,Derek Combs,RB,22,1,Ohio State,6-0,193,4.42,35.0,8.0,120.0,6.96,4.07,Oakland Raiders / 7th / 228th pick / 2001 13 | 11,12,2001,Correll Buckhalter,RB,22,32,Nebraska,6-0,226,4.53,40.0,11.0,123.0,7.08,4.06,Philadelphia Eagles / 4th / 121st pick / 2001 14 | 12,13,2001,Derrick Blaylock,RB,21,12,Stephen F. Austin,5-10,194,4.36,35.5,18.0,119.0,7.05,4.09,Kansas City Chiefs / 5th / 150th pick / 2001 15 | 13,14,2001,Michael Bennett,RB,22,38,Wisconsin,5-9,207,4.38,39.5,13.0,130.0,,,Minnesota Vikings / 1st / 27th pick / 2001 16 | 14,15,2001,Kevan Barlow,RB,22,39,Pittsburgh,6-1,235,4.56,,,,,,San Francisco 49ers / 3rd / 80th pick / 2001 17 | 15,16,2001,David Allen,RB,23,1,Kansas State,5-9,194,4.62,31.0,15.0,111.0,,, 18 | -------------------------------------------------------------------------------- /combine/combinedata/2001/TE.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2001,Boo Williams,TE,21,11,Arkansas,6-4,237,4.72,35.5,,119.0,7.1,4.33, 3 | 1,2,2001,Tony Stewart,TE,21,4,Penn State,6-5,256,4.96,35.5,,109.0,7.3,4.4,Philadelphia Eagles / 5th / 147th pick / 2001 4 | 2,3,2001,Mike Roberg,TE,23,0,Idaho,6-4,256,4.75,34.5,16.0,117.0,7.28,4.4,Carolina Panthers / 7th / 227th pick / 2001 5 | 3,4,2001,Marcellus Rivers,TE,22,3,Oklahoma State,6-4,247,4.84,32.5,7.0,113.0,7.04,4.25, 6 | 4,5,2001,Ryan Prince,TE,23,0,Weber State,6-4,257,4.99,31.0,20.0,102.0,7.65,4.45, 7 | 5,6,2001,Dan O'Leary,TE,23,1,Notre Dame,6-4,252,5.02,32.0,16.0,113.0,7.4,4.31,Buffalo Bills / 6th / 195th pick / 2001 8 | 6,7,2001,Brian Natkin,TE,23,0,Texas-El Paso,6-2,251,4.95,27.0,20.0,98.0,7.78,4.59, 9 | 7,8,2001,Shad Meier,TE,22,3,Kansas State,6-5,256,4.85,34.0,20.0,113.0,7.14,4.15,Tennessee Titans / 3rd / 90th pick / 2001 10 | 8,9,2001,Brandon Manumaleuna,TE,21,9,Arizona,6-2,275,4.99,30.0,,106.0,7.49,4.26,St. Louis Rams / 4th / 129th pick / 2001 11 | 9,10,2001,Jabari Holloway,TE,22,1,Notre Dame,6-2,253,4.91,38.5,20.0,113.0,7.14,4.4,New England Patriots / 4th / 119th pick / 2001 12 | 10,11,2001,Todd Heap,TE,20,53,Arizona State,6-5,252,4.68,,,,,,Baltimore Ravens / 1st / 31st pick / 2001 13 | 11,12,2001,Antoine Harris,TE,18,3,Louisville,6-3,260,4.93,,11.0,,,, 14 | 12,13,2001,Alge Crumpler,TE,23,48,North Carolina,6-2,266,4.76,34.0,22.0,112.0,7.38,4.43,Atlanta Falcons / 2nd / 35th pick / 2001 15 | 13,14,2001,Sean Brewer,TE,23,0,San Jose State,6-4,255,4.73,36.0,14.0,117.0,7.37,4.18,Cincinnati Bengals / 3rd / 66th pick / 2001 16 | 14,15,2001,Billy Baber,TE,22,0,Virginia,6-4,255,4.76,33.0,22.0,106.0,7.12,4.19,Kansas City Chiefs / 5th / 141st pick / 2001 17 | -------------------------------------------------------------------------------- /combine/combinedata/2001/WR.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2001,Cedrick Wilson,WR,22,24,Tennessee,5-10,179,4.48,38.0,,123.0,,,San Francisco 49ers / 6th / 169th pick / 2001 3 | 1,2,2001,Marcus Williams,WR,23,0,Washington State,6-5,230,4.56,41.0,,130.0,7.37,4.2, 4 | 2,3,2001,Reggie Wayne,WR,22,155,Miami (FL),6-0,198,4.45,,,,,,Indianapolis Colts / 1st / 30th pick / 2001 5 | 3,4,2001,David Terrell,WR,21,12,Michigan,6-3,213,4.43,,,,,,Chicago Bears / 1st / 8th pick / 2001 6 | 4,5,2001,Vinny Sutherland,WR,22,0,Purdue,5-9,192,4.48,,,,,,Atlanta Falcons / 5th / 136th pick / 2001 7 | 5,6,2001,Steve Smith,WR,21,139,Utah,5-9,184,4.41,38.5,,121.0,7.44,4.25,Carolina Panthers / 3rd / 74th pick / 2001 8 | 6,7,2001,Koren Robinson,WR,20,39,North Carolina State,6-1,211,4.61,,,,,,Seattle Seahawks / 1st / 9th pick / 2001 9 | 7,8,2001,Ken-Yon Rambo,WR,22,1,Ohio State,6-1,196,4.34,,,,,,Oakland Raiders / 7th / 229th pick / 2001 10 | 8,9,2001,Nate Poole,WR,24,3,Marshall,6-1,198,4.79,32.5,,112.0,7.26,4.22, 11 | 9,10,2001,Steve Neal,WR,24,49,West. Michigan,6-1,190,4.59,36.0,,119.0,7.18,4.19, 12 | 10,11,2001,Santana Moss,WR,21,93,Miami (FL),5-10,184,4.31,,,,,,New York Jets / 1st / 16th pick / 2001 13 | 11,12,2001,Quincy Morgan,WR,23,22,Kansas State,6-1,211,4.48,,,,,,Cleveland Browns / 2nd / 33rd pick / 2001 14 | 12,13,2001,Freddie Mitchell,WR,22,14,UCLA,5-11,185,4.46,39.5,,120.0,6.95,4.06,Philadelphia Eagles / 1st / 25th pick / 2001 15 | 13,14,2001,Snoop Minnis,WR,24,5,Florida State,6-1,171,4.57,37.5,,115.0,7.06,4.07,Kansas City Chiefs / 3rd / 77th pick / 2001 16 | 14,15,2001,Quentin McCord,WR,22,5,Kentucky,5-10,191,4.48,36.5,,112.0,7.17,4.18,Atlanta Falcons / 7th / 236th pick / 2001 17 | 15,16,2001,Justin McCareins,WR,22,37,Northern Illinois,6-2,209,4.51,41.0,,129.0,7.06,3.99,Tennessee Titans / 4th / 124th pick / 2001 18 | 16,17,2001,David Martin,WR,21,13,Tennessee,6-4,242,4.76,,,,,,Green Bay Packers / 6th / 198th pick / 2001 19 | 17,18,2001,Andre King,WR,27,2,Miami (FL),6-0,199,4.61,,,,,,Cleveland Browns / 7th / 245th pick / 2001 20 | 18,19,2001,Kevin Kasper,WR,23,2,Iowa,6-0,199,4.42,43.5,,126.0,6.56,3.73,Denver Broncos / 6th / 190th pick / 2001 21 | 19,20,2001,Chad Johnson,WR,23,105,Oregon State,6-1,192,4.57,33.0,,108.0,7.51,4.14,Cincinnati Bengals / 2nd / 36th pick / 2001 22 | 20,21,2001,Cedric James,WR,21,0,TCU,6-2,204,4.49,43.0,,134.0,,,Minnesota Vikings / 4th / 131st pick / 2001 23 | 21,22,2001,Arnold Jackson,WR,23,0,Louisville,5-8,167,4.48,41.0,,127.0,7.42,4.11, 24 | 22,23,2001,Reggie Germany,WR,22,2,Ohio State,6-1,183,4.39,,,,,,Buffalo Bills / 7th / 214th pick / 2001 25 | 23,24,2001,Rod Gardner,WR,23,27,Clemson,6-2,219,4.48,,,,,,Washington Redskins / 1st / 15th pick / 2001 26 | 24,25,2001,Robert Ferguson,WR,21,20,Texas A&M,6-1,205,4.48,36.5,,120.0,7.24,4.07,Green Bay Packers / 2nd / 41st pick / 2001 27 | 25,26,2001,Kenny Clark,WR,22,0,Central Florida,6-1,225,4.59,35.5,,121.0,,, 28 | 26,27,2001,Chris Chambers,WR,22,70,Wisconsin,6-0,210,4.33,45.0,,134.0,,4.0,Miami Dolphins / 2nd / 52nd pick / 2001 29 | 27,28,2001,Eddie Berlin,WR,23,3,New Mexico,5-11,191,4.43,39.5,,122.0,6.78,4.08,Tennessee Titans / 5th / 159th pick / 2001 30 | 28,29,2001,Alex Bannister,WR,21,1,East. Kentucky,6-5,201,4.47,30.5,,110.0,,,Seattle Seahawks / 5th / 140th pick / 2001 31 | 29,30,2001,Scotty Anderson,WR,21,8,Grambling State,6-2,184,4.57,34.5,,115.0,,,Detroit Lions / 5th / 148th pick / 2001 32 | -------------------------------------------------------------------------------- /combine/combinedata/2002/QB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2002,Patrick Ramsey,QB,23,15,Tulane,6-2,219,5.24,33.5,,112.0,7.12,4.09,Washington Redskins / 1st / 32nd pick / 2002 3 | 1,2,2002,J.T. O'Sullivan,QB,22,6,California-Davis,6-2,223,4.88,29.0,,107.0,7.46,4.28,New Orleans Saints / 6th / 186th pick / 2002 4 | 2,3,2002,Josh McCown,QB,22,47,SMU,6-4,221,4.59,38.5,,120.0,6.85,3.9,Arizona Cardinals / 3rd / 81st pick / 2002 5 | 3,4,2002,Kurt Kittner,QB,22,1,Illinois,6-2,221,4.86,27.0,,100.0,7.34,4.5,Atlanta Falcons / 5th / 158th pick / 2002 6 | 4,5,2002,Joey Harrington,QB,23,33,Oregon,6-4,215,4.89,32.0,,112.0,7.0,4.21,Detroit Lions / 1st / 3rd pick / 2002 7 | 5,6,2002,David Garrard,QB,24,69,East Carolina,6-2,235,4.82,33.5,,111.0,7.35,4.26,Jacksonville Jaguars / 4th / 108th pick / 2002 8 | 6,7,2002,Randy Fasani,QB,23,1,Stanford,6-3,224,4.77,31.5,,106.0,6.75,3.87,Carolina Panthers / 5th / 137th pick / 2002 9 | 7,8,2002,Rohan Davey,QB,23,0,LSU,6-2,245,4.74,,,,,,New England Patriots / 4th / 117th pick / 2002 10 | 8,9,2002,Ronald Curry,QB,22,17,North Carolina,6-2,220,4.59,35.0,,115.0,7.06,4.11,Oakland Raiders / 7th / 235th pick / 2002 11 | 9,10,2002,David Carr,QB,22,48,Fresno State,6-3,223,4.67,35.0,,108.0,7.05,4.28,Houston Texans / 1st / 1st pick / 2002 12 | -------------------------------------------------------------------------------- /combine/combinedata/2002/RB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2002,Ricky Williams,RB,23,3,Texas Tech,5-7,190,4.47,32.5,19.0,110.0,,, 3 | 1,2,2002,Brian Westbrook,RB,22,80,Villanova,5-8,200,4.57,37.0,26.0,118.0,7.09,,Philadelphia Eagles / 3rd / 91st pick / 2002 4 | 2,3,2002,Jonathan Wells,RB,22,10,Ohio State,6-1,243,4.52,,,,,,Houston Texans / 4th / 99th pick / 2002 5 | 3,4,2002,Chester Taylor,RB,22,47,Toledo,5-11,213,4.58,33.0,22.0,114.0,,,Baltimore Ravens / 6th / 207th pick / 2002 6 | 4,5,2002,Travis Stephens,RB,23,0,Tennessee,5-8,194,4.6,32.0,15.0,121.0,,,Tampa Bay Buccaneers / 4th / 119th pick / 2002 7 | 5,6,2002,Josh Scobey,RB,22,3,Kansas State,5-11,218,4.42,40.5,21.0,124.0,6.96,3.93,Arizona Cardinals / 6th / 185th pick / 2002 8 | 6,7,2002,Clinton Portis,RB,20,82,Miami (FL),5-11,204,4.42,,,,,,Denver Broncos / 2nd / 51st pick / 2002 9 | 7,8,2002,Adrian Peterson,RB,22,12,Georgia Southern,5-10,214,4.68,34.0,14.0,119.0,7.59,4.6,Chicago Bears / 6th / 199th pick / 2002 10 | 8,9,2002,Larry Ned,RB,23,0,San Diego State,5-11,219,4.62,34.5,15.0,120.0,7.12,,Oakland Raiders / 6th / 197th pick / 2002 11 | 9,10,2002,Maurice Morris,RB,22,35,Oregon,5-11,208,4.53,38.5,23.0,119.0,,,Seattle Seahawks / 2nd / 54th pick / 2002 12 | 10,11,2002,Eric McCoo,RB,21,1,Penn State,5-10,214,4.55,32.5,14.0,112.0,,, 13 | 11,12,2002,Dameon Hunter,RB,23,0,Utah,5-11,219,4.68,30.5,,113.0,,, 14 | 12,13,2002,Maurice Hicks,RB,23,8,North Carolina A&T,5-10,200,4.64,,19.0,,,, 15 | 13,14,2002,Leonard Henry,RB,24,1,East Carolina,6-1,206,4.57,35.0,26.0,113.0,7.11,4.29,Miami Dolphins / 7th / 241st pick / 2002 16 | 14,15,2002,William Green,RB,22,15,Boston Col.,6-0,221,4.6,42.0,27.0,121.0,,,Cleveland Browns / 1st / 16th pick / 2002 17 | 15,16,2002,Lamar Gordon,RB,22,9,North Dakota State,6-1,214,4.55,34.0,16.0,119.0,,,St. Louis Rams / 3rd / 84th pick / 2002 18 | 16,17,2002,DeShaun Foster,RB,22,34,UCLA,6-1,222,4.57,35.5,20.0,119.0,6.82,4.16,Carolina Panthers / 2nd / 34th pick / 2002 19 | 17,18,2002,Tony Fisher,RB,22,17,Notre Dame,6-1,226,4.66,41.5,21.0,126.0,7.0,4.13, 20 | 18,19,2002,T.J. Duckett,RB,21,23,Michigan State,6-0,254,4.45,,,,,,Atlanta Falcons / 1st / 18th pick / 2002 21 | 19,20,2002,Rock Cartwright,RB,22,11,Kansas State,5-8,237,4.47,35.0,30.0,116.0,7.18,4.25,Washington Redskins / 7th / 257th pick / 2002 22 | 20,21,2002,Joe Burns,RB,22,2,Georgia Tech,5-9,213,4.81,31.0,21.0,105.0,,, 23 | 21,22,2002,Ladell Betts,RB,22,37,Iowa,5-10,220,4.62,38.0,23.0,116.0,7.06,4.06,Washington Redskins / 2nd / 56th pick / 2002 24 | 22,23,2002,Damien Anderson,RB,22,2,Northwestern,5-10,211,4.56,33.5,27.0,112.0,6.93,4.02, 25 | 23,24,2002,Brian Allen,RB,21,0,Stanford,5-9,209,4.46,33.0,19.0,112.0,6.9,4.08,Indianapolis Colts / 6th / 204th pick / 2002 26 | -------------------------------------------------------------------------------- /combine/combinedata/2002/TE.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2002,Jerramy Stevens,TE,22,20,Washington,6-7,265,4.77,,,,,,Seattle Seahawks / 1st / 28th pick / 2002 3 | 1,2,2002,Jeremy Shockey,TE,21,59,Miami (FL),6-5,255,4.64,,,,,,New York Giants / 1st / 14th pick / 2002 4 | 2,3,2002,Matt Schobel,TE,23,12,TCU,6-5,263,,34.5,,,,,Cincinnati Bengals / 3rd / 67th pick / 2002 5 | 3,4,2002,Robert Royal,TE,22,9,LSU,6-5,253,4.97,31.0,14.0,114.0,7.37,4.27,Washington Redskins / 5th / 160th pick / 2002 6 | 4,5,2002,Justin Peelle,TE,22,9,Oregon,6-4,255,4.75,29.0,21.0,110.0,7.34,4.29,San Diego Chargers / 4th / 103rd pick / 2002 7 | 5,6,2002,John Owens,TE,22,0,Notre Dame,6-3,265,4.77,38.5,21.0,117.0,,,Detroit Lions / 5th / 138th pick / 2002 8 | 6,7,2002,Josh Norman,TE,21,3,Oklahoma,6-2,236,4.65,32.0,18.0,115.0,,, 9 | 7,8,2002,Randy McMichael,TE,22,39,Georgia,6-3,247,4.88,29.5,18.0,112.0,7.58,4.28,Miami Dolphins / 4th / 114th pick / 2002 10 | 8,9,2002,Chris Luzar,TE,23,0,Virginia,6-7,270,4.76,32.5,22.0,115.0,6.84,4.17,Jacksonville Jaguars / 4th / 118th pick / 2002 11 | 9,10,2002,Terry Jones,TE,22,5,Alabama,6-3,265,4.79,33.5,20.0,111.0,7.43,4.43,Baltimore Ravens / 5th / 155th pick / 2002 12 | 10,11,2002,Doug Jolley,TE,23,12,BYU,6-4,251,4.6,38.0,18.0,117.0,6.9,4.18,Oakland Raiders / 2nd / 55th pick / 2002 13 | 11,12,2002,Keith Heinrich,TE,22,1,SMU,6-5,255,4.77,35.0,21.0,120.0,6.87,4.1,Carolina Panthers / 6th / 174th pick / 2002 14 | 12,13,2002,Ryan Hannam,TE,22,2,New Mexico,6-2,251,4.69,30.5,18.0,113.0,7.07,4.21,Seattle Seahawks / 5th / 169th pick / 2002 15 | 13,14,2002,Daniel Graham,TE,23,22,Colorado,6-3,248,4.64,36.0,,118.0,,,New England Patriots / 1st / 21st pick / 2002 16 | 14,15,2002,Dwayne Blakley,TE,22,1,Missouri,6-5,256,4.96,32.5,21.0,107.0,7.33,4.29, 17 | 15,16,2002,Mike Banks,TE,22,0,Iowa State,6-4,260,4.84,31.5,,104.0,,,Arizona Cardinals / 7th / 223rd pick / 2002 18 | 16,17,2002,Chris Baker,TE,22,15,Michigan State,6-3,258,4.81,35.0,18.0,112.0,6.95,,New York Jets / 3rd / 88th pick / 2002 19 | 17,18,2002,Mark Anelli,TE,22,0,Wisconsin,6-4,262,4.8,,18.0,,,,San Francisco 49ers / 6th / 201st pick / 2002 20 | -------------------------------------------------------------------------------- /combine/combinedata/2002/WR.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2002,Javon Walker,WR,23,42,Florida State,6-3,210,4.38,39.5,,128.0,6.86,4.05,Green Bay Packers / 1st / 20th pick / 2002 3 | 1,2,2002,Donte' Stallworth,WR,21,45,Tennessee,6-0,197,4.22,,,,,,New Orleans Saints / 1st / 13th pick / 2002 4 | 2,3,2002,Jake Schifino,WR,22,0,Akron,6-1,200,4.49,,,,,,Tennessee Titans / 5th / 151st pick / 2002 5 | 3,4,2002,Cliff Russell,WR,23,0,Utah,5-11,185,4.36,,,,,,Washington Redskins / 3rd / 87th pick / 2002 6 | 4,5,2002,Josh Reed,WR,21,33,LSU,5-10,210,4.54,,,,,,Buffalo Bills / 2nd / 36th pick / 2002 7 | 5,6,2002,Antwaan Randle El,WR,22,49,Indiana,5-10,191,4.49,,,,,,Pittsburgh Steelers / 2nd / 62nd pick / 2002 8 | 6,7,2002,Kendall Newson,WR,22,1,Middle Tennessee State,6-2,200,4.69,33.5,,117.0,6.87,4.27,Jacksonville Jaguars / 7th / 222nd pick / 2002 9 | 7,8,2002,Jason McAddley,WR,22,4,Alabama,6-1,203,4.47,36.5,,123.0,6.83,4.09,Arizona Cardinals / 5th / 149th pick / 2002 10 | 8,9,2002,Lee Mays,WR,23,1,Texas-El Paso,6-1,190,4.55,32.5,,119.0,7.08,4.17,Pittsburgh Steelers / 6th / 202nd pick / 2002 11 | 9,10,2002,Ashley Lelie,WR,22,39,Hawaii,6-3,197,4.49,,,,,,Denver Broncos / 1st / 19th pick / 2002 12 | 10,11,2002,Daryl Jones,WR,23,1,Miami (FL),5-9,180,4.35,,,,,,New York Giants / 7th / 226th pick / 2002 13 | 11,12,2002,Ron Johnson,WR,21,1,Minnesota,6-2,225,4.7,34.5,,118.0,7.12,4.02,Baltimore Ravens / 4th / 123rd pick / 2002 14 | 12,13,2002,Javin Hunter,WR,21,0,Notre Dame,5-11,186,4.47,41.0,,129.0,6.84,4.04,Baltimore Ravens / 6th / 206th pick / 2002 15 | 13,14,2002,Kahlil Hill,WR,22,0,Iowa,6-2,200,4.65,35.0,,,,,Atlanta Falcons / 6th / 184th pick / 2002 16 | 14,15,2002,Herb Haygood,WR,24,0,Michigan State,5-11,193,4.45,33.0,,114.0,6.65,4.26,Denver Broncos / 5th / 144th pick / 2002 17 | 15,16,2002,David Givens,WR,21,23,Notre Dame,6-0,217,4.56,40.5,,126.0,6.82,4.13,New England Patriots / 7th / 253rd pick / 2002 18 | 16,17,2002,Jabar Gaffney,WR,21,52,Florida,6-1,193,4.56,,,,6.87,4.06,Houston Texans / 2nd / 33rd pick / 2002 19 | 17,18,2002,Andre' Davis,WR,22,26,Virginia Tech,6-1,194,4.42,39.5,,123.0,6.77,4.1,Cleveland Browns / 2nd / 47th pick / 2002 20 | 18,19,2002,Tim Carter,WR,22,10,Auburn,6-0,190,4.32,39.0,,126.0,6.68,3.93,New York Giants / 2nd / 46th pick / 2002 21 | 19,20,2002,Kelly Campbell,WR,21,12,Georgia Tech,5-10,171,4.48,,,,,, 22 | 20,21,2002,Reche Caldwell,WR,22,21,Florida,6-0,194,4.53,41.5,,130.0,7.0,4.1,San Diego Chargers / 2nd / 48th pick / 2002 23 | 21,22,2002,Antonio Bryant,WR,20,42,Pittsburgh,6-1,188,4.57,37.0,,121.0,,,Dallas Cowboys / 2nd / 63rd pick / 2002 24 | 22,23,2002,Deion Branch,WR,22,64,Louisville,5-9,191,4.47,36.0,,117.0,6.71,3.78,New England Patriots / 2nd / 65th pick / 2002 25 | -------------------------------------------------------------------------------- /combine/combinedata/2003/QB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2003,Seneca Wallace,QB,22,16,Iowa State,5-11,196,4.56,38.0,,127.0,6.98,4.14,Seattle Seahawks / 4th / 110th pick / 2003 3 | 1,2,2003,Chris Simms,QB,22,8,Texas,6-4,220,4.84,31.0,,103.0,7.38,4.21,Tampa Bay Buccaneers / 3rd / 97th pick / 2003 4 | 2,3,2003,Tony Romo,QB,22,116,East. Illinois,6-2,230,5.01,30.0,,105.0,7.11,4.2, 5 | 3,4,2003,Dave Ragone,QB,23,1,Louisville,6-4,249,4.99,30.5,,101.0,7.42,4.36,Houston Texans / 3rd / 88th pick / 2003 6 | 4,5,2003,Carson Palmer,QB,23,142,USC,6-5,232,4.65,,,,,,Cincinnati Bengals / 1st / 1st pick / 2003 7 | 5,6,2003,Byron Leftwich,QB,23,36,Marshall,6-5,241,4.85,,,,,,Jacksonville Jaguars / 1st / 7th pick / 2003 8 | 6,7,2003,Kliff Kingsbury,QB,23,0,Texas Tech,6-3,213,4.77,30.0,,101.0,6.92,4.1,New England Patriots / 6th / 201st pick / 2003 9 | 7,8,2003,Rex Grossman,QB,22,25,Florida,6-1,217,5.06,,,,,,Chicago Bears / 1st / 22nd pick / 2003 10 | 8,9,2003,Ken Dorsey,QB,21,1,Miami (FL),6-5,208,4.7,,,,,,San Francisco 49ers / 7th / 241st pick / 2003 11 | 9,10,2003,Kyle Boller,QB,21,18,California,6-3,234,4.61,35.5,,117.0,7.2,4.02,Baltimore Ravens / 1st / 19th pick / 2003 12 | -------------------------------------------------------------------------------- /combine/combinedata/2003/RB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2003,LaBrandon Toefield,RB,22,5,LSU,5-11,233,4.6,,19.0,,,,Jacksonville Jaguars / 4th / 132nd pick / 2003 3 | 1,2,2003,Lee Suggs,RB,22,8,Virginia Tech,6-0,202,4.44,,,,,,Cleveland Browns / 4th / 115th pick / 2003 4 | 2,3,2003,Onterrio Smith,RB,22,14,Oregon,5-10,220,4.48,,19.0,,,,Minnesota Vikings / 4th / 105th pick / 2003 5 | 3,4,2003,Musa Smith,RB,20,6,Georgia,6-1,232,4.45,35.5,,123.0,,,Baltimore Ravens / 3rd / 77th pick / 2003 6 | 4,5,2003,Cecil Sapp,RB,24,2,Colorado State,5-11,229,4.55,,,,,, 7 | 5,6,2003,Artose Pinner,RB,25,8,Kentucky,5-10,229,4.68,,,,,,Detroit Lions / 4th / 99th pick / 2003 8 | 6,7,2003,Willis McGahee,RB,21,66,Miami (FL),6-0,223,4.45,,,,,,Buffalo Bills / 1st / 23rd pick / 2003 9 | 7,8,2003,Sultan McCullough,RB,23,0,USC,5-11,202,4.49,,27.0,,,, 10 | 8,9,2003,Nick Maddox,RB,22,0,Florida State,5-11,211,4.65,33.5,18.0,115.0,7.33,4.5, 11 | 9,10,2003,Malaefou MacKenzie,RB,23,0,USC,5-10,233,4.67,,,,,,Jacksonville Jaguars / 7th / 218th pick / 2003 12 | 10,11,2003,Larry Johnson,RB,23,56,Penn State,6-1,228,4.45,,19.0,,,,Kansas City Chiefs / 1st / 27th pick / 2003 13 | 11,12,2003,Dwone Hicks,RB,21,0,Middle Tennessee State,5-10,222,4.6,34.0,29.0,115.0,7.38,4.42, 14 | 12,13,2003,Quentin Griffin,RB,22,6,Oklahoma,5-7,195,4.48,38.0,21.0,123.0,,4.08,Denver Broncos / 4th / 108th pick / 2003 15 | 13,14,2003,Earnest Graham,RB,23,20,Florida,5-9,225,4.5,,22.0,,,, 16 | 14,15,2003,Justin Fargas,RB,23,20,USC,6-1,219,4.35,,27.0,137.0,,,Oakland Raiders / 3rd / 96th pick / 2003 17 | 15,16,2003,Dahrran Diedrick,RB,24,0,Nebraska,6-0,228,4.62,37.0,19.0,117.0,7.32,4.44, 18 | 16,17,2003,Domanick Williams,RB,22,34,LSU,5-9,213,4.63,32.5,22.0,112.0,7.32,4.47,Houston Texans / 4th / 101st pick / 2003 19 | 17,18,2003,Avon Cobourne,RB,24,0,West Virginia,5-7,205,4.7,31.5,21.0,112.0,7.21,4.18, 20 | 18,19,2003,Kerry Carter,RB,22,0,Stanford,6-2,238,4.61,36.0,20.0,118.0,7.29,4.39, 21 | 19,20,2003,Chris Brown,RB,21,25,Colorado,6-3,220,4.46,,,,,,Tennessee Titans / 3rd / 93rd pick / 2003 22 | 20,21,2003,B.J. Askew,RB,22,4,Michigan,6-2,241,4.6,,,,,,New York Jets / 3rd / 85th pick / 2003 23 | -------------------------------------------------------------------------------- /combine/combinedata/2003/TE.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2003,George Wrighster,TE,21,9,Oregon,6-2,249,4.89,34.5,16.0,115.0,7.24,,Jacksonville Jaguars / 4th / 104th pick / 2003 3 | 1,2,2003,Jason Witten,TE,20,118,Tennessee,6-6,264,4.65,31.0,25.0,,,,Dallas Cowboys / 3rd / 69th pick / 2003 4 | 2,3,2003,Kevin Ware,TE,22,0,Washington,6-3,256,4.79,34.0,22.0,110.0,7.52,4.47, 5 | 3,4,2003,Aaron Walker,TE,22,3,Florida,6-6,252,4.72,33.5,24.0,115.0,7.57,4.3,San Francisco 49ers / 5th / 161st pick / 2003 6 | 4,5,2003,Trent Smith,TE,23,0,Oklahoma,6-5,243,4.79,35.5,16.0,118.0,7.23,4.37,Baltimore Ravens / 7th / 223rd pick / 2003 7 | 5,6,2003,L.J. Smith,TE,22,23,Rutgers,6-3,258,4.62,37.0,26.0,122.0,6.74,4.25,Philadelphia Eagles / 2nd / 61st pick / 2003 8 | 6,7,2003,Visanthe Shiancoe,TE,22,25,South Florida,6-4,251,4.65,39.5,28.0,120.0,7.09,4.31,New York Giants / 3rd / 91st pick / 2003 9 | 7,8,2003,Mike Seidman,TE,22,1,UCLA,6-4,261,4.8,,20.0,,,,Carolina Panthers / 3rd / 76th pick / 2003 10 | 8,9,2003,Gabe Reid,TE,25,0,BYU,6-3,255,4.82,37.0,23.0,119.0,7.49,4.32, 11 | 9,10,2003,Spencer Nead,TE,25,0,BYU,6-4,259,4.86,28.5,19.0,102.0,7.37,4.34,New England Patriots / 7th / 234th pick / 2003 12 | 10,11,2003,Donald Lee,TE,22,19,Mississippi State,6-3,249,4.82,39.0,26.0,120.0,7.42,4.42,Miami Dolphins / 5th / 156th pick / 2003 13 | 11,12,2003,Bennie Joppru,TE,23,0,Michigan,6-4,272,4.78,30.5,19.0,109.0,,,Houston Texans / 2nd / 41st pick / 2003 14 | 12,13,2003,Robert Johnson,TE,22,0,Auburn,6-6,278,4.96,33.5,18.0,115.0,7.15,4.47, 15 | 13,14,2003,Zach Hilton,TE,22,3,North Carolina,6-8,262,4.83,35.0,24.0,112.0,7.26,4.33, 16 | 14,15,2003,Dan Curley,TE,24,0,East. Washington,6-4,254,4.63,35.5,17.0,118.0,7.47,4.53,St. Louis Rams / 5th / 148th pick / 2003 17 | 15,16,2003,Dallas Clark,TE,23,61,Iowa,6-3,257,4.65,37.5,,123.0,,,Indianapolis Colts / 1st / 24th pick / 2003 18 | 16,17,2003,Sean Berton,TE,23,1,North Carolina State,6-4,279,5.02,31.0,,107.0,7.18,4.35, 19 | -------------------------------------------------------------------------------- /combine/combinedata/2003/WR.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2003,Walter Young,WR,23,0,Illinois,6-5,214,4.54,39.0,,121.0,6.9,4.25,Carolina Panthers / 7th / 226th pick / 2003 3 | 1,2,2003,Kelley Washington,WR,23,14,Tennessee,6-2,223,4.42,,,,,,Cincinnati Bengals / 3rd / 65th pick / 2003 4 | 2,3,2003,Bobby Wade,WR,22,25,Arizona,5-10,193,4.66,34.5,,115.0,7.01,4.11,Chicago Bears / 5th / 139th pick / 2003 5 | 3,4,2003,Charles Rogers,WR,21,4,Michigan State,6-2,202,4.4,,,,,,Detroit Lions / 1st / 2nd pick / 2003 6 | 4,5,2003,Kassim Osgood,WR,22,8,San Diego State,6-5,208,4.68,31.0,,122.0,7.19,4.44, 7 | 5,6,2003,Billy McMullen,WR,22,5,Virginia,6-4,210,4.61,,,,,,Philadelphia Eagles / 3rd / 95th pick / 2003 8 | 6,7,2003,Shaun McDonald,WR,21,20,Arizona State,5-8,169,4.43,,,,,,St. Louis Rams / 4th / 106th pick / 2003 9 | 7,8,2003,Reno Mahe,WR,22,3,BYU,5-9,198,4.68,32.0,,109.0,7.27,4.23, 10 | 8,9,2003,Adrian Madise,WR,22,0,TCU,5-11,215,4.49,32.0,,119.0,7.32,4.26,Denver Broncos / 5th / 158th pick / 2003 11 | 9,10,2003,Brandon Lloyd,WR,21,48,Illinois,6-0,184,4.62,36.0,,,,,San Francisco 49ers / 4th / 124th pick / 2003 12 | 10,11,2003,Teyo Johnson,WR,21,2,Stanford,6-5,247,4.61,33.5,,,,,Oakland Raiders / 2nd / 63rd pick / 2003 13 | 11,12,2003,Bryant Johnson,WR,21,30,Penn State,6-2,214,4.57,,,,,,Arizona Cardinals / 1st / 17th pick / 2003 14 | 12,13,2003,Bethel Johnson,WR,24,8,Texas A&M,5-11,201,4.38,38.5,,127.0,,,New England Patriots / 2nd / 45th pick / 2003 15 | 13,14,2003,Andre Johnson,WR,21,125,Miami (FL),6-2,230,4.41,39.0,,132.0,,,Houston Texans / 1st / 3rd pick / 2003 16 | 14,15,2003,Taylor Jacobs,WR,21,2,Florida,6-0,205,4.42,,,,,,Washington Redskins / 2nd / 44th pick / 2003 17 | 15,16,2003,Keenan Howry,WR,21,0,Oregon,5-10,178,4.56,31.5,,114.0,7.34,4.28,Minnesota Vikings / 7th / 221st pick / 2003 18 | 16,17,2003,Talman Gardner,WR,22,0,Florida State,6-1,205,4.44,34.5,,116.0,7.54,4.43,New Orleans Saints / 7th / 231st pick / 2003 19 | 17,18,2003,Justin Gage,WR,22,28,Missouri,6-4,217,4.45,,,,,,Chicago Bears / 5th / 143rd pick / 2003 20 | 18,19,2003,Doug Gabriel,WR,22,15,Central Florida,6-2,213,4.52,35.5,,116.0,7.05,4.16,Oakland Raiders / 5th / 167th pick / 2003 21 | 19,20,2003,Terrence Edwards,WR,23,0,Georgia,6-0,176,4.5,,,,,, 22 | 20,21,2003,LaTarence Dunbar,WR,22,0,TCU,5-11,196,4.52,34.0,,122.0,7.41,4.35,Atlanta Falcons / 6th / 196th pick / 2003 23 | 21,22,2003,Kevin Curtis,WR,24,28,Utah State,5-11,186,4.42,36.0,,122.0,6.76,3.99,St. Louis Rams / 3rd / 74th pick / 2003 24 | 22,23,2003,Tyrone Calico,WR,22,5,Middle Tennessee State,6-4,223,4.34,38.0,,127.0,6.73,4.26,Tennessee Titans / 2nd / 60th pick / 2003 25 | 23,24,2003,Nate Burleson,WR,21,55,Nevada,6-0,197,4.51,42.5,,126.0,6.96,4.16,Minnesota Vikings / 3rd / 71st pick / 2003 26 | 24,25,2003,Anquan Boldin,WR,22,118,Florida State,6-1,216,4.72,33.5,,114.0,7.35,4.33,Arizona Cardinals / 2nd / 54th pick / 2003 27 | 25,26,2003,Ronald Bellamy,WR,21,0,Michigan,6-0,208,4.57,30.5,,119.0,7.38,4.1, 28 | 26,27,2003,Arnaz Battle,WR,23,19,Notre Dame,6-1,217,4.58,35.0,,117.0,6.74,4.06,San Francisco 49ers / 6th / 197th pick / 2003 29 | 27,28,2003,Sam Aiken,WR,22,7,North Carolina,6-2,209,4.59,39.5,,121.0,7.22,,Buffalo Bills / 4th / 127th pick / 2003 30 | -------------------------------------------------------------------------------- /combine/combinedata/2004/QB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2004,Bradlee Van Pelt,QB,23,0,Colorado State,6-2,231,4.98,33.5,,115.0,6.89,4.11,Denver Broncos / 7th / 250th pick / 2004 3 | 1,2,2004,Matt Schaub,QB,22,81,Virginia,6-6,243,5.04,30.5,,110.0,7.65,4.62,Atlanta Falcons / 3rd / 90th pick / 2004 4 | 2,3,2004,Ben Roethlisberger,QB,22,186,Miami (OH),6-5,241,4.75,,,,,,Pittsburgh Steelers / 1st / 11th pick / 2004 5 | 3,4,2004,Philip Rivers,QB,22,204,North Carolina State,6-5,229,5.08,,,,,,New York Giants / 1st / 4th pick / 2004 6 | 4,5,2004,Cody Pickett,QB,23,1,Washington,6-3,233,4.79,30.5,,109.0,7.19,4.3,San Francisco 49ers / 7th / 217th pick / 2004 7 | 5,6,2004,John Navarre,QB,23,0,Michigan,6-6,246,5.19,26.5,,100.0,7.73,4.46,Arizona Cardinals / 7th / 202nd pick / 2004 8 | 6,7,2004,Luke McCown,QB,22,8,Louisiana Tech,6-4,208,4.71,37.5,,125.0,6.74,4.21,Cleveland Browns / 4th / 106th pick / 2004 9 | 7,8,2004,Matt Mauck,QB,25,1,LSU,6-2,228,4.79,,,,,,Denver Broncos / 7th / 225th pick / 2004 10 | 8,9,2004,Eli Manning,QB,23,165,Mississippi,6-5,221,4.9,,,,,,San Diego Chargers / 1st / 1st pick / 2004 11 | 9,10,2004,J.P. Losman,QB,22,20,Tulane,6-2,224,4.73,33.0,,116.0,,,Buffalo Bills / 1st / 22nd pick / 2004 12 | 10,11,2004,Jared Lorenzen,QB,23,0,Kentucky,6-3,288,5.28,,,,,, 13 | 11,12,2004,Craig Krenzel,QB,22,1,Ohio State,6-3,228,4.84,28.0,,112.0,7.22,4.08,Chicago Bears / 5th / 148th pick / 2004 14 | -------------------------------------------------------------------------------- /combine/combinedata/2004/RB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2004,Jason Wright,RB,21,10,Northwestern,5-10,210,4.68,30.0,,111.0,7.35,4.12, 3 | 1,2,2004,Quincy Wilson,RB,22,0,West Virginia,5-9,225,4.6,33.5,26.0,118.0,7.68,4.36,Atlanta Falcons / 7th / 219th pick / 2004 4 | 2,3,2004,Shaud Williams,RB,23,3,Alabama,5-7,193,4.73,34.0,15.0,114.0,7.01,4.15, 5 | 3,4,2004,Michael Turner,RB,22,62,Northern Illinois,5-10,237,4.49,31.0,22.0,114.0,7.5,4.15,San Diego Chargers / 5th / 154th pick / 2004 6 | 4,5,2004,Chris Perry,RB,22,9,Michigan,6-0,224,4.56,,19.0,,,,Cincinnati Bengals / 1st / 26th pick / 2004 7 | 5,6,2004,Jarrett Payton,RB,23,1,Miami (FL),6-0,220,4.66,31.0,,115.0,7.34,4.31, 8 | 6,7,2004,Mewelde Moore,RB,21,33,Tulane,5-11,209,4.65,35.0,,118.0,7.05,4.12,Minnesota Vikings / 4th / 119th pick / 2004 9 | 7,8,2004,Kevin Jones,RB,21,29,Virginia Tech,6-0,227,4.38,38.0,,120.0,,,Detroit Lions / 1st / 30th pick / 2004 10 | 8,9,2004,Julius Jones,RB,22,43,Notre Dame,5-10,217,4.47,37.5,,121.0,6.97,4.12,Dallas Cowboys / 2nd / 43rd pick / 2004 11 | 9,10,2004,Greg Jones,RB,22,10,Florida State,6-1,249,4.55,,,,,,Jacksonville Jaguars / 2nd / 55th pick / 2004 12 | 10,11,2004,Steven Jackson,RB,20,92,Oregon State,6-1,241,4.55,,,,,,St. Louis Rams / 1st / 24th pick / 2004 13 | 11,12,2004,Adimchinobi Echemandu,RB,23,1,California,5-11,226,4.58,,15.0,,,,Cleveland Browns / 7th / 208th pick / 2004 14 | 12,13,2004,Cedric Cobbs,RB,23,0,Arkansas,6-0,223,4.75,40.0,,123.0,,,New England Patriots / 4th / 128th pick / 2004 15 | 13,14,2004,Ran Carthon,RB,23,0,Florida,5-11,224,4.51,34.5,22.0,112.0,,4.12, 16 | 14,15,2004,Tatum Bell,RB,23,23,Oklahoma State,5-11,212,4.37,38.5,25.0,117.0,,,Denver Broncos / 2nd / 41st pick / 2004 17 | 15,16,2004,Rich Alexis,RB,22,0,Washington,6-0,210,4.64,32.0,,114.0,7.41,4.43, 18 | -------------------------------------------------------------------------------- /combine/combinedata/2004/TE.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2004,Kellen Winslow,TE,20,42,Miami (FL),6-4,251,4.55,,24.0,120.0,,,Cleveland Browns / 1st / 6th pick / 2004 3 | 1,2,2004,Kris Wilson,TE,22,3,Pittsburgh,6-2,248,4.62,35.0,24.0,119.0,6.88,4.1,Kansas City Chiefs / 2nd / 61st pick / 2004 4 | 2,3,2004,Benjamin Watson,TE,23,56,Georgia,6-3,258,4.5,35.5,34.0,123.0,7.38,4.11,New England Patriots / 1st / 32nd pick / 2004 5 | 3,4,2004,Ben Utecht,TE,22,11,Minnesota,6-6,249,4.8,,,,,, 6 | 4,5,2004,Ben Troupe,TE,21,8,Florida,6-4,265,4.65,,,,,,Tennessee Titans / 2nd / 40th pick / 2004 7 | 5,6,2004,Sean Ryan,TE,23,1,Boston Col.,6-4,268,4.97,32.5,22.0,115.0,,,Dallas Cowboys / 5th / 144th pick / 2004 8 | 6,7,2004,Brett Pierce,TE,23,0,Stanford,6-5,250,4.95,27.0,19.0,103.0,7.13,4.37, 9 | 7,8,2004,Jason Peters,TE,22,139,Arkansas,6-4,336,4.93,29.0,21.0,115.0,7.7,4.75, 10 | 8,9,2004,Sean McHugh,TE,21,2,Penn State,6-5,264,4.92,29.0,18.0,115.0,7.36,4.09,Tennessee Titans / 7th / 241st pick / 2004 11 | 9,10,2004,Ben Hartsock,TE,23,2,Ohio State,6-4,263,4.8,35.0,23.0,117.0,7.1,3.98,Indianapolis Colts / 3rd / 68th pick / 2004 12 | 10,11,2004,Ronnie Ghent,TE,24,0,Louisville,6-2,248,5.02,27.5,11.0,103.0,7.47,4.5, 13 | 11,12,2004,Michael Gaines,TE,23,7,Central Florida,6-2,275,5.06,33.0,18.0,109.0,7.44,4.18,Carolina Panthers / 7th / 232nd pick / 2004 14 | 12,13,2004,Tim Euhus,TE,23,1,Oregon State,6-5,260,4.93,34.5,25.0,115.0,6.99,4.13,Buffalo Bills / 4th / 109th pick / 2004 15 | 13,14,2004,Jeff Dugan,TE,22,2,Maryland,6-4,263,5.0,28.0,21.0,109.0,7.4,4.32,Minnesota Vikings / 7th / 220th pick / 2004 16 | 14,15,2004,Chris Cooley,TE,21,38,Utah State,6-3,265,4.87,33.0,22.0,115.0,7.21,4.19,Washington Redskins / 3rd / 81st pick / 2004 17 | 15,16,2004,Courtney Anderson,TE,23,5,San Jose State,6-6,269,4.89,30.0,17.0,106.0,7.86,4.45,Oakland Raiders / 7th / 245th pick / 2004 18 | -------------------------------------------------------------------------------- /combine/combinedata/2004/WR.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2004,Kevin Youngblood,WR,23,0,Clemson,6-4,213,4.64,34.0,,,,, 3 | 1,2,2004,Rashaun Woods,WR,23,1,Oklahoma State,6-2,202,4.47,39.0,,125.0,6.93,3.97,San Francisco 49ers / 1st / 31st pick / 2004 4 | 2,3,2004,George Wilson,WR,22,29,Arkansas,6-0,213,4.63,35.0,,120.0,7.07,3.98, 5 | 3,4,2004,Roy Williams,WR,22,49,Texas,6-2,212,4.48,,,,,,Detroit Lions / 1st / 7th pick / 2004 6 | 4,5,2004,Reggie Williams,WR,20,25,Washington,6-4,229,4.56,,,,,,Jacksonville Jaguars / 1st / 9th pick / 2004 7 | 5,6,2004,Ernest Wilford,WR,25,23,Virginia Tech,6-4,226,4.79,40.5,,130.0,,4.17,Jacksonville Jaguars / 4th / 120th pick / 2004 8 | 6,7,2004,Darius Watts,WR,22,4,Marshall,6-1,188,4.5,,,,,,Denver Broncos / 2nd / 54th pick / 2004 9 | 7,8,2004,Andrae Thurman,WR,23,1,Arizona,5-11,192,4.54,34.5,,121.0,7.31,4.3, 10 | 8,9,2004,Sloan Thomas,WR,22,0,Texas,6-1,203,4.5,,,,,,Houston Texans / 7th / 211th pick / 2004 11 | 9,10,2004,Jamaar Taylor,WR,23,1,Texas A&M,6-1,197,4.46,,,,,,New York Giants / 6th / 168th pick / 2004 12 | 10,11,2004,Kendrick Starling,WR,24,0,San Jose State,6-1,193,4.49,31.5,,119.0,6.88,3.87, 13 | 11,12,2004,John Standeford,WR,21,2,Purdue,6-3,197,4.6,32.5,,113.0,6.9,4.08, 14 | 12,13,2004,Jonathan Smith,WR,22,2,Georgia Tech,5-10,194,4.78,32.5,,114.0,,4.35,Buffalo Bills / 7th / 214th pick / 2004 15 | 13,14,2004,P.K. Sam,WR,20,0,Florida State,6-3,210,4.54,34.5,,,7.04,,New England Patriots / 5th / 164th pick / 2004 16 | 14,15,2004,Samie Parker,WR,22,14,Oregon,5-10,179,4.39,36.0,,,,,Kansas City Chiefs / 4th / 105th pick / 2004 17 | 15,16,2004,Johnnie Morant,WR,22,0,Syracuse,6-4,229,4.51,41.0,,130.0,7.34,4.22,Oakland Raiders / 5th / 134th pick / 2004 18 | 16,17,2004,Clarence Moore,WR,21,2,Northern Arizona,6-6,211,4.55,34.0,,122.0,6.84,4.16,Baltimore Ravens / 6th / 199th pick / 2004 19 | 17,18,2004,Maurice Mann,WR,21,0,Nevada,6-1,191,4.57,34.0,,118.0,,,Cincinnati Bengals / 5th / 149th pick / 2004 20 | 18,19,2004,Triandos Luke,WR,22,0,Alabama,5-11,199,4.51,38.0,,124.0,7.06,4.17,Denver Broncos / 6th / 171st pick / 2004 21 | 19,20,2004,Ryan Krause,WR,22,1,Nebraska-Omaha,6-2,244,4.6,33.5,18.0,119.0,6.78,4.16,San Diego Chargers / 6th / 169th pick / 2004 22 | 20,21,2004,Kelvin Kight,WR,21,0,Florida,6-0,213,4.56,34.0,,109.0,7.18,4.24, 23 | 21,22,2004,Michael Jenkins,WR,21,46,Ohio State,6-4,218,4.4,,,,,,Atlanta Falcons / 1st / 29th pick / 2004 24 | 22,23,2004,Justin Jenkins,WR,23,0,Mississippi State,5-11,213,4.6,35.0,,123.0,7.47,4.16, 25 | 23,24,2004,Devery Henderson,WR,21,41,LSU,5-11,198,4.41,,,,,,New Orleans Saints / 2nd / 50th pick / 2004 26 | 24,25,2004,Derrick Hamilton,WR,22,0,Clemson,6-3,196,4.54,,,,,,San Francisco 49ers / 3rd / 77th pick / 2004 27 | 25,26,2004,D.J. Hackett,WR,22,15,Colorado,6-2,199,4.53,41.0,,131.0,6.79,4.08,Seattle Seahawks / 5th / 157th pick / 2004 28 | 26,27,2004,Carlos Francis,WR,23,0,Texas Tech,5-9,198,4.33,38.5,,114.0,6.97,4.06,Oakland Raiders / 4th / 99th pick / 2004 29 | 27,28,2004,Larry Fitzgerald,WR,20,133,Pittsburgh,6-3,225,4.48,,,,,,Arizona Cardinals / 1st / 3rd pick / 2004 30 | 28,29,2004,Lee Evans,WR,22,56,Wisconsin,5-11,197,4.39,34.5,,120.0,,,Buffalo Bills / 1st / 13th pick / 2004 31 | 29,30,2004,Devard Darling,WR,21,4,Washington State,6-1,213,4.52,37.0,,129.0,,,Baltimore Ravens / 3rd / 82nd pick / 2004 32 | 30,31,2004,Jerricho Cotchery,WR,21,63,North Carolina State,6-0,212,4.54,36.0,,121.0,6.93,3.91,New York Jets / 4th / 108th pick / 2004 33 | 31,32,2004,Terrance Copper,WR,21,10,East Carolina,6-0,208,4.53,35.5,,116.0,7.34,4.31, 34 | 32,33,2004,Keary Colbert,WR,21,15,USC,6-1,207,4.6,30.0,,,,,Carolina Panthers / 2nd / 62nd pick / 2004 35 | 33,34,2004,Michael Clayton,WR,21,24,LSU,6-3,209,4.67,32.5,,116.0,6.77,4.09,Tampa Bay Buccaneers / 1st / 15th pick / 2004 36 | 34,35,2004,Drew Carter,WR,22,8,Ohio State,6-4,204,4.36,,,,,,Carolina Panthers / 5th / 163rd pick / 2004 37 | 35,36,2004,Bernard Berrian,WR,23,36,Fresno State,6-1,183,4.58,38.0,,128.0,7.34,4.18,Chicago Bears / 3rd / 78th pick / 2004 38 | -------------------------------------------------------------------------------- /combine/combinedata/2005/QB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2005,Andrew Walter,QB,22,1,Arizona State,6-6,233,4.86,,,,,,Oakland Raiders / 3rd / 69th pick / 2005 3 | 1,2,2005,Alex Smith,QB,20,118,Utah,6-4,217,4.71,32.0,,113.0,6.82,3.96,San Francisco 49ers / 1st / 1st pick / 2005 4 | 2,3,2005,Aaron Rodgers,QB,21,184,California,6-2,223,4.71,34.5,,110.0,7.38,,Green Bay Packers / 1st / 24th pick / 2005 5 | 3,4,2005,Kyle Orton,QB,22,45,Purdue,6-4,233,5.06,26.5,,,7.38,4.52,Chicago Bears / 4th / 106th pick / 2005 6 | 4,5,2005,Dan Orlovsky,QB,21,7,Connecticut,6-5,225,4.93,29.5,,107.0,7.33,4.39,Detroit Lions / 5th / 145th pick / 2005 7 | 5,6,2005,Charlie Frye,QB,23,8,Akron,6-4,225,4.79,33.0,,113.0,6.94,4.08,Cleveland Browns / 3rd / 67th pick / 2005 8 | 6,7,2005,Ryan Fitzpatrick,QB,22,96,Harvard,6-2,232,4.86,30.5,,105.0,7.09,4.07,St. Louis Rams / 7th / 250th pick / 2005 9 | 7,8,2005,Jason Campbell,QB,23,53,Auburn,6-5,230,4.71,,,,,,Washington Redskins / 1st / 25th pick / 2005 10 | 8,9,2005,Brock Berlin,QB,23,0,Miami (FL),6-1,221,4.83,29.0,,109.0,7.49,4.54, 11 | 9,10,2005,Derek Anderson,QB,21,22,Oregon State,6-6,242,5.03,29.0,,103.0,7.67,4.62,Baltimore Ravens / 6th / 213th pick / 2005 12 | -------------------------------------------------------------------------------- /combine/combinedata/2005/RB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2005,Cadillac Williams,RB,22,29,Auburn,5-11,217,4.43,35.5,19.0,118.0,6.94,4.15,Tampa Bay Buccaneers / 1st / 5th pick / 2005 3 | 1,2,2005,Darren Sproles,RB,21,80,Kansas State,5-6,187,4.47,33.0,23.0,105.0,6.96,3.96,San Diego Chargers / 4th / 130th pick / 2005 4 | 2,3,2005,Eric Shelton,RB,21,0,Louisville,6-1,246,4.53,38.5,,124.0,7.44,4.08,Carolina Panthers / 2nd / 54th pick / 2005 5 | 3,4,2005,Alvin Pearman,RB,22,5,Virginia,5-9,208,4.63,34.0,24.0,114.0,7.06,4.08,Jacksonville Jaguars / 4th / 127th pick / 2005 6 | 4,5,2005,Vernand Morency,RB,25,8,Oklahoma State,5-10,212,4.66,33.5,19.0,108.0,7.02,4.12,Houston Texans / 3rd / 73rd pick / 2005 7 | 5,6,2005,Ryan Moats,RB,22,7,Louisiana Tech,5-8,210,4.46,36.0,19.0,117.0,7.22,4.1,Philadelphia Eagles / 3rd / 77th pick / 2005 8 | 6,7,2005,Brandon Jacobs,RB,22,41,Southern Illinois,6-4,267,4.56,37.0,19.0,118.0,7.53,4.46,New York Giants / 4th / 110th pick / 2005 9 | 7,8,2005,Cedric Houston,RB,22,5,Tennessee,5-11,225,4.61,,,,,,New York Jets / 6th / 182nd pick / 2005 10 | 8,9,2005,Noah Herron,RB,22,3,Northwestern,5-11,224,4.6,31.0,17.0,108.0,6.95,3.97,Pittsburgh Steelers / 7th / 244th pick / 2005 11 | 9,10,2005,Alex Haynes,RB,23,0,Central Florida,5-10,223,4.51,32.5,21.0,,,, 12 | 10,11,2005,Kay-Jay Harris,RB,25,0,West Virginia,6-0,241,4.56,38.0,,122.0,7.2,4.1, 13 | 11,12,2005,Ryan Grant,RB,22,38,Notre Dame,6-1,215,4.43,33.5,17.0,115.0,7.08,4.12, 14 | 12,13,2005,Frank Gore,RB,21,129,Miami (FL),5-9,217,4.58,,,,,,San Francisco 49ers / 3rd / 65th pick / 2005 15 | 13,14,2005,Lionel Gates,RB,22,0,Louisville,6-0,222,4.6,36.0,23.0,121.0,7.17,4.1,Buffalo Bills / 7th / 236th pick / 2005 16 | 14,15,2005,Ciatrick Fason,RB,22,1,Florida,6-1,207,4.58,,,,,,Minnesota Vikings / 4th / 112th pick / 2005 17 | 15,16,2005,DeAndra Cobb,RB,23,0,Michigan State,5-10,196,4.49,34.0,17.0,118.0,7.13,4.25,Atlanta Falcons / 6th / 201st pick / 2005 18 | 16,17,2005,Ronnie Brown,RB,23,48,Auburn,6-0,233,4.43,34.0,18.0,117.0,7.1,4.08,Miami Dolphins / 1st / 2nd pick / 2005 19 | 17,18,2005,Nehemiah Broughton,RB,22,0,Citadel,5-11,250,4.59,30.0,25.0,108.0,7.54,4.28,Washington Redskins / 7th / 222nd pick / 2005 20 | 18,19,2005,Cedric Benson,RB,22,39,Texas,5-10,222,4.62,,,,,,Chicago Bears / 1st / 4th pick / 2005 21 | 19,20,2005,Marion Barber,RB,21,45,Minnesota,5-11,221,4.49,40.0,20.0,127.0,,,Dallas Cowboys / 4th / 109th pick / 2005 22 | 20,21,2005,J.J. Arrington,RB,22,12,California,5-9,214,4.4,35.0,18.0,121.0,6.81,4.1,Arizona Cardinals / 2nd / 44th pick / 2005 23 | -------------------------------------------------------------------------------- /combine/combinedata/2005/TE.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2005,Alex Smith,TE,22,12,Stanford,6-4,258,4.88,,28.0,,,,Tampa Bay Buccaneers / 3rd / 71st pick / 2005 3 | 1,2,2005,Bo Scaife,TE,24,22,Texas,6-3,249,4.75,32.5,24.0,114.0,7.21,4.12,Tennessee Titans / 6th / 179th pick / 2005 4 | 2,3,2005,Heath Miller,TE,22,59,Virginia,6-5,256,4.79,,,,,,Pittsburgh Steelers / 1st / 30th pick / 2005 5 | 3,4,2005,Matt Jones,TE,21,23,Arkansas,6-6,242,4.37,39.5,,129.0,,,Jacksonville Jaguars / 1st / 21st pick / 2005 6 | 4,5,2005,Alex Holmes,TE,23,0,USC,6-2,265,5.04,,18.0,,,, 7 | 5,6,2005,Kevin Everett,TE,23,0,Miami (FL),6-5,241,4.72,,,,,,Buffalo Bills / 3rd / 86th pick / 2005 8 | 6,7,2005,Joel Dreessen,TE,22,17,Colorado State,6-4,260,4.72,36.0,22.0,113.0,7.09,4.01,New York Jets / 6th / 198th pick / 2005 9 | 7,8,2005,Tony Curtis,TE,22,0,Portland State,6-5,269,4.93,,21.0,115.0,,, 10 | 8,9,2005,Jerome Collins,TE,22,0,Notre Dame,6-4,267,4.71,,21.0,118.0,,,St. Louis Rams / 5th / 144th pick / 2005 11 | 9,10,2005,Adam Bergen,TE,21,3,Lehigh,6-4,265,4.78,38.0,25.0,121.0,7.11,4.1, 12 | 10,11,2005,Billy Bajema,TE,22,2,Oklahoma State,6-5,261,4.74,31.5,16.0,113.0,7.05,4.25,San Francisco 49ers / 7th / 249th pick / 2005 13 | -------------------------------------------------------------------------------- /combine/combinedata/2005/WR.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2005,Troy Williamson,WR,21,8,South Carolina,6-1,203,4.32,,,,6.99,,Minnesota Vikings / 1st / 7th pick / 2005 3 | 1,2,2005,Mike Williams,WR,21,13,USC,6-5,229,4.56,36.5,,,,,Detroit Lions / 1st / 10th pick / 2005 4 | 2,3,2005,Roddy White,WR,23,107,Ala-Birmingham,6-1,207,4.46,,,,,,Atlanta Falcons / 1st / 27th pick / 2005 5 | 3,4,2005,Paris Warren,WR,22,0,Utah,6-0,219,4.71,31.5,,,,,Tampa Bay Buccaneers / 7th / 225th pick / 2005 6 | 4,5,2005,Craphonso Thorpe,WR,21,1,Florida State,6-1,188,4.38,,,,,,Kansas City Chiefs / 4th / 116th pick / 2005 7 | 5,6,2005,Courtney Roby,WR,22,3,Indiana,6-0,189,4.41,36.5,,126.0,6.6,3.94,Tennessee Titans / 3rd / 68th pick / 2005 8 | 6,7,2005,Jamaica Rector,WR,23,0,Northwest Missouri State,5-10,186,4.47,36.5,,122.0,6.78,4.13, 9 | 7,8,2005,Tab Perry,WR,23,1,UCLA,6-2,229,4.46,34.0,,116.0,7.0,,Cincinnati Bengals / 6th / 190th pick / 2005 10 | 8,9,2005,Roscoe Parrish,WR,22,15,Miami (FL),5-10,168,4.37,,,,,,Buffalo Bills / 2nd / 55th pick / 2005 11 | 9,10,2005,Chad Owens,WR,22,0,Hawaii,5-7,183,4.62,37.0,,116.0,6.7,3.94,Jacksonville Jaguars / 6th / 185th pick / 2005 12 | 10,11,2005,Terrence Murphy,WR,22,0,Texas A&M,6-1,202,4.39,,,,,,Green Bay Packers / 2nd / 58th pick / 2005 13 | 11,12,2005,Lance Moore,WR,21,45,Toledo,5-9,177,4.52,,,,,, 14 | 12,13,2005,Leron McCoy,WR,23,1,Indiana (PA),6-1,211,4.4,37.0,,120.0,7.19,4.21,Arizona Cardinals / 7th / 226th pick / 2005 15 | 13,14,2005,Jerome Mathis,WR,21,4,Kansas State,5-11,181,4.28,35.5,,123.0,,,Houston Texans / 4th / 114th pick / 2005 16 | 14,15,2005,Rasheed Marshall,WR,23,0,West Virginia,6-0,185,4.51,38.0,,121.0,6.81,3.95,San Francisco 49ers / 5th / 174th pick / 2005 17 | 15,16,2005,Brandon Jones,WR,22,13,Oklahoma,6-1,210,4.42,37.0,,114.0,7.03,4.08,Tennessee Titans / 3rd / 96th pick / 2005 18 | 16,17,2005,Vincent Jackson,WR,22,92,Northern Colorado,6-5,241,4.46,39.0,,,,,San Diego Chargers / 2nd / 61st pick / 2005 19 | 17,18,2005,Chris Henry,WR,21,17,West Virginia,6-4,197,4.5,,,,,,Cincinnati Bengals / 3rd / 83rd pick / 2005 20 | 18,19,2005,Braylon Edwards,WR,22,47,Michigan,6-3,211,4.45,,,,,,Cleveland Browns / 1st / 3rd pick / 2005 21 | 19,20,2005,Airese Currie,WR,22,0,Clemson,5-10,186,4.49,38.0,,125.0,7.05,4.07,Chicago Bears / 5th / 140th pick / 2005 22 | 20,21,2005,Mark Clayton,WR,22,30,Oklahoma,5-10,193,4.41,36.5,,118.0,6.95,4.07,Baltimore Ravens / 1st / 22nd pick / 2005 23 | 21,22,2005,Reggie Brown,WR,24,21,Georgia,6-2,196,4.45,41.5,,128.0,6.99,3.94,Philadelphia Eagles / 2nd / 35th pick / 2005 24 | 22,23,2005,Mark Bradley,WR,23,11,Oklahoma,6-1,201,4.37,39.5,,128.0,6.96,3.98,Chicago Bears / 2nd / 39th pick / 2005 25 | -------------------------------------------------------------------------------- /combine/combinedata/2006/QB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2006,Vince Young,QB,22,36,Texas,6-5,229,4.48,,,,,,Tennessee Titans / 1st / 3rd pick / 2006 3 | 1,2,2006,Charlie Whitehurst,QB,23,7,Clemson,6-5,223,4.75,33.0,,112.0,7.0,4.11,San Diego Chargers / 3rd / 81st pick / 2006 4 | 2,3,2006,Marcus Vick,QB,21,0,Virginia Tech,6-0,200,4.47,36.0,,117.0,6.94,4.08, 5 | 3,4,2006,Reggie McNeal,QB,22,0,Texas A&M,6-2,198,4.4,32.0,,121.0,6.96,4.25,Cincinnati Bengals / 6th / 193rd pick / 2006 6 | 4,5,2006,Ingle Martin,QB,23,0,Furman,6-2,220,4.71,36.0,,111.0,7.13,4.17,Green Bay Packers / 5th / 148th pick / 2006 7 | 5,6,2006,Matt Leinart,QB,22,12,USC,6-5,223,4.9,,,,,,Arizona Cardinals / 1st / 10th pick / 2006 8 | 6,7,2006,Tarvaris Jackson,QB,22,23,Arkansas,6-2,226,4.69,31.5,22.0,107.0,7.4,4.38,Minnesota Vikings / 2nd / 64th pick / 2006 9 | 7,8,2006,Bruce Gradkowski,QB,23,8,Toledo,6-1,217,4.59,34.0,,107.0,7.12,4.16,Tampa Bay Buccaneers / 6th / 194th pick / 2006 10 | 8,9,2006,Jay Cutler,QB,22,109,Vanderbilt,6-3,226,4.77,,23.0,,7.1,4.26,Denver Broncos / 1st / 11th pick / 2006 11 | 9,10,2006,Brodie Croyle,QB,23,2,Alabama,6-2,205,4.88,30.5,,104.0,7.34,4.25,Kansas City Chiefs / 3rd / 85th pick / 2006 12 | 10,11,2006,Kellen Clemens,QB,22,10,Oregon,6-2,224,4.89,,,,,,New York Jets / 2nd / 49th pick / 2006 13 | 11,12,2006,Brett Basanez,QB,22,0,Northwestern,6-1,220,4.76,34.0,,114.0,6.75,4.22, 14 | -------------------------------------------------------------------------------- /combine/combinedata/2006/RB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2006,DeAngelo Williams,RB,22,73,Memphis,5-9,214,4.45,35.5,25.0,121.0,,,Carolina Panthers / 1st / 27th pick / 2006 3 | 1,2,2006,LenDale White,RB,21,15,USC,6-0,238,4.49,,,,,,Tennessee Titans / 2nd / 45th pick / 2006 4 | 2,3,2006,Leon Washington,RB,23,34,Florida State,5-8,201,4.42,32.5,17.0,105.0,6.94,4.37,New York Jets / 4th / 117th pick / 2006 5 | 3,4,2006,Derrick Ross,RB,22,0,Tarleton State,5-10,226,4.56,35.0,20.0,112.0,7.0,4.35, 6 | 4,5,2006,Cory Ross,RB,23,0,Nebraska,5-6,201,4.58,,15.0,,,, 7 | 5,6,2006,Jerious Norwood,RB,22,21,Mississippi State,6-0,210,4.4,36.5,15.0,122.0,6.81,4.25,Atlanta Falcons / 3rd / 79th pick / 2006 8 | 6,7,2006,Laurence Maroney,RB,21,27,Minnesota,6-0,217,4.48,,,,,,New England Patriots / 1st / 21st pick / 2006 9 | 7,8,2006,Wali Lundy,RB,22,5,Virginia,5-11,214,4.48,35.0,18.0,111.0,6.99,4.36,Houston Texans / 6th / 170th pick / 2006 10 | 8,9,2006,Jerome Harrison,RB,23,14,Washington State,5-9,201,4.47,34.5,19.0,124.0,6.77,4.07,Cleveland Browns / 5th / 145th pick / 2006 11 | 9,10,2006,Andre Hall,RB,23,3,South Florida,5-8,208,4.4,33.0,18.0,113.0,7.38,, 12 | 10,11,2006,Marques Hagans,RB,23,1,Virginia,5-9,202,4.67,35.0,,114.0,7.03,4.38,St. Louis Rams / 5th / 144th pick / 2006 13 | 11,12,2006,Quinton Ganther,RB,21,3,Utah,5-9,218,4.5,35.0,29.0,119.0,7.19,,Tennessee Titans / 7th / 246th pick / 2006 14 | 12,13,2006,Maurice Jones-Drew,RB,20,84,UCLA,5-7,207,4.39,36.0,18.0,116.0,7.08,4.38,Jacksonville Jaguars / 2nd / 60th pick / 2006 15 | 13,14,2006,P.J. Daniels,RB,23,0,Georgia Tech,5-10,214,4.64,33.0,21.0,116.0,7.13,4.4,Baltimore Ravens / 4th / 132nd pick / 2006 16 | 14,15,2006,Brian Calhoun,RB,21,1,Wisconsin,5-9,201,4.57,31.5,18.0,124.0,7.05,4.2,Detroit Lions / 3rd / 74th pick / 2006 17 | 15,16,2006,Reggie Bush,RB,21,72,USC,5-11,201,4.37,,,,,,New Orleans Saints / 1st / 2nd pick / 2006 18 | 16,17,2006,Mike Bell,RB,22,12,Arizona,6-0,221,4.6,31.5,19.0,112.0,7.16,4.21, 19 | 17,18,2006,Joseph Addai,RB,22,54,LSU,5-11,214,4.4,38.5,18.0,125.0,7.09,4.47,Indianapolis Colts / 1st / 30th pick / 2006 20 | -------------------------------------------------------------------------------- /combine/combinedata/2006/TE.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2006,Cooper Wallace,TE,23,0,Auburn,6-4,261,4.78,29.0,21.0,105.0,7.29,4.21, 3 | 1,2,2006,David Thomas,TE,22,10,Texas,6-3,252,4.67,37.5,19.0,113.0,7.05,4.34,New England Patriots / 3rd / 86th pick / 2006 4 | 2,3,2006,Quinn Sypniewski,TE,23,2,Colorado,6-6,268,4.77,32.5,20.0,114.0,7.09,4.52,Baltimore Ravens / 5th / 166th pick / 2006 5 | 3,4,2006,Tony Scheffler,TE,23,28,West. Michigan,6-5,254,4.54,33.5,17.0,115.0,6.81,4.01,Denver Broncos / 2nd / 61st pick / 2006 6 | 4,5,2006,Leonard Pope,TE,22,7,Georgia,6-8,258,4.62,37.5,22.0,118.0,7.47,4.67,Arizona Cardinals / 3rd / 72nd pick / 2006 7 | 5,6,2006,Jason Pociask,TE,23,0,Wisconsin,6-3,266,4.84,32.5,23.0,115.0,7.31,4.3,New York Jets / 5th / 150th pick / 2006 8 | 6,7,2006,Tim Massaquoi,TE,23,0,Michigan,6-3,259,4.85,,32.0,,,,Tampa Bay Buccaneers / 7th / 244th pick / 2006 9 | 7,8,2006,Marcedes Lewis,TE,21,41,UCLA,6-6,261,4.8,37.0,23.0,118.0,7.24,4.82,Jacksonville Jaguars / 1st / 28th pick / 2006 10 | 8,9,2006,Joe Klopfenstein,TE,22,3,Colorado,6-6,255,4.63,36.0,27.0,112.0,7.39,4.21,St. Louis Rams / 2nd / 46th pick / 2006 11 | 9,10,2006,Jeff King,TE,23,11,Virginia Tech,6-5,245,4.83,32.5,21.0,109.0,6.99,4.09,Carolina Panthers / 5th / 155th pick / 2006 12 | 10,11,2006,Daniel Fells,TE,22,12,California-Davis,6-3,259,4.95,29.5,19.0,108.0,7.27,4.46, 13 | 11,12,2006,Anthony Fasano,TE,21,29,Notre Dame,6-4,259,4.72,33.5,19.0,112.0,6.94,4.34,Dallas Cowboys / 2nd / 53rd pick / 2006 14 | 12,13,2006,Vernon Davis,TE,22,65,Maryland,6-3,254,4.38,42.0,33.0,128.0,7.0,4.17,San Francisco 49ers / 1st / 6th pick / 2006 15 | 13,14,2006,Owen Daniels,TE,23,49,Wisconsin,6-3,253,4.65,34.5,23.0,114.0,6.87,4.1,Houston Texans / 4th / 98th pick / 2006 16 | 14,15,2006,Dominique Byrd,TE,22,0,USC,6-3,255,4.79,,,,,,St. Louis Rams / 3rd / 93rd pick / 2006 17 | 15,16,2006,Troy Bienemann,TE,23,0,Washington State,6-5,256,4.8,,,,,, 18 | -------------------------------------------------------------------------------- /combine/combinedata/2006/WR.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2006,Travis Wilson,WR,22,0,Oklahoma,6-2,214,4.47,36.5,,120.0,6.7,3.99,Cleveland Browns / 3rd / 78th pick / 2006 3 | 1,2,2006,Demetrius Williams,WR,22,9,Oregon,6-2,197,4.52,38.0,,127.0,6.84,4.08,Baltimore Ravens / 4th / 111th pick / 2006 4 | 2,3,2006,Brandon Williams,WR,22,0,Wisconsin,5-9,179,4.48,34.5,,115.0,6.87,4.07,San Francisco 49ers / 3rd / 84th pick / 2006 5 | 3,4,2006,Jeff Webb,WR,24,2,San Diego State,6-2,211,4.4,37.0,,126.0,6.81,4.08,Kansas City Chiefs / 6th / 190th pick / 2006 6 | 4,5,2006,Todd Watkins,WR,22,1,BYU,6-2,202,4.4,36.0,15.0,118.0,7.13,4.24,Arizona Cardinals / 7th / 218th pick / 2006 7 | 5,6,2006,Delanie Walker,WR,21,47,Central Missouri State,6-1,240,4.49,36.5,,118.0,,,San Francisco 49ers / 6th / 175th pick / 2006 8 | 6,7,2006,Maurice Stovall,WR,21,5,Notre Dame,6-4,217,4.57,35.0,,122.0,6.81,4.14,Tampa Bay Buccaneers / 3rd / 90th pick / 2006 9 | 7,8,2006,Brad Smith,WR,22,20,Missouri,6-2,213,4.46,39.5,,128.0,7.0,4.33,New York Jets / 4th / 103rd pick / 2006 10 | 8,9,2006,Michael Robinson,WR,23,8,Penn State,6-1,227,4.57,,,,,,San Francisco 49ers / 4th / 100th pick / 2006 11 | 9,10,2006,Willie Reid,WR,23,1,Florida State,5-10,188,4.34,37.5,,117.0,7.06,4.26,Pittsburgh Steelers / 3rd / 95th pick / 2006 12 | 10,11,2006,Ben Obomanu,WR,22,10,Auburn,6-1,205,4.45,38.0,,116.0,7.17,4.21,Seattle Seahawks / 7th / 249th pick / 2006 13 | 11,12,2006,Martin Nance,WR,22,0,Miami (OH),6-4,213,4.55,33.5,,112.0,6.91,4.08, 14 | 12,13,2006,Sinorice Moss,WR,22,4,Miami (FL),5-8,185,4.38,,,,,,New York Giants / 2nd / 44th pick / 2006 15 | 13,14,2006,Anthony Mix,WR,23,0,Auburn,6-4,235,4.48,31.5,,111.0,,, 16 | 14,15,2006,Brandon Marshall,WR,21,105,Central Florida,6-4,229,4.52,37.0,,120.0,,,Denver Broncos / 4th / 119th pick / 2006 17 | 15,16,2006,Greg Jennings,WR,22,77,West. Michigan,5-11,197,4.42,36.5,,117.0,6.68,4.16,Green Bay Packers / 2nd / 52nd pick / 2006 18 | 16,17,2006,Adam Jennings,WR,23,0,Fresno State,5-9,181,4.44,37.5,,118.0,6.88,4.12,Atlanta Falcons / 6th / 184th pick / 2006 19 | 17,18,2006,Chad Jackson,WR,21,2,Florida,6-1,213,4.32,38.5,,122.0,6.73,3.97,New England Patriots / 2nd / 36th pick / 2006 20 | 18,19,2006,Santonio Holmes,WR,22,54,Ohio State,5-11,188,4.35,,,,,,Pittsburgh Steelers / 1st / 25th pick / 2006 21 | 19,20,2006,Devin Hester,WR,23,57,Miami (FL),5-11,190,4.41,38.0,16.0,124.0,,,Chicago Bears / 2nd / 57th pick / 2006 22 | 20,21,2006,Mike Hass,WR,23,0,Oregon State,6-1,208,4.59,32.0,,116.0,6.97,4.14,New Orleans Saints / 6th / 171st pick / 2006 23 | 21,22,2006,Derek Hagan,WR,21,14,Arizona State,6-2,208,4.45,36.0,,124.0,,4.07,Miami Dolphins / 3rd / 82nd pick / 2006 24 | 22,23,2006,Skyler Green,WR,21,0,LSU,5-9,192,4.53,34.0,,118.0,,,Dallas Cowboys / 4th / 125th pick / 2006 25 | 23,24,2006,Marques Colston,WR,22,90,Hofstra,6-5,224,4.5,37.0,16.0,123.0,6.94,4.43,New Orleans Saints / 7th / 252nd pick / 2006 26 | 24,25,2006,Jason Carter,WR,23,0,Texas A&M,6-0,211,4.6,33.0,,116.0,6.89,4.21, 27 | 25,26,2006,Hank Baskett,WR,23,9,New Mexico,6-3,224,4.5,35.0,,119.0,6.79,4.17, 28 | 26,27,2006,Jason Avant,WR,22,36,Michigan,6-0,212,4.62,37.0,20.0,118.0,,,Philadelphia Eagles / 4th / 109th pick / 2006 29 | 27,28,2006,Miles Austin,WR,21,44,Monmouth (NJ),6-2,215,4.47,40.5,21.0,123.0,7.09,4.14, 30 | 28,29,2006,Devin Aromashodu,WR,21,11,Auburn,6-2,201,4.35,39.0,,120.0,7.04,4.16,Miami Dolphins / 7th / 233rd pick / 2006 31 | 29,30,2006,David Anderson,WR,22,8,Colorado State,5-10,192,4.57,34.0,,116.0,6.88,4.2,Houston Texans / 7th / 251st pick / 2006 32 | -------------------------------------------------------------------------------- /combine/combinedata/2007/QB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2007,Isaiah Stanback,QB,22,0,Washington,6-2,216,4.6,,22.0,,,,Dallas Cowboys / 4th / 103rd pick / 2007 3 | 1,2,2007,Drew Stanton,QB,22,10,Michigan State,6-3,226,4.75,30.5,,108.0,6.77,4.41,Detroit Lions / 2nd / 43rd pick / 2007 4 | 2,3,2007,Troy Smith,QB,22,6,Ohio State,6-0,225,4.72,,,,,,Baltimore Ravens / 5th / 174th pick / 2007 5 | 3,4,2007,JaMarcus Russell,QB,21,6,LSU,6-5,265,4.83,,,,,,Oakland Raiders / 1st / 1st pick / 2007 6 | 4,5,2007,Jeff Rowe,QB,22,0,Nevada,6-5,226,4.91,29.5,,114.0,7.16,4.42,Cincinnati Bengals / 5th / 151st pick / 2007 7 | 5,6,2007,Brady Quinn,QB,22,2,Notre Dame,6-4,232,4.73,,24.0,,,,Cleveland Browns / 1st / 22nd pick / 2007 8 | 6,7,2007,Jordan Palmer,QB,22,0,Texas-El Paso,6-6,231,4.98,30.5,,104.0,7.32,4.58,Washington Redskins / 6th / 205th pick / 2007 9 | 7,8,2007,Tyler Palko,QB,23,2,Pittsburgh,6-1,215,4.83,31.5,,112.0,7.05,4.36, 10 | 8,9,2007,Kevin Kolb,QB,22,13,Houston,6-3,218,4.85,32.5,,112.0,6.94,4.44,Philadelphia Eagles / 2nd / 36th pick / 2007 11 | 9,10,2007,Matt Gutierrez,QB,22,0,Idaho State,6-4,232,5.0,29.5,,108.0,6.99,4.28, 12 | 10,11,2007,Trent Edwards,QB,23,18,Stanford,6-4,231,4.76,,19.0,,7.14,4.46,Buffalo Bills / 3rd / 92nd pick / 2007 13 | 11,12,2007,John Beck,QB,25,4,BYU,6-2,215,4.75,29.5,,111.0,6.81,4.17,Miami Dolphins / 2nd / 40th pick / 2007 14 | -------------------------------------------------------------------------------- /combine/combinedata/2007/RB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2007,Selvin Young,RB,23,9,Texas,5-11,207,4.58,,,,,, 3 | 1,2,2007,DeShawn Wynn,RB,23,3,Florida,5-10,232,4.47,31.5,,115.0,,,Green Bay Packers / 7th / 228th pick / 2007 4 | 2,3,2007,Dwayne Wright,RB,23,1,Fresno State,5-11,228,4.66,34.0,14.0,115.0,7.23,4.43,Buffalo Bills / 4th / 111th pick / 2007 5 | 3,4,2007,Garrett Wolfe,RB,22,2,Northern Illinois,5-7,186,4.39,35.5,22.0,116.0,6.69,4.08,Chicago Bears / 3rd / 93rd pick / 2007 6 | 4,5,2007,Darius Walker,RB,21,3,Notre Dame,5-10,206,4.55,40.5,19.0,123.0,7.18,4.39, 7 | 5,6,2007,Kolby Smith,RB,22,4,Louisville,5-11,220,4.5,38.0,18.0,114.0,7.22,4.34,Kansas City Chiefs / 5th / 148th pick / 2007 8 | 6,7,2007,Gary Russell,RB,20,1,Minnesota,5-10,229,4.77,31.5,9.0,113.0,,4.54, 9 | 7,8,2007,Antonio Pittman,RB,21,3,Ohio State,5-11,207,4.4,35.5,16.0,123.0,6.84,4.16,New Orleans Saints / 4th / 107th pick / 2007 10 | 8,9,2007,Adrian Peterson,RB,21,121,Oklahoma,6-1,217,4.4,38.5,,127.0,7.09,4.4,Minnesota Vikings / 1st / 7th pick / 2007 11 | 9,10,2007,Marshawn Lynch,RB,20,90,California,5-11,215,4.46,35.5,20.0,125.0,7.05,4.55,Buffalo Bills / 1st / 12th pick / 2007 12 | 10,11,2007,Brian Leonard,RB,23,12,Rutgers,6-1,226,4.52,34.5,28.0,122.0,6.88,4.22,St. Louis Rams / 2nd / 52nd pick / 2007 13 | 11,12,2007,Brandon Jackson,RB,21,17,Nebraska,5-10,210,4.54,37.0,21.0,122.0,7.0,4.14,Green Bay Packers / 2nd / 63rd pick / 2007 14 | 12,13,2007,Tony Hunt,RB,21,0,Penn State,6-2,233,4.68,,24.0,,,,Philadelphia Eagles / 3rd / 90th pick / 2007 15 | 13,14,2007,Chris Henry,RB,21,1,Arizona,5-11,230,4.4,36.0,26.0,127.0,6.96,4.14,Tennessee Titans / 2nd / 50th pick / 2007 16 | 14,15,2007,Kenneth Darby,RB,24,4,Alabama,5-10,211,4.75,30.0,19.0,108.0,7.25,4.53,Tampa Bay Buccaneers / 7th / 246th pick / 2007 17 | 15,16,2007,Alonzo Coleman,RB,23,0,Kansas State,5-10,207,4.49,,27.0,120.0,,, 18 | 16,17,2007,Thomas Clayton,RB,22,0,Kansas State,5-10,218,4.63,36.5,23.0,121.0,,, 19 | 17,18,2007,Michael Bush,RB,22,26,Louisville,6-1,243,4.62,,,,,,Oakland Raiders / 4th / 100th pick / 2007 20 | 18,19,2007,Eldra Buckley,RB,21,1,Tenn-Chattanooga,5-9,202,4.56,35.5,14.0,120.0,7.71,4.43, 21 | 19,20,2007,Ahmad Bradshaw,RB,20,47,Marshall,5-9,198,4.55,34.0,,112.0,6.7,4.09,New York Giants / 7th / 250th pick / 2007 22 | 20,21,2007,Lorenzo Booker,RB,22,4,Florida State,5-10,191,4.46,35.5,26.0,121.0,,,Miami Dolphins / 3rd / 71st pick / 2007 23 | -------------------------------------------------------------------------------- /combine/combinedata/2007/TE.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2007,Matt Spaeth,TE,23,2,Minnesota,6-7,270,4.83,,,,,,Pittsburgh Steelers / 3rd / 77th pick / 2007 3 | 1,2,2007,Dante Rosario,TE,22,10,Oregon,6-3,244,4.78,36.0,20.0,115.0,6.96,4.47,Carolina Panthers / 5th / 155th pick / 2007 4 | 2,3,2007,Ben Patrick,TE,22,4,Duke,6-3,252,4.74,34.5,,111.0,7.21,4.31,Arizona Cardinals / 7th / 215th pick / 2007 5 | 3,4,2007,Greg Olsen,TE,21,74,Miami (FL),6-6,254,4.51,35.5,23.0,114.0,7.04,4.48,Chicago Bears / 1st / 31st pick / 2007 6 | 4,5,2007,Martrez Milner,TE,22,0,Georgia,6-4,252,4.79,34.0,19.0,117.0,7.35,4.49,Atlanta Falcons / 4th / 133rd pick / 2007 7 | 5,6,2007,Zach Miller,TE,21,33,Arizona State,6-4,256,4.87,34.0,,115.0,7.01,4.42,Oakland Raiders / 2nd / 38th pick / 2007 8 | 6,7,2007,Clark Harris,TE,22,13,Rutgers,6-5,261,4.8,32.0,21.0,112.0,,4.4,Green Bay Packers / 7th / 243rd pick / 2007 9 | 7,8,2007,Daniel Coats,TE,22,2,BYU,6-3,257,4.94,30.0,34.0,111.0,7.07,4.43, 10 | 8,9,2007,Scott Chandler,TE,21,20,Iowa,6-7,270,4.78,30.0,16.0,111.0,7.26,4.32,San Diego Chargers / 4th / 129th pick / 2007 11 | 9,10,2007,Kevin Boss,TE,23,17,Western Oregon,6-6,252,4.78,35.0,,116.0,6.96,4.41,New York Giants / 5th / 153rd pick / 2007 12 | -------------------------------------------------------------------------------- /combine/combinedata/2007/WR.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2007,D'Juan Woods,WR,22,0,Oklahoma State,6-0,208,4.58,36.5,,120.0,6.89,4.34, 3 | 1,2,2007,Paul Williams,WR,23,0,Fresno State,6-1,205,4.45,38.5,,125.0,7.03,4.24,Tennessee Titans / 3rd / 80th pick / 2007 4 | 2,3,2007,Mike Sims-Walker,WR,22,17,Central Florida,6-2,209,4.35,36.5,18.0,121.0,6.92,4.39,Jacksonville Jaguars / 3rd / 79th pick / 2007 5 | 3,4,2007,Courtney Taylor,WR,22,1,Auburn,6-2,204,4.5,36.0,,122.0,7.22,4.28,Seattle Seahawks / 6th / 197th pick / 2007 6 | 4,5,2007,Chansi Stuckey,WR,23,10,Clemson,5-11,197,4.56,35.0,,120.0,6.91,4.14,New York Jets / 7th / 235th pick / 2007 7 | 5,6,2007,Syndric Steptoe,WR,22,1,Arizona,5-9,194,4.59,33.0,17.0,,,,Cleveland Browns / 7th / 234th pick / 2007 8 | 6,7,2007,Steve Smith,WR,21,24,USC,6-0,197,4.44,38.0,,120.0,6.68,4.19,New York Giants / 2nd / 51st pick / 2007 9 | 7,8,2007,Ryne Robinson,WR,22,0,Miami (OH),5-9,179,4.47,35.0,,123.0,6.71,4.21,Carolina Panthers / 4th / 118th pick / 2007 10 | 8,9,2007,Laurent Robinson,WR,21,17,Illinois State,6-2,199,4.38,39.0,19.0,127.0,6.83,4.28,Atlanta Falcons / 3rd / 75th pick / 2007 11 | 9,10,2007,Sidney Rice,WR,20,36,South Carolina,6-3,200,4.51,39.5,,119.0,7.09,4.34,Minnesota Vikings / 2nd / 44th pick / 2007 12 | 10,11,2007,Legedu Naanee,WR,23,14,Boise State,6-2,225,4.41,40.0,19.0,119.0,,,San Diego Chargers / 5th / 172nd pick / 2007 13 | 11,12,2007,Robert Meachem,WR,22,29,Tennessee,6-2,214,4.39,37.5,,121.0,6.97,4.31,New Orleans Saints / 1st / 27th pick / 2007 14 | 12,13,2007,Jordan Kent,WR,22,0,Oregon,6-4,217,4.49,,,,,,Seattle Seahawks / 6th / 210th pick / 2007 15 | 13,14,2007,Onrea Jones,WR,23,0,Kansas State,5-11,202,4.42,39.0,,121.0,7.05,4.28, 16 | 14,15,2007,James Jones,WR,22,54,San Jose State,6-1,207,4.54,34.0,22.0,119.0,7.06,4.2,Green Bay Packers / 3rd / 78th pick / 2007 17 | 15,16,2007,Jacoby Jones,WR,22,34,Lane (TN),6-3,210,4.5,34.0,,129.0,7.03,4.31,Houston Texans / 3rd / 73rd pick / 2007 18 | 16,17,2007,Calvin Johnson,WR,21,93,Georgia Tech,6-5,239,4.35,,,,,,Detroit Lions / 1st / 2nd pick / 2007 19 | 17,18,2007,Dwayne Jarrett,WR,20,4,USC,6-4,219,4.62,,,,,,Carolina Panthers / 2nd / 45th pick / 2007 20 | 18,19,2007,Jonathan Holland,WR,22,1,Louisiana Tech,6-0,191,4.45,35.5,15.0,120.0,7.12,4.4,Oakland Raiders / 7th / 254th pick / 2007 21 | 19,20,2007,Jason Hill,WR,22,10,Washington State,6-0,204,4.32,37.0,,123.0,7.02,4.22,San Francisco 49ers / 3rd / 76th pick / 2007 22 | 20,21,2007,Johnnie Lee Higgins,WR,23,9,Texas-El Paso,5-11,186,4.48,36.5,,122.0,6.62,4.32,Oakland Raiders / 3rd / 99th pick / 2007 23 | 21,22,2007,Anthony Gonzalez,WR,22,16,Ohio State,6-0,193,4.44,38.0,,123.0,6.54,4.08,Indianapolis Colts / 1st / 32nd pick / 2007 24 | 22,23,2007,Ted Ginn,WR,21,65,Ohio State,5-11,178,4.38,,,,,,Miami Dolphins / 1st / 9th pick / 2007 25 | 23,24,2007,Yamon Figurs,WR,24,2,Kansas State,5-11,174,4.3,,,123.0,6.85,4.21,Baltimore Ravens / 3rd / 74th pick / 2007 26 | 24,25,2007,Chris Davis,WR,23,0,Florida State,5-10,181,4.5,35.5,,115.0,6.66,4.14,Tennessee Titans / 4th / 128th pick / 2007 27 | 25,26,2007,Buster Davis,WR,23,2,Florida State,6-1,207,4.41,,,,,,Arizona Cardinals / 3rd / 69th pick / 2007 28 | 26,27,2007,David Clowney,WR,21,3,Virginia Tech,6-0,188,4.36,32.5,,123.0,7.0,4.15,Green Bay Packers / 5th / 157th pick / 2007 29 | 27,28,2007,Steve Breaston,WR,23,28,Michigan,6-0,193,4.46,33.0,,124.0,6.9,4.29,Arizona Cardinals / 5th / 142nd pick / 2007 30 | 28,29,2007,Dwayne Bowe,WR,22,57,LSU,6-2,221,4.51,33.0,,125.0,6.81,4.35,Kansas City Chiefs / 1st / 23rd pick / 2007 31 | 29,30,2007,Dallas Baker,WR,24,0,Florida,6-3,208,4.53,36.0,,129.0,6.69,4.19,Pittsburgh Steelers / 7th / 227th pick / 2007 32 | 30,31,2007,Aundrae Allison,WR,20,3,East Carolina,6-0,198,4.39,37.0,,127.0,,,Minnesota Vikings / 5th / 146th pick / 2007 33 | -------------------------------------------------------------------------------- /combine/combinedata/2008/QB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2008,Matt Ryan,QB,22,179,Boston Col.,6-5,228,4.89,,,,7.4,4.51,Atlanta Falcons / 1st / 3rd pick / 2008 3 | 1,2,2008,Kevin O'Connell,QB,22,0,San Diego State,6-5,225,4.61,31.0,,113.0,7.01,4.38,New England Patriots / 3rd / 94th pick / 2008 4 | 2,3,2008,Josh Johnson,QB,21,6,Marshall,6-3,213,4.53,33.5,,110.0,7.56,4.42,Tampa Bay Buccaneers / 5th / 160th pick / 2008 5 | 3,4,2008,Chad Henne,QB,22,29,Michigan,6-3,230,4.92,25.5,,106.0,7.17,4.4,Miami Dolphins / 2nd / 57th pick / 2008 6 | 4,5,2008,Matt Flynn,QB,22,8,LSU,6-2,231,4.79,28.0,,109.0,7.21,4.34,Green Bay Packers / 7th / 209th pick / 2008 7 | 5,6,2008,Joe Flacco,QB,23,118,Pittsburgh,6-6,236,4.84,28.5,,110.0,6.82,4.27,Baltimore Ravens / 1st / 18th pick / 2008 8 | 6,7,2008,Dennis Dixon,QB,23,2,Oregon,6-3,195,4.58,,,,,,Pittsburgh Steelers / 5th / 156th pick / 2008 9 | 7,8,2008,Brian Brohm,QB,22,0,Louisville,6-3,230,4.81,30.0,,115.0,7.13,4.55,Green Bay Packers / 2nd / 56th pick / 2008 10 | -------------------------------------------------------------------------------- /combine/combinedata/2008/RB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2008,Chauncey Washington,RB,22,0,USC,5-11,211,4.45,,,,,,Jacksonville Jaguars / 7th / 213th pick / 2008 3 | 1,2,2008,Ryan Torain,RB,21,5,Arizona State,6-0,222,4.61,34.0,21.0,120.0,,,Denver Broncos / 5th / 139th pick / 2008 4 | 2,3,2008,Marcus Thomas,RB,23,0,Texas-El Paso,6-0,213,4.59,30.0,21.0,116.0,,,San Diego Chargers / 5th / 166th pick / 2008 5 | 3,4,2008,Jonathan Stewart,RB,20,59,Oregon,5-10,235,4.46,36.5,28.0,128.0,,,Carolina Panthers / 1st / 13th pick / 2008 6 | 4,5,2008,Kevin Smith,RB,21,20,Central Florida,6-1,217,4.53,32.0,,120.0,6.74,4.49,Detroit Lions / 3rd / 64th pick / 2008 7 | 5,6,2008,Steve Slaton,RB,22,20,West Virginia,5-9,197,4.45,33.5,19.0,118.0,,,Houston Texans / 3rd / 89th pick / 2008 8 | 6,7,2008,Chad Simpson,RB,22,3,South Florida,5-9,216,4.4,32.5,,124.0,,, 9 | 7,8,2008,Dantrell Savage,RB,23,1,Oklahoma State,5-8,187,4.53,32.5,13.0,117.0,,, 10 | 8,9,2008,Ray Rice,RB,21,70,Rutgers,5-8,199,4.42,31.5,23.0,119.0,6.65,4.2,Baltimore Ravens / 2nd / 55th pick / 2008 11 | 9,10,2008,Jalen Parmele,RB,22,1,Toledo,5-11,224,4.47,34.0,19.0,125.0,6.96,4.29,Miami Dolphins / 6th / 176th pick / 2008 12 | 10,11,2008,Xavier Omon,RB,23,0,Northwest Missouri State,5-11,228,4.52,31.0,17.0,112.0,,,Buffalo Bills / 6th / 179th pick / 2008 13 | 11,12,2008,Rashard Mendenhall,RB,20,31,Illinois,5-10,225,4.41,33.5,26.0,117.0,,4.18,Pittsburgh Steelers / 1st / 23rd pick / 2008 14 | 12,13,2008,Darren McFadden,RB,20,45,Arkansas,6-1,211,4.33,33.0,,128.0,,,Oakland Raiders / 1st / 4th pick / 2008 15 | 13,14,2008,Kregg Lumpkin,RB,23,3,Georgia,5-11,226,4.68,28.0,22.0,111.0,,, 16 | 14,15,2008,Felix Jones,RB,20,30,Arkansas,5-10,207,4.44,33.5,,124.0,6.9,4.19,Dallas Cowboys / 1st / 22nd pick / 2008 17 | 15,16,2008,Chris Johnson,RB,22,83,East Carolina,5-11,197,4.24,35.0,,130.0,,,Tennessee Titans / 1st / 24th pick / 2008 18 | 16,17,2008,Mike Hart,RB,21,3,Michigan,5-9,206,4.69,28.0,23.0,110.0,,,Indianapolis Colts / 6th / 202nd pick / 2008 19 | 17,18,2008,BenJarvus Green-Ellis,RB,22,34,Mississippi,5-11,219,4.6,30.5,24.0,114.0,,, 20 | 18,19,2008,Matt Forte,RB,22,100,Tulane,6-1,217,4.44,33.0,23.0,118.0,6.84,4.23,Chicago Bears / 2nd / 44th pick / 2008 21 | 19,20,2008,Justin Forsett,RB,22,35,California,5-8,194,4.62,26.5,26.0,112.0,6.96,,Seattle Seahawks / 7th / 233rd pick / 2008 22 | 20,21,2008,Tashard Choice,RB,23,14,Georgia Tech,5-10,215,4.48,34.0,20.0,119.0,6.88,,Dallas Cowboys / 4th / 122nd pick / 2008 23 | 21,22,2008,Jamaal Charles,RB,21,72,Texas,5-11,200,4.38,30.5,,122.0,6.8,4.22,Kansas City Chiefs / 3rd / 73rd pick / 2008 24 | 22,23,2008,Cory Boyd,RB,22,0,South Carolina,6-0,213,4.52,33.5,25.0,118.0,6.97,4.24,Tampa Bay Buccaneers / 7th / 238th pick / 2008 25 | -------------------------------------------------------------------------------- /combine/combinedata/2008/TE.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2008,Jacob Tamme,TE,22,22,Kentucky,6-3,236,4.58,30.0,18,109.0,6.99,4.27,Indianapolis Colts / 4th / 127th pick / 2008 3 | 1,2,2008,Darrell Strong,TE,21,0,Pittsburgh,6-4,268,4.78,25.0,17,110.0,6.86,4.36, 4 | 2,3,2008,Craig Stevens,TE,23,5,California,6-3,254,4.59,27.5,27,114.0,7.07,4.31,Tennessee Titans / 3rd / 85th pick / 2008 5 | 3,4,2008,Tom Santi,TE,22,2,Virginia,6-3,250,4.8,36.0,14,121.0,7.08,4.27,Indianapolis Colts / 6th / 196th pick / 2008 6 | 4,5,2008,Martin Rucker,TE,22,0,Missouri,6-5,251,4.75,,20,,,,Cleveland Browns / 4th / 111th pick / 2008 7 | 5,6,2008,Evan Moore,TE,23,5,Stanford,6-6,233,4.74,27.0,16,110.0,7.08,4.43, 8 | 6,7,2008,Dustin Keller,TE,23,24,Purdue,6-2,242,4.53,38.0,26,131.0,6.88,4.14,New York Jets / 1st / 30th pick / 2008 9 | 7,8,2008,Joey Haynos,TE,23,1,Maryland,6-8,259,4.87,30.5,17,123.0,6.92,4.42, 10 | 8,9,2008,Jermichael Finley,TE,20,29,Texas,6-4,243,4.82,27.5,20,117.0,7.15,4.38,Green Bay Packers / 3rd / 91st pick / 2008 11 | 9,10,2008,Derek Fine,TE,24,2,Kansas,6-3,251,4.83,29.0,24,115.0,6.8,4.19,Buffalo Bills / 4th / 132nd pick / 2008 12 | 10,11,2008,Kellen Davis,TE,22,5,Michigan State,6-6,262,4.59,28.0,22,118.0,7.25,4.38,Chicago Bears / 5th / 158th pick / 2008 13 | 11,12,2008,Fred Davis,TE,22,15,USC,6-3,255,4.68,,24,,,,Washington Redskins / 2nd / 48th pick / 2008 14 | 12,13,2008,Brad Cottam,TE,23,2,Tennessee,6-7,270,4.63,33.0,24,,,,Kansas City Chiefs / 3rd / 76th pick / 2008 15 | 13,14,2008,John Carlson,TE,23,17,Notre Dame,6-5,251,4.88,30.5,20,113.0,7.12,4.28,Seattle Seahawks / 2nd / 38th pick / 2008 16 | 14,15,2008,Martellus Bennett,TE,20,41,Texas A&M,6-6,259,4.68,34.0,18,118.0,7.64,4.53,Dallas Cowboys / 2nd / 61st pick / 2008 17 | 15,16,2008,Gary Barnidge,TE,22,16,Louisville,6-6,243,4.61,31.0,22,117.0,6.92,4.23,Carolina Panthers / 5th / 141st pick / 2008 18 | -------------------------------------------------------------------------------- /combine/combinedata/2008/WR.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2008,Devin Thomas,WR,21,4,Michigan State,6-2,216,4.41,28.0,,126.0,7.15,4.26,Washington Redskins / 2nd / 34th pick / 2008 3 | 1,2,2008,Limas Sweed,WR,23,1,Texas,6-4,215,4.48,35.0,,,,,Pittsburgh Steelers / 2nd / 53rd pick / 2008 4 | 2,3,2008,Taj Smith,WR,24,0,Syracuse,6-0,187,4.59,35.0,,119.0,7.15,4.5, 5 | 3,4,2008,Marcus Smith,WR,23,0,New Mexico,6-1,221,4.51,26.5,20.0,111.0,7.1,4.42,Baltimore Ravens / 4th / 106th pick / 2008 6 | 4,5,2008,Jerome Simpson,WR,22,18,Coastal Carolina,6-2,199,4.42,37.5,,136.0,7.08,4.52,Cincinnati Bengals / 2nd / 46th pick / 2008 7 | 5,6,2008,Eddie Royal,WR,21,40,Virginia Tech,5-10,184,4.39,36.0,24.0,124.0,7.07,4.34,Denver Broncos / 2nd / 42nd pick / 2008 8 | 6,7,2008,Kevin Robinson,WR,23,0,Utah State,5-11,202,4.69,27.5,,115.0,7.31,4.77,Kansas City Chiefs / 6th / 182nd pick / 2008 9 | 7,8,2008,Darius Reynaud,WR,23,3,West Virginia,5-9,201,4.48,34.5,20.0,130.0,6.88,4.32, 10 | 8,9,2008,Maurice Purify,WR,22,0,Nebraska,6-3,224,4.5,28.5,,117.0,6.95,4.29, 11 | 9,10,2008,Jordy Nelson,WR,22,85,Kansas State,6-3,217,4.51,31.0,,123.0,7.03,4.35,Green Bay Packers / 2nd / 36th pick / 2008 12 | 10,11,2008,Josh Morgan,WR,22,23,Virginia Tech,6-0,219,4.46,,,,,,San Francisco 49ers / 6th / 174th pick / 2008 13 | 11,12,2008,Kenneth Moore,WR,23,1,Wake Forest,5-11,195,4.47,28.0,,120.0,7.09,4.3,Detroit Lions / 5th / 136th pick / 2008 14 | 12,13,2008,Mario Manningham,WR,21,25,Michigan,6-0,181,4.59,32.0,16.0,117.0,7.34,4.27,New York Giants / 3rd / 95th pick / 2008 15 | 13,14,2008,Malcolm Kelly,WR,21,3,Oklahoma,6-4,224,4.68,,,,,,Washington Redskins / 2nd / 51st pick / 2008 16 | 14,15,2008,Jaymar Johnson,WR,23,0,Jackson State,5-11,177,4.5,32.0,14.0,118.0,6.75,4.18,Minnesota Vikings / 6th / 193rd pick / 2008 17 | 15,16,2008,Darnell Jenkins,WR,25,0,Miami (FL),5-9,187,4.52,26.5,13.0,115.0,7.33,4.37, 18 | 16,17,2008,Dexter Jackson,WR,21,0,Appalachian State,5-9,182,4.33,29.5,,122.0,6.81,4.38,Tampa Bay Buccaneers / 2nd / 58th pick / 2008 19 | 17,18,2008,DeSean Jackson,WR,21,91,California,5-10,169,4.35,,,120.0,,,Philadelphia Eagles / 2nd / 49th pick / 2008 20 | 18,19,2008,Paul Hubbard,WR,22,0,Wisconsin,6-3,221,4.49,29.5,15.0,126.0,,,Cleveland Browns / 6th / 191st pick / 2008 21 | 19,20,2008,Lavelle Hawkins,WR,21,7,California,5-11,187,4.57,,14.0,117.0,,,Tennessee Titans / 4th / 126th pick / 2008 22 | 20,21,2008,Justin Harper,WR,23,0,Virginia Tech,6-3,213,4.56,28.5,,120.0,7.03,4.43,Baltimore Ravens / 7th / 215th pick / 2008 23 | 21,22,2008,James Hardy,WR,22,1,Indiana,6-5,217,4.45,31.5,18.0,125.0,6.84,4.2,Buffalo Bills / 2nd / 41st pick / 2008 24 | 22,23,2008,Pierre Garcon,WR,21,66,Mount Union,6-0,210,4.42,36.5,20.0,125.0,6.9,4.19,Indianapolis Colts / 6th / 205th pick / 2008 25 | 23,24,2008,Will Franklin,WR,22,1,Missouri,6-0,214,4.37,34.5,,,,,Kansas City Chiefs / 4th / 105th pick / 2008 26 | 24,25,2008,Harry Douglas,WR,23,36,Louisville,5-11,176,4.51,31.0,,120.0,6.57,4.12,Atlanta Falcons / 3rd / 84th pick / 2008 27 | 25,26,2008,Early Doucet,WR,22,11,LSU,6-0,209,4.59,,,,,,Arizona Cardinals / 3rd / 81st pick / 2008 28 | 26,27,2008,Andre Caldwell,WR,22,13,Florida,6-0,204,4.35,33.0,,124.0,6.75,4.11,Cincinnati Bengals / 3rd / 97th pick / 2008 29 | 27,28,2008,Keenan Burton,WR,23,3,Kentucky,6-0,201,4.44,38.5,10.0,125.0,6.77,4.2,St. Louis Rams / 4th / 128th pick / 2008 30 | 28,29,2008,Davone Bess,WR,22,30,Hawaii,5-10,194,4.64,31.5,12.0,118.0,6.97,4.27, 31 | 29,30,2008,Earl Bennett,WR,20,20,Vanderbilt,5-11,209,4.48,26.0,15.0,110.0,7.15,4.22,Chicago Bears / 3rd / 70th pick / 2008 32 | 30,31,2008,Donnie Avery,WR,23,23,Houston,5-11,192,4.43,,16.0,,,,St. Louis Rams / 2nd / 33rd pick / 2008 33 | 31,32,2008,Adrian Arrington,WR,22,1,Michigan,6-3,203,4.55,,,,,,New Orleans Saints / 7th / 237th pick / 2008 34 | 32,33,2008,Danny Amendola,WR,22,47,Texas Tech,5-10,183,4.58,27.5,13.0,103.0,6.81,4.25, 35 | -------------------------------------------------------------------------------- /combine/combinedata/2009/QB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2009,John Parker Wilson,QB,23,0,Alabama,6-1,219,4.75,29.5,,105.0,7.53,4.59, 3 | 1,2,2009,Pat White,QB,23,1,West Virginia,6-0,197,4.55,35.0,,117.0,7.06,4.42,Miami Dolphins / 2nd / 44th pick / 2009 4 | 2,3,2009,Matthew Stafford,QB,21,118,Georgia,6-2,225,4.81,30.5,,107.0,7.06,4.47,Detroit Lions / 1st / 1st pick / 2009 5 | 3,4,2009,Mark Sanchez,QB,22,38,USC,6-2,227,4.93,32.5,,116.0,7.06,4.21,New York Jets / 1st / 5th pick / 2009 6 | 4,5,2009,Curtis Painter,QB,23,2,Purdue,6-3,225,4.87,29.0,,102.0,7.0,4.48,Indianapolis Colts / 6th / 201st pick / 2009 7 | 5,6,2009,Stephen McGee,QB,23,2,Texas A&M,6-3,225,4.61,33.0,,112.0,7.34,4.49,Dallas Cowboys / 4th / 101st pick / 2009 8 | 6,7,2009,Brian Hoyer,QB,23,25,Michigan State,6-2,215,5.02,32.0,,109.0,7.1,4.42, 9 | 7,8,2009,Graham Harrell,QB,23,0,Texas Tech,6-2,223,4.95,29.5,,98.0,7.45,4.56, 10 | 8,9,2009,Josh Freeman,QB,21,41,Kansas State,6-6,248,4.9,33.5,,119.0,7.11,4.43,Tampa Bay Buccaneers / 1st / 17th pick / 2009 11 | 9,10,2009,Chase Daniel,QB,22,5,Missouri,6-0,218,4.79,33.0,,,7.28,4.31, 12 | 10,11,2009,Rudy Carpenter,QB,22,0,Arizona State,6-2,218,4.89,29.0,11.0,100.0,7.25,4.47, 13 | 11,12,2009,Tom Brandstater,QB,24,0,Fresno State,6-5,220,4.87,28.5,,106.0,6.93,4.37,Denver Broncos / 6th / 174th pick / 2009 14 | -------------------------------------------------------------------------------- /combine/combinedata/2009/RB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2009,Javarris Williams,RB,22,0,Tennessee State,5-9,223,4.51,33.5,25.0,116.0,,,Kansas City Chiefs / 7th / 212th pick / 2009 3 | 1,2,2009,Beanie Wells,RB,20,15,Ohio State,6-1,235,4.38,33.5,25.0,128.0,,,Arizona Cardinals / 1st / 31st pick / 2009 4 | 2,3,2009,Tyrell Sutton,RB,22,2,Northwestern,5-8,211,4.64,33.0,,114.0,6.94,4.32, 5 | 3,4,2009,Kory Sheets,RB,23,0,Purdue,5-11,208,4.39,37.0,15.0,121.0,7.18,4.39, 6 | 4,5,2009,Bernard Scott,RB,25,9,Abilene Christian,5-10,200,4.44,36.0,21.0,125.0,6.82,4.08,Cincinnati Bengals / 6th / 209th pick / 2009 7 | 5,6,2009,Javon Ringer,RB,22,4,Michigan State,5-9,205,4.5,34.0,23.0,115.0,6.87,4.11,Tennessee Titans / 5th / 173rd pick / 2009 8 | 6,7,2009,Cedric Peerman,RB,22,4,Virginia,5-9,216,4.34,40.0,27.0,117.0,6.99,4.29,Baltimore Ravens / 6th / 185th pick / 2009 9 | 7,8,2009,Chris Ogbonnaya,RB,22,8,Texas,6-0,220,4.57,35.0,19.0,111.0,6.85,4.29,St. Louis Rams / 7th / 211th pick / 2009 10 | 8,9,2009,Knowshon Moreno,RB,21,35,Georgia,5-11,217,4.5,35.5,25.0,115.0,6.84,4.27,Denver Broncos / 1st / 12th pick / 2009 11 | 9,10,2009,LeSean McCoy,RB,20,104,Pittsburgh,5-10,198,4.5,,,,,,Philadelphia Eagles / 2nd / 53rd pick / 2009 12 | 10,11,2009,Jeremiah Johnson,RB,22,1,Oregon,5-9,209,4.57,35.0,20.0,115.0,,, 13 | 11,12,2009,Gartrell Johnson,RB,22,0,Colorado State,5-10,219,4.67,34.0,20.0,114.0,,,San Diego Chargers / 4th / 134th pick / 2009 14 | 12,13,2009,Rashad Jennings,RB,23,35,Liberty,6-1,231,4.52,34.0,29.0,120.0,6.86,4.2,Jacksonville Jaguars / 7th / 250th pick / 2009 15 | 13,14,2009,Shonn Greene,RB,23,25,Iowa,5-10,227,4.55,37.0,19.0,121.0,7.1,4.4,New York Jets / 3rd / 65th pick / 2009 16 | 14,15,2009,Mike Goodson,RB,21,7,Texas A&M,6-0,208,4.43,39.5,14.0,118.0,6.89,4.22,Carolina Panthers / 4th / 111th pick / 2009 17 | 15,16,2009,Arian Foster,RB,22,63,Tennessee,6-1,226,4.69,,23.0,,,, 18 | 16,17,2009,James Davis,RB,23,1,Clemson,5-11,218,4.45,32.0,17.0,109.0,7.15,4.37,Cleveland Browns / 6th / 195th pick / 2009 19 | 17,18,2009,Glen Coffee,RB,21,2,Alabama,6-0,209,4.5,36.0,24.0,121.0,7.35,4.51,San Francisco 49ers / 3rd / 74th pick / 2009 20 | 18,19,2009,Donald Brown,RB,21,28,Connecticut,5-10,210,4.46,41.5,,125.0,6.93,4.1,Indianapolis Colts / 1st / 27th pick / 2009 21 | 19,20,2009,Andre Brown,RB,22,7,North Carolina State,6-0,224,4.37,37.0,24.0,115.0,7.35,4.33,New York Giants / 4th / 129th pick / 2009 22 | 20,21,2009,Kahlil Bell,RB,22,5,UCLA,5-11,212,4.74,34.5,15.0,114.0,6.87,4.2, 23 | -------------------------------------------------------------------------------- /combine/combinedata/2009/TE.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2009,Kory Sperry,TE,23,1,Colorado State,6-5,238,4.69,33.5,20.0,122.0,7.0,4.24, 3 | 1,2,2009,Richard Quinn,TE,22,0,North Carolina,6-4,264,4.88,32.5,24.0,119.0,7.5,4.62,Denver Broncos / 2nd / 64th pick / 2009 4 | 2,3,2009,John Phillips,TE,21,2,Virginia,6-5,251,4.78,33.5,20.0,112.0,6.84,4.27,Dallas Cowboys / 6th / 208th pick / 2009 5 | 3,4,2009,Brandon Pettigrew,TE,24,24,Oklahoma State,6-5,263,4.8,33.0,22.0,118.0,7.12,4.37,Detroit Lions / 1st / 20th pick / 2009 6 | 4,5,2009,Bear Pascoe,TE,23,3,Fresno State,6-5,251,4.89,26.5,,107.0,7.65,4.55,San Francisco 49ers / 6th / 184th pick / 2009 7 | 5,6,2009,Shawn Nelson,TE,23,1,Southern Miss,6-5,240,4.52,33.0,19.0,115.0,6.96,4.46,Buffalo Bills / 4th / 121st pick / 2009 8 | 6,7,2009,Cameron Morrah,TE,21,2,California,6-3,244,4.61,32.5,24.0,115.0,6.99,4.36,Seattle Seahawks / 7th / 248th pick / 2009 9 | 7,8,2009,Anthony Hill,TE,24,0,North Carolina State,6-5,262,4.84,30.5,21.0,107.0,7.31,4.56,Houston Texans / 4th / 122nd pick / 2009 10 | 8,9,2009,Dan Gronkowski,TE,24,1,Maryland,6-5,255,4.79,33.0,26.0,122.0,6.92,4.26,Detroit Lions / 7th / 255th pick / 2009 11 | 9,10,2009,Jared Cook,TE,21,54,South Carolina,6-5,246,4.49,41.0,23.0,123.0,,,Tennessee Titans / 3rd / 89th pick / 2009 12 | 10,11,2009,Chase Coffman,TE,22,0,Missouri,6-6,244,4.83,,,,,,Cincinnati Bengals / 3rd / 98th pick / 2009 13 | 11,12,2009,Travis Beckum,TE,22,2,Wisconsin,6-3,243,4.61,,28.0,,,,New York Giants / 3rd / 100th pick / 2009 14 | -------------------------------------------------------------------------------- /combine/combinedata/2009/WR.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2009,Derrick Williams,WR,22,0,Penn State,5-11,194,4.47,33.0,15.0,,,,Detroit Lions / 3rd / 82nd pick / 2009 3 | 1,2,2009,Mike Wallace,WR,22,69,Mississippi,6-0,199,4.33,40.0,14.0,129.0,6.9,4.27,Pittsburgh Steelers / 3rd / 84th pick / 2009 4 | 2,3,2009,Tiquan Underwood,WR,22,9,Rutgers,6-1,184,4.31,41.5,7.0,129.0,6.62,4.11,Jacksonville Jaguars / 7th / 253rd pick / 2009 5 | 3,4,2009,Patrick Turner,WR,21,1,USC,6-5,223,4.59,,,,,,Miami Dolphins / 3rd / 87th pick / 2009 6 | 4,5,2009,Mike Thomas,WR,21,22,Arizona,5-8,195,4.3,40.5,,126.0,6.65,4.28,Jacksonville Jaguars / 4th / 107th pick / 2009 7 | 5,6,2009,Brandon Tate,WR,21,17,North Carolina,6-0,183,4.52,,,,,,New England Patriots / 3rd / 83rd pick / 2009 8 | 6,7,2009,Sammie Stroughter,WR,23,5,Oregon State,5-9,189,4.45,30.0,13.0,110.0,7.03,4.28,Tampa Bay Buccaneers / 7th / 233rd pick / 2009 9 | 7,8,2009,Brian Robiskie,WR,21,3,Ohio State,6-3,209,4.46,37.5,,,6.72,4.19,Cleveland Browns / 2nd / 36th pick / 2009 10 | 8,9,2009,Greg Orton,WR,22,0,Purdue,6-3,207,4.61,38.0,22.0,125.0,6.9,4.33, 11 | 9,10,2009,Kevin Ogletree,WR,21,8,Virginia,6-0,196,4.36,36.0,,122.0,6.67,4.08, 12 | 10,11,2009,Jordan Norwood,WR,22,6,Penn State,5-11,179,4.58,38.0,,119.0,6.8,4.2, 13 | 11,12,2009,Hakeem Nicks,WR,21,44,North Carolina,6-1,212,4.51,36.0,,,,,New York Giants / 1st / 29th pick / 2009 14 | 12,13,2009,Louis Murphy,WR,21,20,Florida,6-2,203,4.32,,12.0,,,,Oakland Raiders / 4th / 124th pick / 2009 15 | 13,14,2009,Marko Mitchell,WR,23,0,Nevada,6-4,218,4.43,32.0,9.0,116.0,7.04,4.33,Washington Redskins / 7th / 243rd pick / 2009 16 | 14,15,2009,Kenny McKinley,WR,22,0,South Carolina,6-0,189,4.37,37.0,,113.0,6.96,4.1,Denver Broncos / 5th / 141st pick / 2009 17 | 15,16,2009,Mohamed Massaquoi,WR,22,13,Georgia,6-1,210,4.51,36.5,,127.0,,,Cleveland Browns / 2nd / 50th pick / 2009 18 | 16,17,2009,Jeremy Maclin,WR,20,59,Missouri,6-0,198,4.43,,,,,,Philadelphia Eagles / 1st / 19th pick / 2009 19 | 17,18,2009,Quinten Lawrence,WR,24,0,McNeese State,6-0,184,4.4,,20.0,,,,Kansas City Chiefs / 6th / 175th pick / 2009 20 | 18,19,2009,Johnny Knox,WR,22,20,Abilene Christian,5-11,185,4.34,35.0,,122.0,6.81,4.15,Chicago Bears / 5th / 140th pick / 2009 21 | 19,20,2009,Manuel Johnson,WR,22,0,Oklahoma,5-11,189,4.5,,,,,,Dallas Cowboys / 7th / 229th pick / 2009 22 | 20,21,2009,Juaquin Iglesias,WR,21,0,Oklahoma,6-1,210,4.44,34.5,,116.0,,4.4,Chicago Bears / 3rd / 99th pick / 2009 23 | 21,22,2009,Darrius Heyward-Bey,WR,22,25,Maryland,6-2,210,4.3,38.5,16.0,126.0,6.8,4.18,Oakland Raiders / 1st / 7th pick / 2009 24 | 22,23,2009,Percy Harvin,WR,20,48,Florida,5-11,192,4.39,,19.0,,,,Minnesota Vikings / 1st / 22nd pick / 2009 25 | 23,24,2009,Brian Hartline,WR,22,36,Ohio State,6-2,195,4.49,34.5,,120.0,6.65,4.12,Miami Dolphins / 4th / 108th pick / 2009 26 | 24,25,2009,Brandon Gibson,WR,21,19,Washington State,6-0,210,4.59,,,,,,Philadelphia Eagles / 6th / 194th pick / 2009 27 | 25,26,2009,Dominique Edison,WR,22,0,Stephen F. Austin,6-2,204,4.42,37.0,,120.0,,4.18,Tennessee Titans / 6th / 206th pick / 2009 28 | 26,27,2009,Jarett Dillard,WR,23,3,Rice,5-10,191,4.5,42.5,13.0,129.0,7.1,4.41,Jacksonville Jaguars / 5th / 144th pick / 2009 29 | 27,28,2009,Michael Crabtree,WR,21,65,Texas Tech,6-1,215,4.54,,,,,,San Francisco 49ers / 1st / 10th pick / 2009 30 | 28,29,2009,Quan Cosby,WR,26,0,Texas,5-9,196,4.5,,,,7.28,4.47, 31 | 29,30,2009,Austin Collie,WR,23,19,BYU,6-1,200,4.53,34.0,17.0,120.0,6.78,4.24,Indianapolis Colts / 4th / 127th pick / 2009 32 | 30,31,2009,Deon Butler,WR,23,4,Penn State,5-10,182,4.31,34.5,12.0,118.0,7.01,4.48,Seattle Seahawks / 3rd / 91st pick / 2009 33 | 31,32,2009,Kenny Britt,WR,20,40,Rutgers,6-3,218,4.47,37.0,23.0,124.0,,4.47,Tennessee Titans / 1st / 30th pick / 2009 34 | 32,33,2009,Ramses Barden,WR,23,4,Cal Poly,6-6,229,4.51,33.5,17.0,118.0,,4.26,New York Giants / 3rd / 85th pick / 2009 35 | -------------------------------------------------------------------------------- /combine/combinedata/2010/QB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2010,Tim Tebow,QB,22,12,Florida,6-3,236,4.71,38.5,,115.0,6.66,4.17,Denver Broncos / 1st / 25th pick / 2010 3 | 1,2,2010,John Skelton,QB,21,4,Fordham,6-5,243,4.85,33.5,,108.0,7.17,4.33,Arizona Cardinals / 5th / 155th pick / 2010 4 | 2,3,2010,Zac Robinson,QB,23,0,Oklahoma State,6-2,214,4.68,35.0,,110.0,7.24,4.4,New England Patriots / 7th / 250th pick / 2010 5 | 3,4,2010,Tony Pike,QB,23,0,Cincinnati,6-6,223,4.9,28.5,,108.0,7.06,4.53,Carolina Panthers / 6th / 204th pick / 2010 6 | 4,5,2010,Colt McCoy,QB,23,14,Texas,6-1,216,4.79,,,114.0,,,Cleveland Browns / 3rd / 85th pick / 2010 7 | 5,6,2010,Thaddeus Lewis,QB,25,4,Duke,6-0,215,4.84,28.0,,107.0,,, 8 | 6,7,2010,Mike Kafka,QB,22,0,Northwestern,6-3,225,4.93,32.0,,110.0,6.96,4.37,Philadelphia Eagles / 4th / 122nd pick / 2010 9 | 7,8,2010,Max Hall,QB,24,1,BYU,6-1,209,4.84,32.0,,102.0,7.07,4.35, 10 | 8,9,2010,Jimmy Clausen,QB,22,3,Notre Dame,6-3,222,4.76,,,,,,Carolina Panthers / 2nd / 48th pick / 2010 11 | 9,10,2010,Levi Brown,QB,22,0,Troy,6-3,229,4.93,31.5,20.0,106.0,7.07,4.43,Buffalo Bills / 7th / 209th pick / 2010 12 | 10,11,2010,Sam Bradford,QB,22,49,Oklahoma,6-4,236,4.79,,,,,,St. Louis Rams / 1st / 1st pick / 2010 13 | -------------------------------------------------------------------------------- /combine/combinedata/2010/RB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2010,Keiland Williams,RB,23,5,LSU,5-11,233,4.52,,,,,, 3 | 1,2,2010,Keith Toston,RB,22,2,Oklahoma State,6-0,213,4.66,32.0,22.0,110.0,,4.67, 4 | 2,3,2010,Ben Tate,RB,21,15,Auburn,5-11,220,4.34,40.5,26.0,124.0,6.91,4.12,Houston Texans / 2nd / 58th pick / 2010 5 | 3,4,2010,James Starks,RB,24,30,Buffalo,6-2,218,4.5,36.0,15.0,119.0,6.89,4.23,Green Bay Packers / 6th / 193rd pick / 2010 6 | 4,5,2010,C.J. Spiller,RB,22,37,Clemson,5-11,196,4.37,,18.0,,,,Buffalo Bills / 1st / 9th pick / 2010 7 | 5,6,2010,Lonyae Miller,RB,21,0,Fresno State,5-11,221,4.43,36.5,26.0,120.0,7.2,4.54, 8 | 6,7,2010,Joe McKnight,RB,21,7,USC,5-11,198,4.4,36.5,18.0,120.0,,,New York Jets / 4th / 112th pick / 2010 9 | 7,8,2010,Ryan Mathews,RB,22,48,Fresno State,6-0,218,4.37,36.0,19.0,121.0,7.0,4.33,San Diego Chargers / 1st / 12th pick / 2010 10 | 8,9,2010,Javarris James,RB,22,1,Miami (FL),6-0,212,4.58,36.0,21.0,115.0,,, 11 | 9,10,2010,Brandon James,RB,22,0,Florida,5-6,176,4.47,,14.0,,,, 12 | 10,11,2010,Montario Hardesty,RB,23,4,Tennessee,6-0,225,4.49,41.0,21.0,124.0,6.87,4.14,Cleveland Browns / 2nd / 59th pick / 2010 13 | 11,12,2010,Toby Gerhart,RB,22,17,Stanford,6-0,231,4.5,38.0,22.0,118.0,6.94,4.25,Minnesota Vikings / 2nd / 51st pick / 2010 14 | 12,13,2010,Jonathan Dwyer,RB,20,8,Georgia Tech,5-11,229,4.64,33.0,15.0,107.0,7.56,4.67,Pittsburgh Steelers / 6th / 188th pick / 2010 15 | 13,14,2010,Anthony Dixon,RB,22,8,Mississippi State,6-1,233,4.67,33.0,15.0,121.0,7.09,4.49,San Francisco 49ers / 6th / 173rd pick / 2010 16 | 14,15,2010,LeGarrette Blount,RB,23,46,Oregon,6-0,241,4.7,35.0,18.0,117.0,6.85,4.49, 17 | 15,16,2010,Jahvid Best,RB,21,13,California,5-10,199,4.34,32.5,18.0,113.0,6.75,4.17,Detroit Lions / 1st / 30th pick / 2010 18 | 16,17,2010,Joique Bell,RB,23,26,Wayne State (MI),5-11,220,4.68,36.5,,120.0,6.84,4.17, 19 | -------------------------------------------------------------------------------- /combine/combinedata/2010/TE.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2010,Andrew Quarless,TE,21,9,Penn State,6-4,254,4.68,32.0,23.0,112.0,,,Green Bay Packers / 5th / 154th pick / 2010 3 | 1,2,2010,Dennis Pitta,TE,24,17,BYU,6-4,245,4.68,34.0,27.0,113.0,6.72,4.17,Baltimore Ravens / 4th / 114th pick / 2010 4 | 2,3,2010,Tony Moeaki,TE,22,10,Iowa,6-3,245,4.69,34.0,18.0,113.0,7.1,4.42,Kansas City Chiefs / 3rd / 93rd pick / 2010 5 | 3,4,2010,Anthony McCoy,TE,22,4,USC,6-4,259,4.71,35.5,19.0,113.0,6.99,4.57,Seattle Seahawks / 6th / 185th pick / 2010 6 | 4,5,2010,Jeron Mastrud,TE,22,1,Kansas State,6-5,256,4.82,,,,,, 7 | 5,6,2010,Michael Hoomanawanui,TE,21,5,Illinois,6-4,264,4.77,,25.0,,,,St. Louis Rams / 5th / 132nd pick / 2010 8 | 6,7,2010,Aaron Hernandez,TE,20,23,Florida,6-2,245,4.64,,,,,,New England Patriots / 4th / 113th pick / 2010 9 | 7,8,2010,Rob Gronkowski,TE,20,82,Arizona,6-6,264,4.68,,23.0,,,,New England Patriots / 2nd / 42nd pick / 2010 10 | 8,9,2010,Jermaine Gresham,TE,21,32,Oklahoma,6-5,261,4.66,35.0,20.0,113.0,7.07,4.53,Cincinnati Bengals / 1st / 21st pick / 2010 11 | 9,10,2010,Jimmy Graham,TE,23,70,Miami (FL),6-6,260,4.53,38.5,,120.0,6.9,4.45,New Orleans Saints / 3rd / 95th pick / 2010 12 | 10,11,2010,Garrett Graham,TE,23,7,Wisconsin,6-3,243,4.71,34.5,20.0,112.0,7.09,4.35,Houston Texans / 4th / 118th pick / 2010 13 | 11,12,2010,Dedrick Epps,TE,21,0,Miami (FL),6-3,250,4.7,,19.0,,,,San Diego Chargers / 7th / 235th pick / 2010 14 | 12,13,2010,Brody Eldridge,TE,22,0,Oklahoma,6-5,261,4.72,31.5,,,,,Indianapolis Colts / 5th / 162nd pick / 2010 15 | 13,14,2010,Jim Dray,TE,23,4,Stanford,6-5,246,4.82,,17.0,,,,Arizona Cardinals / 7th / 233rd pick / 2010 16 | 14,15,2010,Ed Dickson,TE,22,18,Oregon,6-4,249,4.59,34.0,23.0,115.0,7.32,4.59,Baltimore Ravens / 3rd / 70th pick / 2010 17 | 15,16,2010,Dorin Dickerson,TE,21,1,Pittsburgh,6-1,226,4.4,43.5,24.0,125.0,6.96,4.3,Houston Texans / 7th / 227th pick / 2010 18 | 16,17,2010,Nate Byham,TE,21,0,Pittsburgh,6-4,268,4.97,29.0,,109.0,,,San Francisco 49ers / 6th / 182nd pick / 2010 19 | -------------------------------------------------------------------------------- /combine/combinedata/2010/WR.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2010,Stephen Williams,WR,23,1,Toledo,6-4,210,4.5,36.5,15.0,125.0,6.81,4.11, 3 | 1,2,2010,Mike Williams,WR,22,27,Syracuse,6-1,221,4.53,33.5,8.0,116.0,6.9,4.31,Tampa Bay Buccaneers / 4th / 101st pick / 2010 4 | 2,3,2010,Kyle Williams,WR,21,6,Arizona State,5-10,188,4.4,33.0,11.0,118.0,7.0,4.19,San Francisco 49ers / 6th / 206th pick / 2010 5 | 3,4,2010,Damian Williams,WR,21,10,USC,6-1,197,4.52,38.0,19.0,118.0,6.79,4.24,Tennessee Titans / 3rd / 77th pick / 2010 6 | 4,5,2010,Blair White,WR,23,3,Michigan State,6-2,209,4.49,33.5,18.0,115.0,6.69,4.03, 7 | 5,6,2010,Chastin West,WR,22,1,Fresno State,6-0,212,4.59,33.5,15.0,113.0,,, 8 | 6,7,2010,Verran Tucker,WR,21,1,California,6-2,200,4.65,,,,,, 9 | 7,8,2010,Demaryius Thomas,WR,22,81,Georgia Tech,6-3,224,4.52,,,,,,Denver Broncos / 1st / 22nd pick / 2010 10 | 8,9,2010,Golden Tate,WR,21,69,Notre Dame,5-10,199,4.42,35.0,17.0,120.0,7.12,4.34,Seattle Seahawks / 2nd / 60th pick / 2010 11 | 9,10,2010,Jordan Shipley,WR,24,7,Texas,5-11,193,4.6,36.5,16.0,116.0,,,Cincinnati Bengals / 3rd / 84th pick / 2010 12 | 10,11,2010,Emmanuel Sanders,WR,22,66,SMU,5-11,186,4.4,39.5,12.0,126.0,6.64,4.1,Pittsburgh Steelers / 3rd / 82nd pick / 2010 13 | 11,12,2010,Andre Roberts,WR,22,27,Citadel,5-11,195,4.4,36.0,15.0,120.0,6.77,4.15,Arizona Cardinals / 3rd / 88th pick / 2010 14 | 12,13,2010,David Reed,WR,22,2,Utah,6-0,191,4.56,37.0,15.0,114.0,6.95,4.38,Baltimore Ravens / 5th / 156th pick / 2010 15 | 13,14,2010,Taylor Price,WR,22,1,Ohio,6-0,204,4.4,37.0,16.0,114.0,6.82,4.34,New England Patriots / 3rd / 90th pick / 2010 16 | 14,15,2010,Preston Parker,WR,23,7,Florida State,5-11,199,4.59,35.0,16.0,117.0,,4.16, 17 | 15,16,2010,Carlton Mitchell,WR,21,0,South Florida,6-3,215,4.46,36.0,16.0,122.0,6.96,4.55,Cleveland Browns / 6th / 177th pick / 2010 18 | 16,17,2010,Kerry Meier,WR,23,0,Kansas,6-2,224,4.62,35.0,13.0,115.0,,4.23,Atlanta Falcons / 5th / 165th pick / 2010 19 | 17,18,2010,Dexter McCluster,WR,20,23,Mississippi,5-9,172,4.53,37.5,20.0,118.0,,4.06,Kansas City Chiefs / 2nd / 36th pick / 2010 20 | 18,19,2010,Brandon LaFell,WR,23,50,LSU,6-2,211,4.58,36.0,,115.0,6.81,4.23,Carolina Panthers / 3rd / 78th pick / 2010 21 | 19,20,2010,Donald Jones,WR,22,8,Youngstown State,6-0,214,4.46,41.0,20.0,119.0,6.9,4.2, 22 | 20,21,2010,Trindon Holliday,WR,23,4,LSU,5-5,166,4.34,42.0,10.0,116.0,6.54,4.48,Houston Texans / 6th / 197th pick / 2010 23 | 21,22,2010,Mardy Gilyard,WR,23,1,Cincinnati,6-0,187,4.61,39.0,,116.0,6.92,4.4,St. Louis Rams / 4th / 99th pick / 2010 24 | 22,23,2010,David Gettis,WR,22,3,Baylor,6-3,217,4.43,34.5,15.0,124.0,6.94,4.41,Carolina Panthers / 6th / 198th pick / 2010 25 | 23,24,2010,Jacoby Ford,WR,22,12,Clemson,5-9,186,4.28,33.5,15.0,115.0,7.0,4.44,Oakland Raiders / 4th / 108th pick / 2010 26 | 24,25,2010,Armanti Edwards,WR,21,1,Appalachian State,5-11,187,4.41,,,,,,Carolina Panthers / 3rd / 89th pick / 2010 27 | 25,26,2010,Marcus Easley,WR,22,1,Connecticut,6-3,210,4.39,34.0,16.0,123.0,6.94,4.6,Buffalo Bills / 4th / 107th pick / 2010 28 | 26,27,2010,Eric Decker,WR,22,52,Minnesota,6-3,217,4.54,,15.0,,,,Denver Broncos / 3rd / 87th pick / 2010 29 | 27,28,2010,Riley Cooper,WR,22,19,Florida,6-3,222,4.53,33.0,,114.0,,,Philadelphia Eagles / 5th / 159th pick / 2010 30 | 28,29,2010,Dez Bryant,WR,21,71,Oklahoma State,6-2,225,4.52,,,,,,Dallas Cowboys / 1st / 24th pick / 2010 31 | 29,30,2010,Antonio Brown,WR,21,102,Central Michigan,5-10,186,4.56,33.5,13.0,105.0,6.98,4.18,Pittsburgh Steelers / 6th / 195th pick / 2010 32 | 30,31,2010,Dezmon Briscoe,WR,20,4,Kansas,6-2,207,4.66,33.0,9.0,115.0,7.1,4.57,Cincinnati Bengals / 6th / 191st pick / 2010 33 | 31,32,2010,Arrelious Benn,WR,21,8,Illinois,6-1,219,4.57,37.0,20.0,118.0,,,Tampa Bay Buccaneers / 2nd / 39th pick / 2010 34 | 32,33,2010,Brandon Banks,WR,22,1,Kansas State,5-7,149,4.37,31.0,,113.0,6.88,4.29, 35 | 33,34,2010,Danario Alexander,WR,23,9,Missouri,6-5,215,4.62,,,,,, 36 | 34,35,2010,Seyi Ajirotutu,WR,22,5,Fresno State,6-3,204,4.6,36.0,14.0,115.0,7.22,4.39, 37 | -------------------------------------------------------------------------------- /combine/combinedata/2011/QB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2011,T.J. Yates,QB,23,6,North Carolina,6-3,219,5.06,29.5,,104,6.96,4.12,Houston Texans / 5th / 152nd pick / 2011 3 | 1,2,2011,Scott Tolzien,QB,23,3,Wisconsin,6-2,212,4.92,29.5,,116,6.84,4.12, 4 | 2,3,2011,Tyrod Taylor,QB,21,43,Virginia Tech,6-1,217,4.47,37.5,,126,6.78,4.09,Baltimore Ravens / 6th / 180th pick / 2011 5 | 3,4,2011,Ricky Stanzi,QB,23,0,Iowa,6-4,223,4.87,32.5,,110,6.95,4.43,Kansas City Chiefs / 5th / 135th pick / 2011 6 | 4,5,2011,Christian Ponder,QB,23,23,Florida State,6-2,229,4.63,34.0,,116,6.85,4.09,Minnesota Vikings / 1st / 12th pick / 2011 7 | 5,6,2011,Cam Newton,QB,21,123,Auburn,6-5,248,4.56,35.0,,126,6.92,4.18,Carolina Panthers / 1st / 1st pick / 2011 8 | 6,7,2011,Greg McElroy,QB,22,1,Alabama,6-2,220,4.84,33.0,,107,7.11,4.45,New York Jets / 7th / 208th pick / 2011 9 | 7,8,2011,Ryan Mallett,QB,22,4,Arkansas,6-7,253,5.37,24.0,,103,,,New England Patriots / 3rd / 74th pick / 2011 10 | 8,9,2011,Jake Locker,QB,22,16,Washington,6-2,231,4.51,35.0,,120,6.77,4.12,Tennessee Titans / 1st / 8th pick / 2011 11 | 9,10,2011,Colin Kaepernick,QB,23,49,Nevada,6-5,233,4.53,32.5,,115,6.85,4.18,San Francisco 49ers / 2nd / 36th pick / 2011 12 | 10,11,2011,Blaine Gabbert,QB,21,17,Missouri,6-4,234,4.61,33.5,,120,6.84,4.26,Jacksonville Jaguars / 1st / 10th pick / 2011 13 | 11,12,2011,Pat Devlin,QB,22,0,Pittsburgh,6-3,225,4.81,33.0,,116,7.08,4.32, 14 | 12,13,2011,Andy Dalton,QB,23,98,TCU,6-2,215,4.83,29.5,,106,6.93,4.27,Cincinnati Bengals / 2nd / 35th pick / 2011 15 | -------------------------------------------------------------------------------- /combine/combinedata/2011/RB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2011,Ryan Williams,RB,20,1,Virginia Tech,5-9,212,4.59,40.0,19.0,123.0,6.96,4.18,Arizona Cardinals / 2nd / 38th pick / 2011 3 | 1,2,2011,Johnny White,RB,23,0,North Carolina,5-10,209,4.5,32.5,,117.0,7.07,4.31,Buffalo Bills / 5th / 133rd pick / 2011 4 | 2,3,2011,Shane Vereen,RB,21,27,California,5-10,210,4.49,34.0,31.0,115.0,6.95,4.28,New England Patriots / 2nd / 56th pick / 2011 5 | 3,4,2011,Jordan Todman,RB,21,5,Connecticut,5-9,203,4.4,38.0,25.0,126.0,7.24,4.18,San Diego Chargers / 6th / 183rd pick / 2011 6 | 4,5,2011,Daniel Thomas,RB,23,12,Kansas State,6-0,230,4.62,,21.0,,,,Miami Dolphins / 2nd / 62nd pick / 2011 7 | 5,6,2011,Da'Rel Scott,RB,22,1,Maryland,5-11,211,4.4,34.0,19.0,117.0,7.15,4.2,New York Giants / 7th / 221st pick / 2011 8 | 6,7,2011,Brandon Saine,RB,22,1,Ohio State,5-11,220,4.4,34.5,22.0,113.0,6.98,4.25, 9 | 7,8,2011,Evan Royster,RB,23,4,Penn State,6-0,212,4.65,34.0,20.0,113.0,7.07,4.18,Washington Redskins / 6th / 177th pick / 2011 10 | 8,9,2011,Jacquizz Rodgers,RB,21,27,Oregon State,5-6,196,4.59,33.0,,113.0,7.31,4.26,Atlanta Falcons / 5th / 145th pick / 2011 11 | 9,10,2011,Stevan Ridley,RB,22,27,LSU,5-11,225,4.65,36.0,18.0,118.0,6.78,4.21,New England Patriots / 3rd / 73rd pick / 2011 12 | 10,11,2011,Bilal Powell,RB,22,30,Louisville,5-10,207,4.51,,18.0,,,,New York Jets / 4th / 126th pick / 2011 13 | 11,12,2011,DeMarco Murray,RB,23,70,Oklahoma,6-0,213,4.37,34.5,21.0,124.0,7.28,4.18,Dallas Cowboys / 3rd / 71st pick / 2011 14 | 12,13,2011,Dion Lewis,RB,20,31,Pittsburgh,5-7,193,4.56,34.5,17.0,112.0,6.9,4.18,Philadelphia Eagles / 5th / 149th pick / 2011 15 | 13,14,2011,Mikel Leshoure,RB,20,5,Illinois,6-0,227,4.56,38.0,21.0,122.0,6.82,4.4,Detroit Lions / 2nd / 57th pick / 2011 16 | 14,15,2011,Taiwan Jones,RB,22,3,East. Washington,6-0,194,4.33,,13.0,,,,Oakland Raiders / 4th / 125th pick / 2011 17 | 15,16,2011,Mark Ingram,RB,21,70,Alabama,5-9,215,4.62,31.5,21.0,118.0,7.13,4.62,New Orleans Saints / 1st / 28th pick / 2011 18 | 16,17,2011,Kendall Hunter,RB,22,12,Oklahoma State,5-7,199,4.46,35.0,24.0,122.0,6.74,4.21,San Francisco 49ers / 4th / 115th pick / 2011 19 | 17,18,2011,Roy Helu,RB,22,14,Nebraska,5-11,219,4.4,36.5,11.0,119.0,6.67,4.01,Washington Redskins / 4th / 105th pick / 2011 20 | 18,19,2011,Jamie Harper,RB,21,0,Clemson,5-11,233,4.53,36.5,24.0,120.0,7.16,4.39,Tennessee Titans / 4th / 130th pick / 2011 21 | 19,20,2011,Alex Green,RB,22,5,Hawaii,6-0,225,4.45,34.0,20.0,114.0,6.91,4.15,Green Bay Packers / 3rd / 96th pick / 2011 22 | 20,21,2011,Mario Fannin,RB,23,0,Auburn,5-10,231,4.37,37.5,21.0,115.0,6.99,4.21, 23 | 21,22,2011,Darren Evans,RB,22,0,Virginia Tech,6-0,227,4.56,35.0,26.0,111.0,6.96,4.46, 24 | 22,23,2011,Shaun Draughn,RB,23,7,North Carolina,5-11,213,4.73,34.0,21.0,118.0,7.15,4.2, 25 | 23,24,2011,John Clay,RB,23,0,Wisconsin,6-0,230,4.83,29.0,,111.0,,, 26 | 24,25,2011,Delone Carter,RB,23,3,Syracuse,5-9,222,4.54,37.0,27.0,120.0,6.92,4.07,Indianapolis Colts / 4th / 119th pick / 2011 27 | 25,26,2011,Allen Bradford,RB,22,1,USC,5-11,242,4.53,29.0,28.0,113.0,6.97,4.39,Tampa Bay Buccaneers / 6th / 187th pick / 2011 28 | 26,27,2011,Damien Berry,RB,22,0,Miami (FL),5-10,211,4.58,33.5,23.0,120.0,7.0,4.12, 29 | 27,28,2011,Matt Asiata,RB,23,14,Utah,5-11,229,4.77,30.0,22.0,104.0,7.09,4.37, 30 | 28,29,2011,Armando Allen,RB,21,1,Notre Dame,5-8,199,4.59,,23.0,,,, 31 | 29,30,2011,Anthony Allen,RB,22,1,Georgia Tech,6-1,228,4.56,41.5,24.0,120.0,6.79,4.06,Baltimore Ravens / 7th / 225th pick / 2011 32 | -------------------------------------------------------------------------------- /combine/combinedata/2011/TE.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2011,D.J. Williams,TE,22,1,Arkansas,6-2,245,4.59,33.5,20.0,111.0,7.29,4.51,Green Bay Packers / 5th / 141st pick / 2011 3 | 1,2,2011,Julius Thomas,TE,22,22,Portland State,6-5,246,4.64,35.5,16.0,111.0,6.96,4.31,Denver Broncos / 4th / 129th pick / 2011 4 | 2,3,2011,Luke Stocker,TE,22,4,Tennessee,6-5,258,4.68,33.0,27.0,115.0,7.03,4.4,Tampa Bay Buccaneers / 4th / 104th pick / 2011 5 | 3,4,2011,Lee Smith,TE,23,4,Marshall,6-6,266,4.94,29.0,25.0,108.0,7.13,4.28,New England Patriots / 5th / 159th pick / 2011 6 | 4,5,2011,Weslye Saunders,TE,22,0,South Carolina,6-5,270,4.93,33.5,19.0,116.0,,, 7 | 5,6,2011,Kyle Rudolph,TE,21,38,Notre Dame,6-6,259,4.83,,,,,,Minnesota Vikings / 2nd / 43rd pick / 2011 8 | 6,7,2011,Zack Pianalto,TE,21,0,North Carolina,6-3,256,4.78,32.0,22.0,108.0,6.85,4.41, 9 | 7,8,2011,Lance Kendricks,TE,23,18,Wisconsin,6-3,243,4.65,34.5,25.0,122.0,6.94,4.15,St. Louis Rams / 2nd / 47th pick / 2011 10 | 8,9,2011,Rob Housler,TE,22,9,Florida Atlantic,6-5,248,4.46,37.0,22.0,117.0,6.9,4.21,Arizona Cardinals / 3rd / 69th pick / 2011 11 | 9,10,2011,Virgil Green,TE,22,9,Nevada,6-3,249,4.54,42.5,23.0,130.0,6.9,4.4,Denver Broncos / 7th / 204th pick / 2011 12 | 10,11,2011,Cameron Graham,TE,22,0,Louisville,6-3,244,5.0,31.0,18.0,105.0,7.19,4.51, 13 | 11,12,2011,Jordan Cameron,TE,22,14,USC,6-5,254,4.53,37.5,23.0,119.0,6.82,4.03,Cleveland Browns / 4th / 102nd pick / 2011 14 | -------------------------------------------------------------------------------- /combine/combinedata/2011/WR.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2011,Titus Young,WR,21,8,Boise State,5-11,174,4.43,,,123.0,,,Detroit Lions / 2nd / 44th pick / 2011 3 | 1,2,2011,Ryan Whalen,WR,21,0,Stanford,6-1,202,4.53,38.5,18.0,123.0,6.67,4.09,Cincinnati Bengals / 6th / 167th pick / 2011 4 | 2,3,2011,Torrey Smith,WR,22,43,Maryland,6-1,204,4.41,41.0,19.0,126.0,6.72,4.13,Baltimore Ravens / 2nd / 58th pick / 2011 5 | 3,4,2011,Keith Smith,WR,18,1,San Jose State,6-2,214,4.65,,,,,, 6 | 4,5,2011,Cecil Shorts,WR,23,20,Mount Union,6-0,205,4.5,34.5,21.0,114.0,6.5,4.07,Jacksonville Jaguars / 4th / 114th pick / 2011 7 | 5,6,2011,Dane Sanzenbacher,WR,22,4,Ohio State,5-11,182,4.56,33.5,,118.0,6.46,3.97, 8 | 6,7,2011,DeMarco Sampson,WR,25,0,San Diego State,6-2,204,4.41,,14.0,,,,Arizona Cardinals / 7th / 249th pick / 2011 9 | 7,8,2011,Greg Salas,WR,22,4,Hawaii,6-1,210,4.53,37.0,15.0,120.0,6.65,4.1,St. Louis Rams / 4th / 112th pick / 2011 10 | 8,9,2011,Aldrick Robinson,WR,22,13,SMU,5-10,184,4.35,40.0,17.0,126.0,6.65,4.09,Washington Redskins / 6th / 178th pick / 2011 11 | 9,10,2011,Kealoha Pilares,WR,23,1,Hawaii,5-10,199,4.42,,19.0,,,,Carolina Panthers / 5th / 132nd pick / 2011 12 | 10,11,2011,Austin Pettis,WR,22,8,Boise State,6-3,209,4.56,33.5,14.0,120.0,6.68,3.88,St. Louis Rams / 3rd / 78th pick / 2011 13 | 11,12,2011,Niles Paul,WR,21,7,Nebraska,6-1,224,4.45,34.5,24.0,117.0,6.9,4.14,Washington Redskins / 5th / 155th pick / 2011 14 | 12,13,2011,Jamar Newsome,WR,23,0,Central Florida,6-0,200,4.46,38.5,13.0,129.0,6.83,4.22, 15 | 13,14,2011,Denarius Moore,WR,22,16,Tennessee,6-0,194,4.43,36.0,13.0,118.0,6.78,4.15,Oakland Raiders / 5th / 148th pick / 2011 16 | 14,15,2011,Jeff Maehl,WR,21,1,Oregon,6-1,190,4.56,33.5,,115.0,6.42,3.94, 17 | 15,16,2011,Ricardo Lockette,WR,24,5,Fort Valley State,6-2,211,4.34,35.5,,127.0,7.15,4.19, 18 | 16,17,2011,Greg Little,WR,21,14,North Carolina,6-2,231,4.51,40.5,27.0,129.0,6.8,4.21,Cleveland Browns / 2nd / 59th pick / 2011 19 | 17,18,2011,Jeremy Kerley,WR,22,26,TCU,5-9,189,4.56,34.5,16.0,120.0,,,New York Jets / 5th / 153rd pick / 2011 20 | 18,19,2011,Julio Jones,WR,22,113,Alabama,6-3,220,4.34,38.5,17.0,135.0,6.66,4.25,Atlanta Falcons / 1st / 6th pick / 2011 21 | 19,20,2011,Ronald Johnson,WR,22,0,USC,5-11,199,4.46,,16.0,,,,San Francisco 49ers / 6th / 182nd pick / 2011 22 | 20,21,2011,Jerrel Jernigan,WR,21,2,Troy,5-9,185,4.46,37.5,11.0,124.0,7.07,4.25,New York Giants / 3rd / 83rd pick / 2011 23 | 21,22,2011,Lestar Jean,WR,23,1,Florida Atlantic,6-3,215,4.61,37.5,14.0,113.0,7.45,4.43, 24 | 22,23,2011,Andre Holmes,WR,22,12,Hillsdale,6-4,210,4.51,35.0,11.0,130.0,6.69,4.31, 25 | 23,24,2011,Dwayne Harris,WR,23,13,East Carolina,5-10,203,4.53,34.0,10.0,111.0,6.77,4.21,Dallas Cowboys / 6th / 176th pick / 2011 26 | 24,25,2011,Leonard Hankerson,WR,22,12,Miami (FL),6-1,209,4.4,36.0,14.0,117.0,6.94,4.21,Washington Redskins / 3rd / 79th pick / 2011 27 | 25,26,2011,Tori Gurley,WR,23,0,South Carolina,6-4,216,4.53,33.5,15.0,118.0,7.05,4.25, 28 | 26,27,2011,A.J. Green,WR,22,80,Georgia,6-4,211,4.48,34.5,18.0,126.0,6.91,4.21,Cincinnati Bengals / 1st / 4th pick / 2011 29 | 27,28,2011,Clyde Gates,WR,24,3,Abilene Christian,6-0,192,4.31,40.0,16.0,131.0,,,Miami Dolphins / 4th / 111th pick / 2011 30 | 28,29,2011,Tandon Doss,WR,21,4,Indiana,6-2,201,4.62,,14.0,,,,Baltimore Ravens / 4th / 123rd pick / 2011 31 | 29,30,2011,Randall Cobb,WR,20,68,Kentucky,5-10,191,4.46,33.5,16.0,115.0,7.08,4.34,Green Bay Packers / 2nd / 64th pick / 2011 32 | 30,31,2011,Stephen Burton,WR,21,0,West Texas A&M,6-1,221,4.5,34.5,19.0,117.0,7.04,4.31,Minnesota Vikings / 7th / 236th pick / 2011 33 | 31,32,2011,Vincent Brown,WR,22,9,San Diego State,5-11,187,4.68,33.5,12.0,121.0,6.64,4.25,San Diego Chargers / 3rd / 82nd pick / 2011 34 | 32,33,2011,Armon Binns,WR,21,3,Cincinnati,6-3,209,4.5,31.5,13.0,118.0,6.86,4.31, 35 | 33,34,2011,Jon Baldwin,WR,21,4,Pittsburgh,6-4,228,4.49,42.0,20.0,129.0,7.07,4.34,Kansas City Chiefs / 1st / 26th pick / 2011 36 | 34,35,2011,Darvin Adams,WR,21,0,Auburn,6-2,190,4.56,,,,,, 37 | -------------------------------------------------------------------------------- /combine/combinedata/2012/QB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2012,Russell Wilson,QB,23,129,Wisconsin,5-11,204,4.53,34.0,,118.0,6.97,4.09,Seattle Seahawks / 3rd / 75th pick / 2012 3 | 1,2,2012,Brandon Weeden,QB,28,15,Oklahoma State,6-3,221,4.89,,,,,,Cleveland Browns / 1st / 22nd pick / 2012 4 | 2,3,2012,Ryan Tannehill,QB,23,72,Texas A&M,6-4,221,4.65,,,,,,Miami Dolphins / 1st / 8th pick / 2012 5 | 3,4,2012,Brock Osweiler,QB,21,15,Arizona State,6-7,242,4.83,,,,,,Denver Broncos / 2nd / 57th pick / 2012 6 | 4,5,2012,Kellen Moore,QB,22,2,Boise State,6-0,197,4.82,27.0,,99.0,7.41,4.56, 7 | 5,6,2012,Andrew Luck,QB,22,79,Stanford,6-4,234,4.59,36.0,,124.0,6.8,4.28,Indianapolis Colts / 1st / 1st pick / 2012 8 | 6,7,2012,Ryan Lindley,QB,22,-4,San Diego State,6-4,229,4.86,29.5,,108.0,7.52,4.45,Arizona Cardinals / 6th / 185th pick / 2012 9 | 7,8,2012,Case Keenum,QB,24,37,Houston,6-1,208,4.72,32.5,,103.0,,, 10 | 8,9,2012,Chandler Harnish,QB,23,0,Northern Illinois,6-2,219,4.68,32.5,,112.0,6.78,4.15,Indianapolis Colts / 7th / 253rd pick / 2012 11 | 9,10,2012,Robert Griffin,QB,22,38,Baylor,6-2,223,4.33,39.0,,120.0,,,Washington Redskins / 1st / 2nd pick / 2012 12 | 10,11,2012,Nick Foles,QB,23,32,Arizona,6-5,243,5.14,30.5,,112.0,,,Philadelphia Eagles / 3rd / 88th pick / 2012 13 | 11,12,2012,Austin Davis,QB,22,6,Southern Miss,6-2,219,4.69,31.0,,109.0,6.73,4.11, 14 | 12,13,2012,Kirk Cousins,QB,23,69,Michigan State,6-3,214,4.84,28.5,,109.0,7.05,4.5,Washington Redskins / 4th / 102nd pick / 2012 15 | 13,14,2012,B.J. Coleman,QB,23,0,Tenn-Chattanooga,6-3,233,4.94,,,109.0,7.07,4.38,Green Bay Packers / 7th / 243rd pick / 2012 16 | -------------------------------------------------------------------------------- /combine/combinedata/2012/RB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2012,David Wilson,RB,20,5,Virginia Tech,5-10,206,4.38,41.0,,132.0,7.09,4.12,New York Giants / 1st / 32nd pick / 2012 3 | 1,2,2012,Fozzy Whittaker,RB,23,8,Texas,5-9,193,4.49,,20.0,,,, 4 | 2,3,2012,Robert Turbin,RB,22,17,Utah State,5-10,222,4.42,36.0,28.0,122.0,7.16,4.31,Seattle Seahawks / 4th / 106th pick / 2012 5 | 3,4,2012,Trent Richardson,RB,21,18,Alabama,5-9,228,4.48,,,,,,Cleveland Browns / 1st / 3rd pick / 2012 6 | 4,5,2012,Chris Rainey,RB,24,1,Florida,5-8,180,4.36,36.5,16.0,120.0,6.5,3.93,Pittsburgh Steelers / 5th / 159th pick / 2012 7 | 5,6,2012,Tauren Poole,RB,22,0,Tennessee,5-10,205,4.48,34.0,24.0,118.0,7.36,4.19, 8 | 6,7,2012,Chris Polk,RB,22,6,Washington,5-10,215,4.52,31.5,,111.0,7.13,4.21, 9 | 7,8,2012,Bernard Pierce,RB,20,10,Temple,6-0,218,4.45,36.5,17.0,123.0,7.07,4.28,Baltimore Ravens / 3rd / 84th pick / 2012 10 | 8,9,2012,Isaiah Pead,RB,22,1,Cincinnati,5-10,197,4.39,33.0,,116.0,6.95,4.32,St. Louis Rams / 2nd / 50th pick / 2012 11 | 9,10,2012,Alfred Morris,RB,23,39,Florida Atlantic,5-10,219,4.63,35.5,16.0,117.0,7.01,4.19,Washington Redskins / 6th / 173rd pick / 2012 12 | 10,11,2012,Lamar Miller,RB,20,47,Miami (FL),5-11,212,4.34,33.0,,,,,Miami Dolphins / 4th / 97th pick / 2012 13 | 11,12,2012,Davin Meggett,RB,21,0,Maryland,5-8,211,4.5,35.0,23.0,118.0,7.14,4.32, 14 | 12,13,2012,Doug Martin,RB,23,43,Boise State,5-9,223,4.46,36.0,28.0,120.0,6.79,4.16,Tampa Bay Buccaneers / 1st / 31st pick / 2012 15 | 13,14,2012,LaMichael James,RB,22,2,Oregon,5-8,194,4.35,35.0,15.0,123.0,6.88,4.12,San Francisco 49ers / 2nd / 61st pick / 2012 16 | 14,15,2012,Ronnie Hillman,RB,20,18,San Diego State,5-9,200,4.42,37.0,17.0,,,,Denver Broncos / 3rd / 67th pick / 2012 17 | 15,16,2012,Dan Herron,RB,22,5,Ohio State,5-10,213,4.57,35.0,22.0,117.0,6.97,4.04,Cincinnati Bengals / 6th / 191st pick / 2012 18 | 16,17,2012,Jewel Hampton,RB,22,0,Southern Illinois,5-9,218,4.56,,26.0,,,, 19 | 17,18,2012,Jonas Gray,RB,21,4,Notre Dame,5-10,223,4.58,,20.0,,,, 20 | 18,19,2012,Cyrus Gray,RB,22,1,Texas A&M,5-10,206,4.4,32.5,21.0,114.0,7.17,,Kansas City Chiefs / 6th / 182nd pick / 2012 21 | 19,20,2012,Terrance Ganaway,RB,23,0,Baylor,5-11,239,4.61,37.5,,119.0,7.15,4.25,New York Jets / 6th / 202nd pick / 2012 22 | 20,21,2012,Brandon Bolden,RB,22,12,Mississippi,5-11,222,4.55,38.0,21.0,119.0,6.96,4.44, 23 | 21,22,2012,Vick Ballard,RB,21,5,Mississippi State,5-10,219,4.59,33.0,23.0,115.0,7.03,4.19,Indianapolis Colts / 5th / 170th pick / 2012 24 | 22,23,2012,Edwin Baker,RB,20,1,Michigan State,5-8,204,4.44,35.0,20.0,111.0,7.27,4.31,San Diego Chargers / 7th / 250th pick / 2012 25 | -------------------------------------------------------------------------------- /combine/combinedata/2012/TE.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2012,DeAngelo Peterson,TE,23,0,LSU,6-3,243,4.69,36.0,18.0,121.0,7.19,, 3 | 1,2,2012,David Paulson,TE,23,1,Oregon,6-3,246,4.79,32.0,21.0,110.0,7.18,4.4,Pittsburgh Steelers / 7th / 240th pick / 2012 4 | 2,3,2012,Cory Harkey,TE,21,1,UCLA,6-4,260,5.06,26.5,13.0,109.0,7.4,4.69, 5 | 3,4,2012,James Hanna,TE,22,4,Oklahoma,6-4,252,4.43,36.0,24.0,122.0,6.76,4.11,Dallas Cowboys / 6th / 186th pick / 2012 6 | 4,5,2012,Ladarius Green,TE,21,12,Louisiana-Lafayette,6-6,238,4.45,34.5,16.0,124.0,7.12,4.47,San Diego Chargers / 4th / 110th pick / 2012 7 | 5,6,2012,Coby Fleener,TE,23,28,Stanford,6-6,247,4.51,,27.0,,,,Indianapolis Colts / 2nd / 34th pick / 2012 8 | 6,7,2012,Rhett Ellison,TE,23,10,USC,6-5,251,4.78,31.5,,109.0,,,Minnesota Vikings / 4th / 128th pick / 2012 9 | 7,8,2012,Michael Egnew,TE,22,0,Missouri,6-5,252,4.52,36.0,21.0,131.0,7.03,4.32,Miami Dolphins / 3rd / 78th pick / 2012 10 | 8,9,2012,Orson Charles,TE,21,2,Georgia,6-2,251,4.73,,35.0,,,,Cincinnati Bengals / 4th / 116th pick / 2012 11 | 9,10,2012,Dwayne Allen,TE,22,13,Clemson,6-3,255,4.85,32.0,27.0,110.0,7.12,4.37,Indianapolis Colts / 3rd / 64th pick / 2012 12 | -------------------------------------------------------------------------------- /combine/combinedata/2012/WR.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2012,Devon Wylie,WR,23,0,Fresno State,5-9,187,4.36,39.0,17.0,123.0,,,Kansas City Chiefs / 4th / 107th pick / 2012 3 | 1,2,2012,Kendall Wright,WR,22,31,Baylor,5-10,196,4.49,38.5,,121.0,6.93,4.18,Tennessee Titans / 1st / 20th pick / 2012 4 | 2,3,2012,Jarius Wright,WR,22,26,Arkansas,5-10,182,4.39,38.0,11.0,120.0,6.93,4.03,Minnesota Vikings / 4th / 118th pick / 2012 5 | 3,4,2012,Jordan White,WR,23,0,West. Michigan,6-0,208,4.63,35.0,14.0,119.0,6.84,4.13,New York Jets / 7th / 244th pick / 2012 6 | 4,5,2012,Nick Toon,WR,23,3,Wisconsin,6-2,215,4.49,37.5,18.0,,,,New Orleans Saints / 4th / 122nd pick / 2012 7 | 5,6,2012,Tommy Streeter,WR,22,0,Miami (FL),6-5,219,4.37,33.0,17.0,125.0,7.08,,Baltimore Ravens / 6th / 198th pick / 2012 8 | 6,7,2012,Mohamed Sanu,WR,22,45,Rutgers,6-1,211,4.62,36.0,19.0,126.0,6.88,4.22,Cincinnati Bengals / 3rd / 83rd pick / 2012 9 | 7,8,2012,James Rodgers,WR,23,0,Oregon State,5-7,184,4.61,37.0,19.0,115.0,,4.23, 10 | 8,9,2012,Rueben Randle,WR,20,22,LSU,6-3,210,4.55,31.0,15.0,121.0,6.99,4.36,New York Giants / 2nd / 63rd pick / 2012 11 | 9,10,2012,Brian Quick,WR,22,12,Appalachian State,6-3,220,4.5,34.0,15.0,119.0,7.1,4.23,St. Louis Rams / 2nd / 33rd pick / 2012 12 | 10,11,2012,DeVier Posey,WR,21,2,Ohio State,6-2,211,4.39,36.5,14.0,123.0,7.03,4.15,Houston Texans / 3rd / 68th pick / 2012 13 | 11,12,2012,Eric Page,WR,20,1,Toledo,5-9,186,4.5,30.0,15.0,112.0,6.95,3.98, 14 | 12,13,2012,Chris Owusu,WR,22,3,Stanford,6-0,196,4.36,40.5,19.0,129.0,6.85,4.11, 15 | 13,14,2012,Derek Moye,WR,23,0,Penn State,6-4,209,4.46,33.5,10.0,115.0,,4.23, 16 | 14,15,2012,Kashif Moore,WR,23,0,Connecticut,5-9,180,4.36,43.5,19.0,126.0,6.82,4.05, 17 | 15,16,2012,Marvin McNutt,WR,22,0,Iowa,6-3,216,4.48,37.0,,122.0,7.15,4.07,Philadelphia Eagles / 6th / 194th pick / 2012 18 | 16,17,2012,Rishard Matthews,WR,22,25,Nevada,6-0,217,4.54,36.0,20.0,,6.88,4.19,Miami Dolphins / 7th / 227th pick / 2012 19 | 17,18,2012,Keshawn Martin,WR,21,7,Michigan State,5-11,188,4.42,39.5,13.0,122.0,6.85,4.13,Houston Texans / 4th / 121st pick / 2012 20 | 18,19,2012,Jermaine Kearse,WR,22,30,Washington,6-1,209,4.5,34.0,14.0,119.0,7.03,4.12, 21 | 19,20,2012,Marvin Jones,WR,21,45,California,6-2,199,4.46,33.0,22.0,112.0,6.81,4.11,Cincinnati Bengals / 5th / 166th pick / 2012 22 | 20,21,2012,A.J. Jenkins,WR,22,2,Illinois,6-0,190,4.37,38.5,12.0,124.0,,,San Francisco 49ers / 1st / 30th pick / 2012 23 | 21,22,2012,Alshon Jeffery,WR,22,56,South Carolina,6-3,216,4.48,,,,,,Chicago Bears / 2nd / 45th pick / 2012 24 | 22,23,2012,Jerrell Jackson,WR,22,0,Missouri,6-0,196,4.5,41.0,22.0,127.0,6.82,4.11, 25 | 23,24,2012,T.Y. Hilton,WR,22,77,Florida International,5-9,183,4.34,,,,,,Indianapolis Colts / 3rd / 92nd pick / 2012 26 | 24,25,2012,Stephen Hill,WR,20,4,Georgia Tech,6-4,215,4.36,39.5,14.0,133.0,6.88,4.48,New York Jets / 2nd / 43rd pick / 2012 27 | 25,26,2012,Junior Hemingway,WR,23,2,Michigan,6-1,225,4.48,35.5,21.0,124.0,6.59,3.98,Kansas City Chiefs / 7th / 238th pick / 2012 28 | 26,27,2012,Darius Hanks,WR,23,0,Alabama,6-0,184,4.52,34.0,11.0,117.0,,, 29 | 27,28,2012,T.J. Graham,WR,22,7,North Carolina State,5-11,188,4.34,33.5,8.0,120.0,6.77,4.18,Buffalo Bills / 3rd / 69th pick / 2012 30 | 28,29,2012,Chris Givens,WR,22,13,Wake Forest,5-11,198,4.35,33.5,19.0,118.0,6.97,4.23,St. Louis Rams / 4th / 96th pick / 2012 31 | 29,30,2012,Jeff Fuller,WR,21,0,Texas A&M,6-4,223,4.53,,17.0,,,, 32 | 30,31,2012,Michael Floyd,WR,22,31,Notre Dame,6-3,220,4.4,36.5,16.0,122.0,,,Arizona Cardinals / 1st / 13th pick / 2012 33 | 31,32,2012,Patrick Edwards,WR,23,0,Houston,5-9,172,4.57,,,,,, 34 | 32,33,2012,B.J. Cunningham,WR,22,0,Michigan State,6-1,211,4.52,31.5,12.0,116.0,7.1,,Miami Dolphins / 6th / 183rd pick / 2012 35 | 33,34,2012,Juron Criner,WR,22,1,Arizona,6-2,224,4.66,38.0,17.0,117.0,7.15,4.3,Oakland Raiders / 5th / 168th pick / 2012 36 | 34,35,2012,Josh Cooper,WR,23,1,Oklahoma State,5-11,190,4.65,,11.0,,,, 37 | 35,36,2012,Danny Coale,WR,23,0,Virginia Tech,6-0,201,4.42,35.0,12.0,115.0,6.69,4.15,Dallas Cowboys / 5th / 152nd pick / 2012 38 | 36,37,2012,Greg Childs,WR,21,0,Arkansas,6-3,219,4.52,36.5,19.0,125.0,,,Minnesota Vikings / 4th / 134th pick / 2012 39 | 37,38,2012,Ryan Broyles,WR,23,3,Oklahoma,5-10,192,4.57,,21.0,,,,Detroit Lions / 2nd / 54th pick / 2012 40 | 38,39,2012,LaVon Brazill,WR,22,3,Ohio,5-11,192,4.43,32.5,11.0,,,,Indianapolis Colts / 6th / 206th pick / 2012 41 | 39,40,2012,Jarrett Boykin,WR,22,6,Virginia Tech,6-2,217,4.62,36.0,11.0,123.0,7.12,4.28, 42 | 40,41,2012,Justin Blackmon,WR,22,9,Oklahoma State,6-1,207,4.46,,14.0,,,,Jacksonville Jaguars / 1st / 5th pick / 2012 43 | 41,42,2012,Travis Benjamin,WR,22,28,Miami (FL),5-10,172,4.31,38.0,14.0,119.0,,,Cleveland Browns / 4th / 100th pick / 2012 44 | 42,43,2012,Tim Benford,WR,22,0,Tennessee Tech,5-11,205,4.51,,15.0,,,, 45 | 43,44,2012,Joe Adams,WR,22,0,Arkansas,5-11,179,4.51,36.0,,123.0,7.09,,Carolina Panthers / 4th / 104th pick / 2012 46 | -------------------------------------------------------------------------------- /combine/combinedata/2013/QB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2013,Brad Sorensen,QB,24,0,Southern Utah,6-4,229,4.97,29.0,,112.0,7.17,4.55,San Diego Chargers / 7th / 221st pick / 2013 3 | 1,2,2013,Geno Smith,QB,22,16,West Virginia,6-2,218,4.58,33.5,,124.0,,,New York Jets / 2nd / 39th pick / 2013 4 | 2,3,2013,Sean Renfree,QB,22,0,Duke,6-3,219,4.76,,,,,,Atlanta Falcons / 7th / 249th pick / 2013 5 | 3,4,2013,Ryan Nassib,QB,22,0,Syracuse,6-2,227,5.06,28.5,,105.0,7.34,4.53,New York Giants / 4th / 110th pick / 2013 6 | 4,5,2013,E.J. Manuel,QB,22,11,Florida State,6-5,237,4.65,34.0,,118.0,7.08,4.21,Buffalo Bills / 1st / 16th pick / 2013 7 | 5,6,2013,Landry Jones,QB,23,4,Oklahoma,6-4,225,5.11,31.0,,115.0,7.12,4.3,Pittsburgh Steelers / 4th / 115th pick / 2013 8 | 6,7,2013,MarQueis Gray,QB,23,2,Minnesota,6-3,240,4.65,30.0,15.0,111.0,7.25,4.3, 9 | 7,8,2013,Mike Glennon,QB,23,13,North Carolina State,6-7,225,4.94,26.5,,102.0,7.49,4.52,Tampa Bay Buccaneers / 3rd / 73rd pick / 2013 10 | 8,9,2013,Zac Dysert,QB,23,0,Miami (OH),6-3,231,4.81,,,,,,Denver Broncos / 7th / 234th pick / 2013 11 | 9,10,2013,Tyler Bray,QB,21,0,Tennessee,6-6,232,5.05,,,100.0,7.2,4.51, 12 | 10,11,2013,Matt Barkley,QB,22,4,USC,6-2,227,4.91,,,,,,Philadelphia Eagles / 4th / 98th pick / 2013 13 | -------------------------------------------------------------------------------- /combine/combinedata/2013/RB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2013,Cierre Wood,RB,22,0,Notre Dame,5-11,213,4.56,37.5,16.0,124.0,,, 3 | 1,2,2013,George Winn,RB,22,0,Cincinnati,5-10,218,4.75,34.5,22.0,119.0,,, 4 | 2,3,2013,Kerwynn Williams,RB,21,6,Utah State,5-8,195,4.48,35.0,17.0,118.0,7.15,4.15,Indianapolis Colts / 7th / 230th pick / 2013 5 | 3,4,2013,Spencer Ware,RB,21,18,LSU,5-10,228,4.62,,,,,,Seattle Seahawks / 6th / 194th pick / 2013 6 | 4,5,2013,Matthew Tucker,RB,21,0,TCU,6-0,221,4.55,35.5,17.0,118.0,,, 7 | 5,6,2013,Chris Thompson,RB,22,21,Florida State,5-7,192,4.42,,21.0,,,,Washington Redskins / 5th / 154th pick / 2013 8 | 6,7,2013,Stepfan Taylor,RB,21,3,Stanford,5-9,214,4.76,30.0,17.0,110.0,7.13,4.5,Arizona Cardinals / 5th / 140th pick / 2013 9 | 7,8,2013,Zac Stacy,RB,21,11,Vanderbilt,5-8,216,4.55,33.0,27.0,122.0,6.7,4.17,St. Louis Rams / 5th / 160th pick / 2013 10 | 8,9,2013,Theo Riddick,RB,21,26,Notre Dame,5-10,201,4.68,32.0,,118.0,,,Detroit Lions / 6th / 199th pick / 2013 11 | 9,10,2013,Joseph Randle,RB,21,7,Oklahoma State,6-0,204,4.63,35.0,,123.0,,,Dallas Cowboys / 5th / 151st pick / 2013 12 | 10,11,2013,Christine Michael,RB,22,9,Texas A&M,5-10,220,4.54,43.0,27.0,125.0,6.69,4.02,Seattle Seahawks / 2nd / 62nd pick / 2013 13 | 11,12,2013,Onterio McCalebb,RB,23,0,Auburn,5-10,168,4.34,34.0,,121.0,,, 14 | 12,13,2013,Marcus Lattimore,RB,21,0,South Carolina,5-11,221,4.65,,,,,,San Francisco 49ers / 4th / 131st pick / 2013 15 | 13,14,2013,Eddie Lacy,RB,22,38,Alabama,5-11,231,4.55,,,,,,Green Bay Packers / 2nd / 61st pick / 2013 16 | 14,15,2013,Mike James,RB,21,2,Miami (FL),5-10,223,4.53,35.0,28.0,115.0,,4.62,Tampa Bay Buccaneers / 6th / 189th pick / 2013 17 | 15,16,2013,Ray Graham,RB,22,0,Pittsburgh,5-9,199,4.8,32.5,18.0,112.0,7.17,4.21, 18 | 16,17,2013,Mike Gillislee,RB,22,10,Florida,5-11,208,4.55,30.5,15.0,119.0,7.12,4.4,Miami Dolphins / 5th / 164th pick / 2013 19 | 17,18,2013,Johnathan Franklin,RB,23,1,UCLA,5-10,205,4.49,31.5,18.0,115.0,6.89,4.31,Green Bay Packers / 4th / 125th pick / 2013 20 | 18,19,2013,Michael Ford,RB,22,0,LSU,5-9,210,4.5,38.5,25.0,130.0,6.87,4.25, 21 | 19,20,2013,Andre Ellington,RB,24,19,Clemson,5-9,199,4.61,34.0,,122.0,,,Arizona Cardinals / 6th / 187th pick / 2013 22 | 20,21,2013,Knile Davis,RB,21,10,Arkansas,5-11,227,4.37,33.5,31.0,121.0,6.96,4.38,Kansas City Chiefs / 3rd / 96th pick / 2013 23 | 21,22,2013,Rex Burkhead,RB,22,16,Nebraska,5-10,214,4.73,39.0,21.0,125.0,6.85,4.09,Cincinnati Bengals / 6th / 190th pick / 2013 24 | 22,23,2013,Giovani Bernard,RB,21,42,North Carolina,5-8,202,4.53,33.5,19.0,122.0,6.91,4.12,Cincinnati Bengals / 2nd / 37th pick / 2013 25 | 23,24,2013,Le'Veon Bell,RB,21,65,Michigan State,6-1,230,4.6,31.5,24.0,118.0,6.75,4.24,Pittsburgh Steelers / 2nd / 48th pick / 2013 26 | 24,25,2013,Kenjon Barner,RB,22,4,Oregon,5-9,196,4.52,35.5,20.0,122.0,6.87,4.2,Carolina Panthers / 6th / 182nd pick / 2013 27 | 25,26,2013,Montee Ball,RB,22,8,Wisconsin,5-10,214,4.66,32.0,15.0,118.0,6.88,4.4,Denver Broncos / 2nd / 58th pick / 2013 28 | 26,27,2013,C.J. Anderson,RB,22,28,California,5-8,224,4.6,32.0,17.0,119.0,7.15,4.12, 29 | -------------------------------------------------------------------------------- /combine/combinedata/2013/TE.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2013,Levine Toilolo,TE,21,8,Stanford,6-8,260,4.86,31.0,17.0,113.0,7.09,4.57,Atlanta Falcons / 4th / 133rd pick / 2013 3 | 1,2,2013,Jake Stoneburner,TE,23,0,Ohio State,6-3,252,4.65,34.5,18.0,116.0,7.12,4.27, 4 | 2,3,2013,Dion Sims,TE,22,7,Michigan State,6-5,262,4.75,35.0,22.0,112.0,7.36,4.52,Miami Dolphins / 4th / 106th pick / 2013 5 | 3,4,2013,Mychal Rivera,TE,22,10,Tennessee,6-3,242,4.81,31.0,17.0,112.0,7.17,4.43,Oakland Raiders / 6th / 184th pick / 2013 6 | 4,5,2013,Jordan Reed,TE,22,26,Florida,6-2,236,4.72,,16.0,,,,Washington Redskins / 3rd / 85th pick / 2013 7 | 5,6,2013,Chris Pantale,TE,22,0,Boston Col.,6-5,254,4.99,33.5,17.0,110.0,7.48,4.5, 8 | 6,7,2013,Ryan Otten,TE,22,0,San Jose State,6-5,230,4.69,,,,,, 9 | 7,8,2013,Vance McDonald,TE,22,15,Rice,6-4,267,4.69,33.5,31.0,119.0,7.08,4.53,San Francisco 49ers / 2nd / 55th pick / 2013 10 | 8,9,2013,Travis Kelce,TE,23,66,Cincinnati,6-5,255,4.63,,,,,,Kansas City Chiefs / 3rd / 63rd pick / 2013 11 | 9,10,2013,Nick Kasa,TE,22,0,Colorado,6-6,269,4.71,31.5,22.0,113.0,,,Oakland Raiders / 6th / 172nd pick / 2013 12 | 10,11,2013,D.C. Jefferson,TE,23,0,Rutgers,6-6,255,4.97,,3.0,,,,Arizona Cardinals / 7th / 219th pick / 2013 13 | 11,12,2013,Chris Gragg,TE,22,1,Arkansas,6-3,244,4.5,37.5,18.0,125.0,7.08,4.51,Buffalo Bills / 7th / 222nd pick / 2013 14 | 12,13,2013,Joseph Fauria,TE,23,3,UCLA,6-7,259,4.82,,17.0,,,, 15 | 13,14,2013,Gavin Escobar,TE,22,2,San Diego State,6-6,254,4.84,32.0,,114.0,7.07,4.31,Dallas Cowboys / 2nd / 47th pick / 2013 16 | 14,15,2013,Zach Ertz,TE,22,46,Stanford,6-5,249,4.76,30.5,24.0,111.0,7.08,4.47,Philadelphia Eagles / 2nd / 35th pick / 2013 17 | 15,16,2013,Tyler Eifert,TE,22,18,Notre Dame,6-5,250,4.68,35.5,22.0,119.0,6.92,4.32,Cincinnati Bengals / 1st / 21st pick / 2013 18 | 16,17,2013,Justice Cunningham,TE,22,0,South Carolina,6-3,258,4.94,31.5,,116.0,7.12,4.45,Indianapolis Colts / 7th / 254th pick / 2013 19 | -------------------------------------------------------------------------------- /combine/combinedata/2013/WR.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2013,Robert Woods,WR,20,51,USC,6-0,201,4.51,33.5,14.0,117.0,7.15,4.47,Buffalo Bills / 2nd / 41st pick / 2013 3 | 1,2,2013,Marquess Wilson,WR,20,6,Washington State,6-3,194,4.51,34.5,7.0,122.0,6.65,4.33,Chicago Bears / 7th / 236th pick / 2013 4 | 2,3,2013,Terrance Williams,WR,23,31,Baylor,6-2,208,4.52,32.5,11.0,119.0,7.01,4.32,Dallas Cowboys / 3rd / 74th pick / 2013 5 | 3,4,2013,Markus Wheaton,WR,22,13,Oregon State,5-11,189,4.45,37.0,20.0,120.0,6.8,4.02,Pittsburgh Steelers / 3rd / 79th pick / 2013 6 | 4,5,2013,Kenbrell Thompkins,WR,24,7,Cincinnati,6-1,193,4.54,33.5,8.0,121.0,6.88,4.21, 7 | 5,6,2013,Kenny Stills,WR,20,38,Oklahoma,6-0,194,4.38,33.5,16.0,124.0,,4.35,New Orleans Saints / 5th / 144th pick / 2013 8 | 6,7,2013,Ryan Spadola,WR,22,0,Lehigh,6-1,204,4.48,33.5,15.0,119.0,6.72,4.07, 9 | 7,8,2013,Rodney Smith,WR,22,0,Florida State,6-4,225,4.51,34.5,,120.0,7.03,4.07, 10 | 8,9,2013,Ace Sanders,WR,21,3,South Carolina,5-7,173,4.58,32.0,7.0,117.0,6.81,4.37,Jacksonville Jaguars / 4th / 101st pick / 2013 11 | 9,10,2013,Da'Rick Rogers,WR,21,2,Tennessee Tech,6-2,217,4.5,39.5,10.0,132.0,6.71,4.06, 12 | 10,11,2013,Denard Robinson,WR,22,8,Michigan,5-10,199,4.43,36.5,,123.0,7.09,4.22,Jacksonville Jaguars / 5th / 135th pick / 2013 13 | 11,12,2013,Quinton Patton,WR,22,7,Louisiana Tech,6-0,204,4.53,33.0,8.0,118.0,6.91,4.01,San Francisco 49ers / 4th / 128th pick / 2013 14 | 12,13,2013,Cordarrelle Patterson,WR,21,29,Tennessee,6-2,216,4.42,37.0,,128.0,,,Minnesota Vikings / 1st / 29th pick / 2013 15 | 13,14,2013,T.J. Moe,WR,22,0,Missouri,5-11,204,4.74,36.0,26.0,120.0,6.53,3.96, 16 | 14,15,2013,Alec Lemon,WR,21,0,Syracuse,6-1,202,4.59,32.0,7.0,112.0,7.04,4.29, 17 | 15,16,2013,Tavarres King,WR,22,2,Georgia,6-0,189,4.47,36.5,11.0,123.0,6.91,4.33,Denver Broncos / 5th / 161st pick / 2013 18 | 16,17,2013,Darius Johnson,WR,22,2,SMU,5-9,179,4.6,32.0,6.0,109.0,,4.53, 19 | 17,18,2013,Justin Hunter,WR,21,10,Tennessee,6-4,196,4.44,39.5,,136.0,,4.33,Tennessee Titans / 2nd / 34th pick / 2013 20 | 18,19,2013,DeAndre Hopkins,WR,20,68,Clemson,6-1,214,4.57,36.0,15.0,115.0,,4.5,Houston Texans / 1st / 27th pick / 2013 21 | 19,20,2013,Chris Harper,WR,23,0,Kansas State,6-1,229,4.55,35.5,20.0,116.0,6.89,4.39,Seattle Seahawks / 4th / 123rd pick / 2013 22 | 20,21,2013,Cobi Hamilton,WR,22,2,Arkansas,6-2,212,4.56,29.5,11.0,107.0,,4.31,Cincinnati Bengals / 6th / 197th pick / 2013 23 | 21,22,2013,Marquise Goodwin,WR,22,19,Texas,5-9,183,4.27,,13.0,132.0,,,Buffalo Bills / 3rd / 78th pick / 2013 24 | 22,23,2013,Corey Fuller,WR,22,3,Virginia Tech,6-2,204,4.43,31.5,12.0,120.0,,,Detroit Lions / 6th / 171st pick / 2013 25 | 23,24,2013,Aaron Dobson,WR,21,6,Marshall,6-3,210,4.37,,,,,,New England Patriots / 2nd / 59th pick / 2013 26 | 24,25,2013,Marlon Brown,WR,21,7,Georgia,6-4,213,4.63,,,,,, 27 | 25,26,2013,Josh Boyce,WR,21,1,TCU,5-11,206,4.38,34.0,22.0,131.0,6.68,4.1,New England Patriots / 4th / 102nd pick / 2013 28 | 26,27,2013,Alan Bonner,WR,22,0,Jacksonville State,5-10,193,4.59,33.0,14.0,117.0,,4.15,Houston Texans / 6th / 195th pick / 2013 29 | 27,28,2013,Stedman Bailey,WR,22,7,West Virginia,5-10,193,4.52,34.5,11.0,117.0,6.81,4.09,St. Louis Rams / 3rd / 92nd pick / 2013 30 | 28,29,2013,Tavon Austin,WR,22,28,West Virginia,5-8,174,4.34,32.0,14.0,120.0,,4.01,St. Louis Rams / 1st / 8th pick / 2013 31 | 29,30,2013,Keenan Allen,WR,20,56,California,6-2,206,4.58,,,,,,San Diego Chargers / 3rd / 76th pick / 2013 32 | -------------------------------------------------------------------------------- /combine/combinedata/2014/QB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2014,Keith Wenning,QB,23,0,Ball State,6-3,218,5.0,28.0,,100.0,7.07,4.25,Baltimore Ravens / 6th / 194th pick / 2014 3 | 1,2,2014,Dustin Vaughan,QB,23,0,West Texas A&M,6-5,235,4.95,29.0,,108.0,7.25,4.43, 4 | 2,3,2014,Logan Thomas,QB,22,3,Virginia Tech,6-6,248,4.61,35.5,,118.0,7.05,4.18,Arizona Cardinals / 4th / 120th pick / 2014 5 | 3,4,2014,Connor Shaw,QB,22,0,South Carolina,6-0,206,4.66,34.0,,116.0,7.07,4.33, 6 | 4,5,2014,Tom Savage,QB,23,4,Pittsburgh,6-4,228,4.97,27.0,,105.0,7.33,4.36,Houston Texans / 4th / 135th pick / 2014 7 | 5,6,2014,Aaron Murray,QB,23,0,Georgia,6-0,207,4.84,,,,,,Kansas City Chiefs / 5th / 163rd pick / 2014 8 | 6,7,2014,Stephen Morris,QB,21,0,Miami (FL),6-2,213,4.63,30.0,,111.0,7.36,4.49, 9 | 7,8,2014,Zach Mettenberger,QB,22,1,LSU,6-5,224,,,,,,,Tennessee Titans / 6th / 178th pick / 2014 10 | 8,9,2014,A.J. McCarron,QB,23,4,Alabama,6-3,220,4.94,28.0,,99.0,7.18,4.34,Cincinnati Bengals / 5th / 164th pick / 2014 11 | 9,10,2014,Johnny Manziel,QB,21,5,Texas A&M,6-0,207,4.68,31.5,,113.0,6.75,4.03,Cleveland Browns / 1st / 22nd pick / 2014 12 | 10,11,2014,Jimmy Garoppolo,QB,22,25,East. Illinois,6-2,226,4.97,30.5,,110.0,7.04,4.26,New England Patriots / 2nd / 62nd pick / 2014 13 | 11,12,2014,David Fales,QB,23,1,San Jose State,6-2,212,4.99,28.0,,103.0,7.55,4.5,Chicago Bears / 6th / 183rd pick / 2014 14 | 12,13,2014,Derek Carr,QB,22,61,Fresno State,6-2,214,4.69,34.5,,110.0,,4.2,Oakland Raiders / 2nd / 36th pick / 2014 15 | 13,14,2014,Teddy Bridgewater,QB,21,28,Louisville,6-2,214,,30.0,,113.0,7.17,4.2,Minnesota Vikings / 1st / 32nd pick / 2014 16 | 14,15,2014,Blake Bortles,QB,21,48,Central Florida,6-5,232,4.93,32.5,,115.0,7.08,4.21,Jacksonville Jaguars / 1st / 3rd pick / 2014 17 | -------------------------------------------------------------------------------- /combine/combinedata/2014/RB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2014,Damien Williams,RB,21,18,Oklahoma,5-11,222,4.45,35.5,16.0,121.0,7.37,4.25, 3 | 1,2,2014,Andre Williams,RB,21,7,Boston Col.,5-11,230,4.56,38.0,,129.0,7.27,4.06,New York Giants / 4th / 113th pick / 2014 4 | 2,3,2014,"James Wilder, Jr.",RB,21,0,Florida State,6-3,232,4.65,35.0,18.0,121.0,6.92,4.24, 5 | 3,4,2014,James White,RB,22,36,Wisconsin,5-9,204,4.57,32.0,23.0,114.0,7.05,4.2,New England Patriots / 4th / 130th pick / 2014 6 | 4,5,2014,Terrance West,RB,23,12,Towson,5-9,225,4.56,33.5,16.0,120.0,,,Cleveland Browns / 3rd / 94th pick / 2014 7 | 5,6,2014,De'Anthony Thomas,RB,21,6,Oregon,5-9,174,4.39,32.0,8.0,124.0,,,Kansas City Chiefs / 4th / 124th pick / 2014 8 | 6,7,2014,Lorenzo Taliaferro,RB,22,3,Coastal Carolina,6-0,229,4.58,33.0,18.0,118.0,6.88,4.22,Baltimore Ravens / 4th / 138th pick / 2014 9 | 7,8,2014,Jerome Smith,RB,22,0,Syracuse,5-11,220,4.84,36.0,14.0,118.0,7.53,4.6, 10 | 8,9,2014,Charles Sims,RB,23,14,West Virginia,6-0,214,4.48,37.5,17.0,126.0,7.16,4.3,Tampa Bay Buccaneers / 3rd / 69th pick / 2014 11 | 9,10,2014,Lache Seastrunk,RB,22,0,Baylor,5-9,201,4.51,41.5,15.0,134.0,,,Washington Redskins / 6th / 186th pick / 2014 12 | 10,11,2014,Bishop Sankey,RB,21,6,Washington,5-9,209,4.49,35.5,26.0,126.0,6.75,4.0,Tennessee Titans / 2nd / 54th pick / 2014 13 | 11,12,2014,Silas Redd,RB,22,1,USC,5-10,212,4.7,37.0,18.0,122.0,,, 14 | 12,13,2014,LaDarius Perkins,RB,23,0,Mississippi State,5-7,195,4.46,35.5,23.0,124.0,7.08,4.3, 15 | 13,14,2014,Jerick McKinnon,RB,21,22,Georgia Southern,5-9,209,4.41,40.5,32.0,132.0,6.83,4.12,Minnesota Vikings / 3rd / 96th pick / 2014 16 | 14,15,2014,Tre Mason,RB,20,7,Auburn,5-8,207,4.5,38.5,,126.0,,4.15,St. Louis Rams / 3rd / 75th pick / 2014 17 | 15,16,2014,Henry Josey,RB,22,0,Missouri,5-8,194,4.43,34.5,20.0,118.0,7.07,4.13, 18 | 16,17,2014,Storm Johnson,RB,21,0,Central Florida,6-0,209,4.6,35.5,16.0,118.0,,,Jacksonville Jaguars / 7th / 222nd pick / 2014 19 | 17,18,2014,Carlos Hyde,RB,23,31,Ohio State,6-0,230,4.62,34.5,19.0,114.0,,,San Francisco 49ers / 2nd / 57th pick / 2014 20 | 18,19,2014,Jeremy Hill,RB,21,22,LSU,6-1,233,4.56,29.0,20.0,113.0,,,Cincinnati Bengals / 2nd / 55th pick / 2014 21 | 19,20,2014,Marion Grice,RB,22,0,Arizona State,6-0,208,4.67,,,,,,San Diego Chargers / 6th / 201st pick / 2014 22 | 20,21,2014,Tyler Gaffney,RB,22,0,Stanford,5-11,220,4.49,36.5,,116.0,6.78,4.18,Carolina Panthers / 6th / 204th pick / 2014 23 | 21,22,2014,Devonta Freeman,RB,21,47,Florida State,5-8,206,4.58,31.5,,118.0,7.11,4.26,Atlanta Falcons / 4th / 103rd pick / 2014 24 | 22,23,2014,David Fluellen,RB,22,0,Toledo,5-11,224,4.72,36.5,,120.0,6.9,, 25 | 23,24,2014,Isaiah Crowell,RB,21,25,Arkansas,5-11,224,4.57,38.0,23.0,117.0,,, 26 | 24,25,2014,Ka'Deem Carey,RB,21,3,Arizona,5-9,207,4.69,32.5,19.0,115.0,7.08,4.38,Chicago Bears / 4th / 117th pick / 2014 27 | 25,26,2014,Alfred Blue,RB,22,19,LSU,6-2,223,4.63,32.0,13.0,121.0,7.15,4.5,Houston Texans / 6th / 181st pick / 2014 28 | 26,27,2014,Kapri Bibbs,RB,21,3,Colorado State,5-9,212,4.67,29.0,24.0,106.0,,, 29 | 27,28,2014,George Atkinson,RB,21,0,Notre Dame,6-1,218,4.48,38.0,19.0,121.0,7.07,4.46, 30 | 28,29,2014,Antonio Andrews,RB,21,4,Western Kentucky,5-10,225,4.82,29.5,20.0,106.0,7.24,4.49, 31 | -------------------------------------------------------------------------------- /combine/combinedata/2014/TE.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2014,Larry Webster,TE,24,0,Bloomsburg,6-6,252,4.58,36.5,17.0,123.0,7.29,4.44,Detroit Lions / 4th / 136th pick / 2014 3 | 1,2,2014,Austin Seferian-Jenkins,TE,21,10,Washington,6-5,262,4.75,,20.0,,,,Tampa Bay Buccaneers / 2nd / 38th pick / 2014 4 | 2,3,2014,Richard Rodgers,TE,22,13,California,6-4,257,4.87,31.5,16.0,116.0,7.23,4.47,Green Bay Packers / 3rd / 98th pick / 2014 5 | 3,4,2014,Troy Niklas,TE,21,1,Notre Dame,6-6,270,4.84,32.0,27.0,114.0,7.57,4.55,Arizona Cardinals / 2nd / 52nd pick / 2014 6 | 4,5,2014,Jordan Najvar,TE,23,0,Baylor,6-6,256,4.93,32.5,18.0,112.0,7.14,4.47, 7 | 5,6,2014,Jake Murphy,TE,24,0,Utah,6-4,249,4.79,33.0,24.0,114.0,7.18,4.27, 8 | 6,7,2014,Arthur Lynch,TE,23,0,Georgia,6-5,258,4.82,29.5,28.0,116.0,7.38,4.35,Miami Dolphins / 5th / 155th pick / 2014 9 | 7,8,2014,Marcel Jensen,TE,24,0,Fresno State,6-6,259,4.85,35.0,24.0,115.0,7.38,4.6, 10 | 8,9,2014,Nic Jacobs,TE,22,0,McNeese State,6-5,269,4.89,,15.0,,,, 11 | 9,10,2014,Xavier Grimble,TE,21,2,USC,6-4,257,4.76,26.5,,113.0,,, 12 | 10,11,2014,Crockett Gillmore,TE,22,4,Colorado State,6-6,260,4.89,33.5,,120.0,7.42,4.44,Baltimore Ravens / 3rd / 99th pick / 2014 13 | 11,12,2014,C.J. Fiedorowicz,TE,22,6,Iowa,6-5,265,4.76,31.5,25.0,116.0,7.1,4.26,Houston Texans / 3rd / 65th pick / 2014 14 | 12,13,2014,Eric Ebron,TE,20,27,North Carolina,6-4,250,4.6,32.0,24.0,120.0,,,Detroit Lions / 1st / 10th pick / 2014 15 | 13,14,2014,Rob Blanchflower,TE,23,0,Massachusetts,6-4,256,4.82,,,,,,Pittsburgh Steelers / 7th / 230th pick / 2014 16 | 14,15,2014,Jace Amaro,TE,21,4,Texas Tech,6-5,265,4.74,33.0,28.0,118.0,7.42,4.3,New York Jets / 2nd / 49th pick / 2014 17 | -------------------------------------------------------------------------------- /combine/combinedata/2014/WR.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2014,Albert Wilson,WR,21,23,Georgia State,5-9,202,4.43,37.5,10.0,123.0,7.0,4.21, 3 | 1,2,2014,Sammy Watkins,WR,20,40,Clemson,6-1,211,4.43,34.0,16.0,126.0,6.95,4.34,Buffalo Bills / 1st / 4th pick / 2014 4 | 2,3,2014,L'Damian Washington,WR,22,0,Missouri,6-4,195,4.46,32.0,8.0,115.0,7.19,4.35, 5 | 3,4,2014,Devin Street,WR,22,1,Pittsburgh,6-3,198,4.55,37.0,,124.0,6.89,4.01,Dallas Cowboys / 5th / 146th pick / 2014 6 | 4,5,2014,Josh Stewart,WR,21,0,Oklahoma State,5-10,178,4.69,35.0,11.0,117.0,7.1,4.33, 7 | 5,6,2014,Willie Snead,WR,21,28,Ball State,5-11,195,4.62,33.5,11.0,113.0,7.19,4.39, 8 | 6,7,2014,Jalen Saunders,WR,21,0,Oklahoma,5-9,165,4.44,34.0,,122.0,,,New York Jets / 4th / 104th pick / 2014 9 | 7,8,2014,Allen Robinson,WR,20,36,Penn State,6-3,220,4.6,39.0,,127.0,7.0,4.0,Jacksonville Jaguars / 2nd / 61st pick / 2014 10 | 8,9,2014,Paul Richardson,WR,21,15,Colorado,6-0,175,4.4,38.0,,124.0,7.09,,Seattle Seahawks / 2nd / 45th pick / 2014 11 | 9,10,2014,Tevin Reese,WR,23,0,Baylor,5-10,163,4.46,41.0,,132.0,6.63,4.18,San Diego Chargers / 7th / 240th pick / 2014 12 | 10,11,2014,Kevin Norwood,WR,24,1,Alabama,6-2,198,4.48,33.0,8.0,121.0,6.68,4.32,Seattle Seahawks / 4th / 123rd pick / 2014 13 | 11,12,2014,Donte Moncrief,WR,20,20,Mississippi,6-2,221,4.4,39.5,13.0,132.0,7.02,4.3,Indianapolis Colts / 3rd / 90th pick / 2014 14 | 12,13,2014,Jordan Matthews,WR,21,25,Vanderbilt,6-3,212,4.46,35.5,21.0,120.0,6.95,4.18,Philadelphia Eagles / 2nd / 42nd pick / 2014 15 | 13,14,2014,Marcus Lucas,WR,22,0,Missouri,6-4,218,4.6,36.0,20.0,124.0,7.07,4.25, 16 | 14,15,2014,Marqise Lee,WR,22,18,USC,6-0,192,4.52,38.0,,127.0,,4.01,Jacksonville Jaguars / 2nd / 39th pick / 2014 17 | 15,16,2014,Cody Latimer,WR,21,6,Indiana,6-2,215,4.52,,23.0,,,,Denver Broncos / 2nd / 56th pick / 2014 18 | 16,17,2014,Jarvis Landry,WR,21,50,LSU,5-11,205,4.65,28.5,12.0,110.0,,,Miami Dolphins / 2nd / 63rd pick / 2014 19 | 17,18,2014,Jeff Janis,WR,22,2,Saginaw Valley State,6-3,219,4.42,37.5,20.0,123.0,6.64,3.98,Green Bay Packers / 7th / 236th pick / 2014 20 | 18,19,2014,Allen Hurns,WR,22,25,Miami (FL),6-1,198,4.55,31.0,14.0,120.0,7.23,4.5, 21 | 19,20,2014,Josh Huff,WR,22,6,Oregon,5-11,206,4.51,35.5,14.0,116.0,,,Philadelphia Eagles / 3rd / 86th pick / 2014 22 | 20,21,2014,Robert Herron,WR,21,0,Wyoming,5-9,193,4.48,35.5,18.0,125.0,6.84,4.27,Tampa Bay Buccaneers / 6th / 185th pick / 2014 23 | 21,22,2014,Matt Hazel,WR,22,0,Coastal Carolina,6-1,198,4.5,36.5,15.0,118.0,7.08,4.2,Miami Dolphins / 6th / 190th pick / 2014 24 | 22,23,2014,Ryan Grant,WR,23,10,Tulane,6-0,199,4.64,35.5,8.0,119.0,6.68,4.11,Washington Redskins / 5th / 142nd pick / 2014 25 | 23,24,2014,Bennie Fowler,WR,22,8,Michigan State,6-1,217,4.52,36.0,,126.0,7.06,4.18, 26 | 24,25,2014,Shaquelle Evans,WR,23,0,UCLA,6-1,213,4.51,34.5,13.0,122.0,7.07,4.21,New York Jets / 4th / 115th pick / 2014 27 | 25,26,2014,Mike Evans,WR,20,55,Texas A&M,6-5,231,4.53,37.0,12.0,,7.08,4.26,Tampa Bay Buccaneers / 1st / 7th pick / 2014 28 | 26,27,2014,Quincy Enunwa,WR,21,13,Nebraska,6-2,225,4.41,,19.0,,,,New York Jets / 6th / 209th pick / 2014 29 | 27,28,2014,Bruce Ellington,WR,22,7,South Carolina,5-9,197,4.45,39.5,15.0,120.0,6.69,3.95,San Francisco 49ers / 4th / 106th pick / 2014 30 | 28,29,2014,Damian Copeland,WR,23,0,Louisville,5-11,184,4.5,40.0,12.0,120.0,6.53,3.9, 31 | 29,30,2014,Brandin Cooks,WR,20,56,Oregon State,5-10,189,4.33,36.0,16.0,120.0,6.76,3.81,New Orleans Saints / 1st / 20th pick / 2014 32 | 30,31,2014,Kain Colter,WR,23,0,Northwestern,5-10,198,4.71,,,,,, 33 | 31,32,2014,Brandon Coleman,WR,21,10,Rutgers,6-6,225,4.56,32.5,21.0,,7.33,4.51, 34 | 32,33,2014,Michael Campanaro,WR,23,4,Wake Forest,5-9,192,4.46,39.0,20.0,122.0,6.77,4.01,Baltimore Ravens / 7th / 218th pick / 2014 35 | 33,34,2014,Trey Burton,WR,22,11,Florida,6-2,224,4.62,30.0,,112.0,7.14,4.32, 36 | 34,35,2014,Isaiah Burse,WR,22,0,Fresno State,5-10,188,4.58,31.0,16.0,115.0,6.74,3.94, 37 | 35,36,2014,Martavis Bryant,WR,22,20,Clemson,6-4,211,4.42,39.0,16.0,124.0,7.18,4.15,Pittsburgh Steelers / 4th / 118th pick / 2014 38 | 36,37,2014,Corey Brown,WR,22,11,Ohio State,5-11,178,4.51,33.0,,116.0,7.16,4.22, 39 | 37,38,2014,John Brown,WR,23,36,Pittsburg State,5-10,179,4.34,36.5,,119.0,6.91,4.12,Arizona Cardinals / 3rd / 91st pick / 2014 40 | 38,39,2014,Chris Boyd,WR,22,0,Vanderbilt,6-4,206,4.73,,12.0,,,, 41 | 39,40,2014,Kelvin Benjamin,WR,23,23,Florida State,6-5,240,4.61,32.5,13.0,119.0,7.33,4.39,Carolina Panthers / 1st / 28th pick / 2014 42 | 40,41,2014,"Odell Beckham, Jr.",WR,21,54,LSU,5-11,198,4.38,38.5,7.0,122.0,6.69,3.94,New York Giants / 1st / 12th pick / 2014 43 | 41,42,2014,Dri Archer,WR,22,0,Kent State,5-8,173,4.26,38.0,20.0,122.0,6.86,4.06,Pittsburgh Steelers / 3rd / 97th pick / 2014 44 | 42,43,2014,Davante Adams,WR,21,46,Fresno State,6-1,212,4.56,39.5,14.0,123.0,6.82,4.3,Green Bay Packers / 2nd / 53rd pick / 2014 45 | 43,44,2014,Jared Abbrederis,WR,23,1,Wisconsin,6-1,195,4.5,30.5,4.0,117.0,6.8,4.08,Green Bay Packers / 5th / 176th pick / 2014 46 | -------------------------------------------------------------------------------- /combine/combinedata/2015/QB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2015,Jameis Winston,QB,21,59,Florida State,6-4,231,4.97,28.5,,103.0,7.16,4.36,Tampa Bay Buccaneers / 1st / 1st pick / 2015 3 | 1,2,2015,Bryce Petty,QB,23,4,Baylor,6-3,230,4.87,34.0,,121.0,6.91,4.13,New York Jets / 4th / 103rd pick / 2015 4 | 2,3,2015,Marcus Mariota,QB,21,48,Oregon,6-4,222,4.52,36.0,,121.0,6.87,4.11,Tennessee Titans / 1st / 2nd pick / 2015 5 | 3,4,2015,Sean Mannion,QB,22,1,Oregon State,6-6,229,5.14,31.0,,105.0,7.29,4.39,St. Louis Rams / 3rd / 89th pick / 2015 6 | 4,5,2015,Brett Hundley,QB,21,5,UCLA,6-3,226,4.63,36.0,,120.0,6.93,3.98,Green Bay Packers / 5th / 147th pick / 2015 7 | 5,6,2015,Garrett Grayson,QB,23,0,Colorado State,6-2,213,4.75,,,,,,New Orleans Saints / 3rd / 75th pick / 2015 8 | -------------------------------------------------------------------------------- /combine/combinedata/2015/RB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2015,T.J. Yeldon,RB,21,21,Alabama,6-1,226,4.61,36.0,22.0,117.0,7.19,4.22,Jacksonville Jaguars / 2nd / 36th pick / 2015 3 | 1,2,2015,Trey Williams,RB,22,0,Texas A&M,5-7,195,4.49,33.5,18.0,119.0,6.84,4.12, 4 | 2,3,2015,Karlos Williams,RB,21,4,Florida State,6-1,230,4.48,33.5,16.0,117.0,7.16,4.46,Buffalo Bills / 5th / 155th pick / 2015 5 | 3,4,2015,Josh Robinson,RB,22,0,Mississippi State,5-8,217,4.7,32.0,21.0,113.0,,,Indianapolis Colts / 6th / 205th pick / 2015 6 | 4,5,2015,Thomas Rawls,RB,21,12,Central Michigan,5-9,215,4.65,35.5,15.0,116.0,,, 7 | 5,6,2015,Marcus Murphy,RB,23,2,Missouri,5-9,198,4.61,29.0,11.0,109.0,,4.4,New Orleans Saints / 7th / 230th pick / 2015 8 | 6,7,2015,Terrence Magee,RB,21,0,LSU,5-8,213,4.62,37.0,22.0,115.0,7.52,4.37, 9 | 7,8,2015,Jeremy Langford,RB,23,8,Michigan State,6-0,208,4.42,34.5,,118.0,7.22,4.32,Chicago Bears / 4th / 106th pick / 2015 10 | 8,9,2015,Matt Jones,RB,21,10,Florida,6-2,231,4.61,31.5,20.0,112.0,,4.2,Washington Redskins / 3rd / 95th pick / 2015 11 | 9,10,2015,Duke Johnson,RB,21,27,Miami (FL),5-9,207,4.54,33.5,,121.0,,,Cleveland Browns / 3rd / 77th pick / 2015 12 | 10,11,2015,David Johnson,RB,23,36,New Mexico,6-1,224,4.5,41.5,25.0,127.0,6.82,4.27,Arizona Cardinals / 3rd / 86th pick / 2015 13 | 11,12,2015,Todd Gurley,RB,20,53,Georgia,6-1,222,4.52,,17.0,,,,St. Louis Rams / 1st / 10th pick / 2015 14 | 12,13,2015,Melvin Gordon,RB,21,42,Wisconsin,6-1,215,4.52,35.0,19.0,126.0,7.04,4.07,San Diego Chargers / 1st / 15th pick / 2015 15 | 13,14,2015,Mike Davis,RB,22,10,South Carolina,5-9,217,4.61,34.0,17.0,116.0,7.0,4.18,San Francisco 49ers / 4th / 126th pick / 2015 16 | 14,15,2015,John Crockett,RB,23,0,North Dakota State,6-0,217,4.62,40.0,15.0,125.0,7.15,4.25, 17 | 15,16,2015,Tevin Coleman,RB,21,33,Indiana,5-11,206,4.4,,22.0,,,,Atlanta Falcons / 3rd / 73rd pick / 2015 18 | 16,17,2015,David Cobb,RB,21,1,Minnesota,5-11,229,4.81,38.5,17.0,121.0,,,Tennessee Titans / 5th / 138th pick / 2015 19 | 17,18,2015,Cameron Artis-Payne,RB,24,5,Auburn,5-10,212,4.53,36.5,,118.0,7.13,,Carolina Panthers / 5th / 174th pick / 2015 20 | 18,19,2015,Javorius Allen,RB,23,14,USC,6-0,221,4.53,35.5,11.0,121.0,6.96,4.28,Baltimore Ravens / 4th / 125th pick / 2015 21 | 19,20,2015,Jay Ajayi,RB,21,20,Boise State,6-0,221,4.57,39.0,19.0,121.0,7.1,4.1,Miami Dolphins / 5th / 149th pick / 2015 22 | 20,21,2015,Ameer Abdullah,RB,21,13,Nebraska,5-9,205,4.6,42.5,24.0,130.0,6.79,3.95,Detroit Lions / 2nd / 54th pick / 2015 23 | -------------------------------------------------------------------------------- /combine/combinedata/2015/TE.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2015,Maxx Williams,TE,20,6,Minnesota,6-4,249,4.78,34.5,17.0,117.0,7.3,4.37,Baltimore Ravens / 2nd / 55th pick / 2015 3 | 1,2,2015,Clive Walford,TE,23,7,Miami (FL),6-4,251,4.79,35.0,20.0,120.0,7.32,4.57,Oakland Raiders / 3rd / 68th pick / 2015 4 | 2,3,2015,Eric Tomlinson,TE,22,2,Texas-El Paso,6-6,263,4.98,30.5,19.0,110.0,7.46,4.54, 5 | 3,4,2015,Randall Telfer,TE,22,0,USC,6-4,250,4.83,,20.0,,,,Cleveland Browns / 6th / 198th pick / 2015 6 | 4,5,2015,Wes Saxton,TE,21,0,South Alabama,6-3,248,4.65,36.0,,119.0,7.29,4.49, 7 | 5,6,2015,MyCole Pruitt,TE,22,3,Southern Illinois,6-2,251,4.58,38.0,17.0,118.0,7.25,4.37,Minnesota Vikings / 5th / 143rd pick / 2015 8 | 6,7,2015,Nick O'Leary,TE,22,6,Florida State,6-3,252,4.93,30.5,21.0,110.0,7.4,4.5,Buffalo Bills / 6th / 194th pick / 2015 9 | 7,8,2015,Tyler Kroft,TE,22,6,Rutgers,6-5,246,4.75,,17.0,,,,Cincinnati Bengals / 3rd / 85th pick / 2015 10 | 8,9,2015,Ben Koyack,TE,21,1,Notre Dame,6-5,255,4.79,,,,,,Jacksonville Jaguars / 7th / 229th pick / 2015 11 | 9,10,2015,Jesse James,TE,20,11,Penn State,6-7,261,4.83,37.5,26.0,121.0,7.53,4.5,Pittsburgh Steelers / 5th / 160th pick / 2015 12 | 10,11,2015,Jeff Heuerman,TE,22,5,Ohio State,6-5,254,4.81,,26.0,,,,Denver Broncos / 3rd / 92nd pick / 2015 13 | 11,12,2015,Gerald Christian,TE,23,0,Louisville,6-3,244,4.87,,28.0,,7.62,4.7,Arizona Cardinals / 7th / 256th pick / 2015 14 | 12,13,2015,Nick Boyle,TE,22,9,Pittsburgh,6-4,268,5.04,30.5,20.0,112.0,7.13,4.23,Baltimore Ravens / 5th / 171st pick / 2015 15 | 13,14,2015,E.J. Bibbs,TE,23,0,Iowa State,6-2,258,4.88,,20.0,,,, 16 | 14,15,2015,Blake Bell,TE,23,3,Oklahoma,6-6,252,4.8,33.0,14.0,116.0,6.85,4.32,San Francisco 49ers / 4th / 117th pick / 2015 17 | -------------------------------------------------------------------------------- /combine/combinedata/2015/WR.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2015,Kevin White,WR,22,2,West Virginia,6-3,215,4.35,36.5,23.0,123.0,6.92,4.14,Chicago Bears / 1st / 7th pick / 2015 3 | 1,2,2015,DeAndrew White,WR,23,0,Alabama,5-11,193,4.44,34.5,,118.0,6.97,4.18, 4 | 2,3,2015,Darren Waller,WR,22,10,Georgia Tech,6-6,238,4.46,37.0,12.0,125.0,7.07,4.25,Baltimore Ravens / 6th / 204th pick / 2015 5 | 3,4,2015,Jaelen Strong,WR,21,2,Arizona State,6-2,217,4.44,42.0,,123.0,,,Houston Texans / 3rd / 70th pick / 2015 6 | 4,5,2015,Devin Smith,WR,23,2,Ohio State,6-0,196,4.42,39.0,10.0,122.0,,4.15,New York Jets / 2nd / 37th pick / 2015 7 | 5,6,2015,DeAndre Smelter,WR,23,0,Georgia Tech,6-2,226,4.52,,,,,,San Francisco 49ers / 4th / 132nd pick / 2015 8 | 6,7,2015,Breshad Perriman,WR,21,11,Central Florida,6-2,212,,,,,,,Baltimore Ravens / 1st / 26th pick / 2015 9 | 7,8,2015,DeVante Parker,WR,22,25,Louisville,6-3,209,4.45,36.5,17.0,125.0,,,Miami Dolphins / 1st / 14th pick / 2015 10 | 8,9,2015,J.J. Nelson,WR,22,12,Ala-Birmingham,5-10,156,4.28,36.0,,127.0,7.02,4.15,Arizona Cardinals / 5th / 159th pick / 2015 11 | 9,10,2015,Keith Mumphery,WR,22,2,Michigan State,6-0,215,4.54,32.5,,121.0,7.07,4.25,Houston Texans / 5th / 175th pick / 2015 12 | 10,11,2015,Ty Montgomery,WR,22,16,Stanford,6-0,221,4.55,40.5,,121.0,6.97,4.21,Green Bay Packers / 3rd / 94th pick / 2015 13 | 11,12,2015,Tre McBride,WR,22,1,William & Mary,6-0,210,4.41,38.0,16.0,122.0,6.96,4.08,Tennessee Titans / 7th / 245th pick / 2015 14 | 12,13,2015,Vince Mayle,WR,23,0,Washington State,6-2,224,4.67,35.5,,117.0,6.93,4.13,Cleveland Browns / 4th / 123rd pick / 2015 15 | 13,14,2015,Tyler Lockett,WR,22,40,Kansas State,5-10,182,4.4,35.5,,121.0,6.89,4.07,Seattle Seahawks / 3rd / 69th pick / 2015 16 | 14,15,2015,Tony Lippett,WR,22,6,Michigan State,6-2,192,4.61,36.0,10.0,114.0,6.92,4.13,Miami Dolphins / 5th / 156th pick / 2015 17 | 15,16,2015,Justin Hardy,WR,23,9,East Carolina,5-10,192,4.56,36.5,11.0,114.0,6.63,4.21,Atlanta Falcons / 4th / 107th pick / 2015 18 | 16,17,2015,Rannell Hall,WR,22,0,Central Florida,6-0,198,4.6,41.0,16.0,132.0,6.86,4.15, 19 | 17,18,2015,Rashad Greene,WR,22,2,Florida State,5-11,182,4.53,36.5,,122.0,6.88,4.12,Jacksonville Jaguars / 5th / 139th pick / 2015 20 | 18,19,2015,Dorial Green-Beckham,WR,21,7,Oklahoma,6-5,237,4.49,33.5,13.0,119.0,6.89,4.45,Tennessee Titans / 2nd / 40th pick / 2015 21 | 19,20,2015,Devin Funchess,WR,20,21,Michigan,6-4,232,4.7,38.5,17.0,122.0,,,Carolina Panthers / 2nd / 41st pick / 2015 22 | 20,21,2015,Phillip Dorsett,WR,22,15,Miami (FL),5-10,185,4.33,37.0,13.0,122.0,6.7,4.11,Indianapolis Colts / 1st / 29th pick / 2015 23 | 21,22,2015,Stefon Diggs,WR,21,44,Maryland,6-0,195,4.46,35.0,,115.0,7.03,4.32,Minnesota Vikings / 5th / 146th pick / 2015 24 | 22,23,2015,Geremy Davis,WR,23,0,Connecticut,6-2,216,4.49,36.5,23.0,124.0,6.86,4.18,New York Giants / 6th / 186th pick / 2015 25 | 23,24,2015,Jamison Crowder,WR,21,27,Duke,5-8,185,4.56,37.0,10.0,115.0,7.17,4.32,Washington Redskins / 4th / 105th pick / 2015 26 | 24,25,2015,Amari Cooper,WR,20,43,Alabama,6-1,211,4.42,33.0,,120.0,6.71,3.98,Oakland Raiders / 1st / 4th pick / 2015 27 | 25,26,2015,Chris Conley,WR,22,19,Georgia,6-2,213,4.35,45.0,18.0,139.0,7.06,4.3,Kansas City Chiefs / 3rd / 76th pick / 2015 28 | 26,27,2015,Sammie Coates,WR,21,4,Auburn,6-1,212,4.43,41.0,23.0,131.0,6.98,4.06,Pittsburgh Steelers / 3rd / 87th pick / 2015 29 | 27,28,2015,Kaelin Clay,WR,23,3,Utah,5-10,195,4.51,33.0,10.0,113.0,6.97,4.26,Tampa Bay Buccaneers / 6th / 184th pick / 2015 30 | 28,29,2015,Mario Alford,WR,23,0,West Virginia,5-8,180,4.43,34.0,13.0,121.0,6.64,4.07,Cincinnati Bengals / 7th / 238th pick / 2015 31 | 29,30,2015,Nelson Agholor,WR,21,22,USC,6-0,198,4.42,,12.0,,,,Philadelphia Eagles / 1st / 20th pick / 2015 32 | -------------------------------------------------------------------------------- /combine/combinedata/2016/QB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2016,Carson Wentz,QB,23,45,North Dakota State,6-5,237,4.77,30.5,,118.0,6.86,4.15,Philadelphia Eagles / 1st / 2nd pick / 2016 3 | 1,2,2016,Nate Sudfeld,QB,22,1,Indiana,6-6,234,5.02,29.0,,105.0,,,Washington Redskins / 6th / 187th pick / 2016 4 | 2,3,2016,Dak Prescott,QB,22,60,Mississippi State,6-2,226,4.79,32.5,,116.0,7.11,4.32,Dallas Cowboys / 4th / 135th pick / 2016 5 | 3,4,2016,Paxton Lynch,QB,22,2,Memphis,6-7,244,4.86,36.0,,118.0,7.14,4.26,Denver Broncos / 1st / 26th pick / 2016 6 | 4,5,2016,Cody Kessler,QB,22,5,USC,6-1,220,4.89,29.5,,104.0,7.32,4.0,Cleveland Browns / 3rd / 93rd pick / 2016 7 | 5,6,2016,Cardale Jones,QB,23,0,Ohio State,6-5,253,4.81,36.0,,,,,Buffalo Bills / 4th / 139th pick / 2016 8 | 6,7,2016,Kevin Hogan,QB,23,2,Stanford,6-3,218,4.78,32.5,,113.0,6.9,4.31,Kansas City Chiefs / 5th / 162nd pick / 2016 9 | 7,8,2016,Jared Goff,QB,21,43,California,6-4,215,4.82,27.0,,110.0,7.17,4.47,Los Angeles Rams / 1st / 1st pick / 2016 10 | 8,9,2016,Jeff Driskel,QB,22,5,Louisiana Tech,6-4,234,4.56,32.0,,122.0,7.19,4.25,San Francisco 49ers / 6th / 207th pick / 2016 11 | 9,10,2016,Connor Cook,QB,23,0,Michigan State,6-4,217,4.79,33.0,,113.0,7.21,4.28,Oakland Raiders / 4th / 100th pick / 2016 12 | 10,11,2016,Jacoby Brissett,QB,23,24,North Carolina State,6-4,231,4.94,31.0,,113.0,7.17,4.53,New England Patriots / 3rd / 91st pick / 2016 13 | 11,12,2016,Brandon Allen,QB,23,2,Arkansas,6-1,217,4.84,28.0,,110.0,7.06,4.33,Jacksonville Jaguars / 6th / 201st pick / 2016 14 | -------------------------------------------------------------------------------- /combine/combinedata/2016/RB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2016,Jonathan Williams,RB,22,3,Arkansas,5-11,220,4.56,,16.0,,,,Buffalo Bills / 5th / 156th pick / 2016 3 | 1,2,2016,Brandon Wilds,RB,22,0,South Carolina,6-1,220,4.54,36.5,21.0,118.0,7.08,4.33, 4 | 2,3,2016,Deandre Washington,RB,23,12,Texas Tech,5-8,204,4.49,34.5,24.0,116.0,7.03,4.2,Oakland Raiders / 5th / 143rd pick / 2016 5 | 3,4,2016,Wendell Smallwood,RB,22,10,West Virginia,5-10,208,4.47,33.5,14.0,120.0,6.83,4.28,Philadelphia Eagles / 5th / 153rd pick / 2016 6 | 4,5,2016,C.J. Prosise,RB,21,5,Notre Dame,6-0,220,4.48,35.5,,121.0,,,Seattle Seahawks / 3rd / 90th pick / 2016 7 | 5,6,2016,Paul Perkins,RB,21,5,UCLA,5-10,208,4.54,32.0,19.0,124.0,,,New York Giants / 5th / 149th pick / 2016 8 | 6,7,2016,Tre Madden,RB,22,1,USC,6-0,223,4.53,,24.0,,,, 9 | 7,8,2016,Daniel Lasco,RB,23,0,California,6-0,209,4.46,41.5,23.0,135.0,7.22,4.26,New Orleans Saints / 7th / 237th pick / 2016 10 | 8,9,2016,Jordan Howard,RB,21,26,Indiana,6-0,230,4.57,34.0,16.0,122.0,,,Chicago Bears / 5th / 150th pick / 2016 11 | 9,10,2016,Derrick Henry,RB,22,29,Alabama,6-3,247,4.54,37.0,22.0,130.0,7.2,4.38,Tennessee Titans / 2nd / 45th pick / 2016 12 | 10,11,2016,Josh Ferguson,RB,22,1,Illinois,5-9,198,4.48,34.5,21.0,120.0,,, 13 | 11,12,2016,Tyler Ervin,RB,22,0,San Jose State,5-10,192,4.41,39.0,17.0,130.0,,,Houston Texans / 4th / 119th pick / 2016 14 | 12,13,2016,Ezekiel Elliott,RB,20,52,Ohio State,6-0,225,4.47,32.5,,118.0,,,Dallas Cowboys / 1st / 4th pick / 2016 15 | 13,14,2016,Kenyan Drake,RB,22,23,Alabama,6-1,210,4.45,34.5,10.0,123.0,7.04,4.21,Miami Dolphins / 3rd / 73rd pick / 2016 16 | 14,15,2016,Kenneth Dixon,RB,22,5,Louisiana Tech,5-10,215,4.56,37.5,18.0,121.0,6.97,4.28,Baltimore Ravens / 4th / 134th pick / 2016 17 | 15,16,2016,Alex Collins,RB,21,14,Arkansas,5-10,217,4.59,28.5,18.0,113.0,,,Seattle Seahawks / 5th / 171st pick / 2016 18 | 16,17,2016,Tra Carson,RB,23,0,Texas A&M,5-11,227,4.63,,19.0,,,, 19 | 17,18,2016,Devontae Booker,RB,23,12,Utah,5-11,219,4.56,,22.0,,,,Denver Broncos / 4th / 136th pick / 2016 20 | 18,19,2016,Peyton Barber,RB,22,13,Auburn,5-10,228,4.64,32.5,20.0,111.0,7.0,4.21, 21 | -------------------------------------------------------------------------------- /combine/combinedata/2016/TE.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2016,Nick Vannett,TE,23,5,Ohio State,6-6,257,4.76,30.5,17.0,111.0,7.05,4.2,Seattle Seahawks / 3rd / 94th pick / 2016 3 | 1,2,2016,David Morgan,TE,22,1,Texas-San Antonio,6-4,262,,,,,,,Minnesota Vikings / 6th / 188th pick / 2016 4 | 2,3,2016,Ryan Malleck,TE,22,0,Virginia Tech,6-4,247,4.77,34.5,18.0,121.0,7.0,4.33, 5 | 3,4,2016,Austin Hooper,TE,21,20,Stanford,6-4,254,4.72,33.0,19.0,117.0,7.0,4.32,Atlanta Falcons / 3rd / 81st pick / 2016 6 | 4,5,2016,Tyler Higbee,TE,23,13,Western Kentucky,6-6,249,4.77,,,,,,Los Angeles Rams / 4th / 110th pick / 2016 7 | 5,6,2016,Hunter Henry,TE,21,14,Arkansas,6-5,250,4.79,,13.0,,,,San Diego Chargers / 2nd / 35th pick / 2016 8 | 6,7,2016,Temarrick Hemingway,TE,22,0,South Carolina State,6-5,244,4.71,30.5,18.0,115.0,6.88,4.31,Los Angeles Rams / 6th / 177th pick / 2016 9 | 7,8,2016,Thomas Duarte,TE,20,0,UCLA,6-2,231,4.72,33.5,12.0,118.0,6.97,4.24,Miami Dolphins / 7th / 231st pick / 2016 10 | 8,9,2016,Jerell Adams,TE,23,2,South Carolina,6-5,247,4.64,32.5,,117.0,7.05,4.31,New York Giants / 6th / 184th pick / 2016 11 | -------------------------------------------------------------------------------- /combine/combinedata/2016/WR.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2016,Laquon Treadwell,WR,20,6,Mississippi,6-2,221,4.52,33.0,12.0,117.0,,,Minnesota Vikings / 1st / 23rd pick / 2016 3 | 1,2,2016,Michael Thomas,WR,23,58,Ohio State,6-3,212,4.57,35.0,18.0,126.0,6.8,4.13,New Orleans Saints / 2nd / 47th pick / 2016 4 | 2,3,2016,Sterling Shepard,WR,23,22,Oklahoma,5-10,194,4.48,41.0,20.0,123.0,7.0,4.35,New York Giants / 2nd / 40th pick / 2016 5 | 3,4,2016,Tajae Sharpe,WR,21,11,Massachusetts,6-2,194,4.55,33.5,11.0,114.0,,,Tennessee Titans / 5th / 140th pick / 2016 6 | 4,5,2016,Hunter Sharp,WR,21,0,Utah State,5-11,198,4.58,32.5,12.0,116.0,7.12,4.19, 7 | 5,6,2016,Rashawn Scott,WR,24,0,Miami (FL),6-1,199,4.54,32.5,17.0,116.0,,, 8 | 6,7,2016,Alonzo Russell,WR,23,0,Toledo,6-4,206,4.54,29.5,12.0,112.0,7.18,4.33, 9 | 7,8,2016,Demarcus Robinson,WR,21,10,Florida,6-1,203,4.59,34.5,,123.0,6.77,4.19,Kansas City Chiefs / 4th / 126th pick / 2016 10 | 8,9,2016,Charone Peake,WR,23,1,Clemson,6-2,209,4.45,35.5,12.0,122.0,6.96,4.46,New York Jets / 7th / 241st pick / 2016 11 | 9,10,2016,Jordan Payton,WR,22,0,UCLA,6-1,207,4.47,34.5,,121.0,7.08,4.33,Cleveland Browns / 5th / 154th pick / 2016 12 | 10,11,2016,Chris Moore,WR,22,4,Cincinnati,6-1,206,4.53,37.0,10.0,130.0,6.76,4.2,Baltimore Ravens / 4th / 107th pick / 2016 13 | 11,12,2016,Malcolm Mitchell,WR,23,4,Georgia,6-0,198,4.45,36.0,15.0,129.0,6.94,4.34,New England Patriots / 4th / 112th pick / 2016 14 | 12,13,2016,Braxton Miller,WR,23,2,Ohio State,6-1,201,4.5,35.0,17.0,123.0,6.65,4.07,Houston Texans / 3rd / 85th pick / 2016 15 | 13,14,2016,Jalin Marshall,WR,20,1,Ohio State,5-10,200,4.6,37.5,16.0,125.0,6.8,4.13, 16 | 14,15,2016,Byron Marshall,WR,22,0,Oregon,5-9,201,4.42,,17.0,,,, 17 | 15,16,2016,Ricardo Louis,WR,21,3,Auburn,6-2,215,4.43,38.0,18.0,132.0,,,Cleveland Browns / 4th / 114th pick / 2016 18 | 16,17,2016,Rashard Higgins,WR,21,6,Colorado State,6-1,196,4.64,32.0,13.0,116.0,,,Cleveland Browns / 5th / 172nd pick / 2016 19 | 17,18,2016,Will Fuller,WR,21,19,Notre Dame,6-0,186,4.32,33.5,10.0,126.0,6.93,4.27,Houston Texans / 1st / 21st pick / 2016 20 | 18,19,2016,D.J. Foster,WR,22,1,Arizona State,5-10,193,4.57,35.5,14.0,117.0,6.75,4.07, 21 | 19,20,2016,Josh Doctson,WR,23,9,TCU,6-2,202,4.5,41.0,14.0,131.0,6.84,4.08,Washington Redskins / 1st / 22nd pick / 2016 22 | 20,21,2016,Trevor Davis,WR,22,2,California,6-1,188,4.42,38.5,11.0,124.0,6.6,4.22,Green Bay Packers / 5th / 163rd pick / 2016 23 | 21,22,2016,Cody Core,WR,21,3,Mississippi,6-3,205,4.47,31.5,14.0,119.0,,,Cincinnati Bengals / 6th / 199th pick / 2016 24 | 22,23,2016,Pharoh Cooper,WR,21,5,South Carolina,5-11,203,4.52,31.0,15.0,115.0,,,Los Angeles Rams / 4th / 117th pick / 2016 25 | 23,24,2016,Corey Coleman,WR,21,6,Baylor,5-11,194,4.42,40.5,17.0,129.0,,,Cleveland Browns / 1st / 15th pick / 2016 26 | 24,25,2016,Leonte Carroo,WR,22,2,Rutgers,6-0,211,4.5,35.5,14.0,120.0,,,Miami Dolphins / 3rd / 86th pick / 2016 27 | 25,26,2016,Aaron Burbridge,WR,22,1,Michigan State,6-0,206,4.56,30.5,20.0,115.0,7.22,4.31,San Francisco 49ers / 6th / 213th pick / 2016 28 | 26,27,2016,Tyler Boyd,WR,21,23,Pittsburgh,6-1,197,4.58,34.0,11.0,119.0,6.9,4.35,Cincinnati Bengals / 2nd / 55th pick / 2016 29 | 27,28,2016,Demarcus Ayers,WR,21,0,Houston,5-9,182,4.72,33.0,,123.0,,,Pittsburgh Steelers / 7th / 229th pick / 2016 30 | 28,29,2016,Geronimo Allison,WR,22,9,Illinois,6-3,196,4.67,33.0,,127.0,7.4,4.28, 31 | 29,30,2016,Bralon Addison,WR,22,0,Oregon,5-9,197,4.66,34.5,13.0,116.0,6.95,4.14, 32 | -------------------------------------------------------------------------------- /combine/combinedata/2017/QB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2017,Deshaun Watson,QB,21,39,Clemson,6-2,221,4.66,32.5,,119,6.95,4.31,Houston Texans / 1st / 12th pick / 2017 3 | 1,2,2017,Mitchell Trubisky,QB,22,28,North Carolina,6-2,222,4.67,27.5,,116,6.87,4.25,Chicago Bears / 1st / 2nd pick / 2017 4 | 2,3,2017,Cooper Rush,QB,23,0,Central Michigan,6-3,228,4.93,27.0,,105,7.23,4.47, 5 | 3,4,2017,Nathan Peterman,QB,22,2,Pittsburgh,6-2,226,4.82,31.0,,110,7.14,4.31,Buffalo Bills / 5th / 171st pick / 2017 6 | 4,5,2017,Patrick Mahomes,QB,21,40,Texas Tech,6-2,225,4.8,30.0,,114,6.88,4.08,Kansas City Chiefs / 1st / 10th pick / 2017 7 | 5,6,2017,DeShone Kizer,QB,21,6,Notre Dame,6-4,233,4.83,30.5,,107,7.4,4.53,Cleveland Browns / 2nd / 52nd pick / 2017 8 | 6,7,2017,Joshua Dobbs,QB,22,0,Tennessee,6-3,216,4.64,33.0,,122,6.75,4.31,Pittsburgh Steelers / 4th / 135th pick / 2017 9 | 7,8,2017,C.J. Beathard,QB,23,7,Iowa,6-2,219,,31.0,,113,,,San Francisco 49ers / 3rd / 104th pick / 2017 10 | -------------------------------------------------------------------------------- /combine/combinedata/2017/RB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2017,Jamaal Williams,RB,21,16,BYU,6-0,212,4.59,30.0,,123.0,7.25,4.53,Green Bay Packers / 4th / 134th pick / 2017 3 | 1,2,2017,De'Veon Smith,RB,22,0,Michigan,5-11,223,,29.0,22.0,108.0,7.3,4.56, 4 | 2,3,2017,Samaje Perine,RB,21,5,Oklahoma,5-11,233,4.65,33.0,30.0,116.0,7.26,4.37,Washington Redskins / 4th / 114th pick / 2017 5 | 3,4,2017,Dare Ogunbowale,RB,22,2,Wisconsin,5-11,213,4.65,35.0,14.0,120.0,6.99,4.34, 6 | 4,5,2017,Jeremy McNichols,RB,21,0,Boise State,5-9,214,4.49,35.5,,121.0,6.93,4.28,Tampa Bay Buccaneers / 5th / 162nd pick / 2017 7 | 5,6,2017,Elijah McGuire,RB,22,6,Louisiana,5-10,214,4.53,36.0,15.0,120.0,7.26,4.56,New York Jets / 6th / 188th pick / 2017 8 | 6,7,2017,Christian McCaffrey,RB,20,40,Stanford,5-11,202,4.48,37.5,10.0,121.0,6.57,4.22,Carolina Panthers / 1st / 8th pick / 2017 9 | 7,8,2017,Marlon Mack,RB,20,19,South Florida,5-11,213,4.5,35.5,15.0,125.0,,,Indianapolis Colts / 4th / 143rd pick / 2017 10 | 8,9,2017,T.J. Logan,RB,22,0,North Carolina,5-9,196,4.37,33.5,17.0,121.0,,,Arizona Cardinals / 5th / 179th pick / 2017 11 | 9,10,2017,Alvin Kamara,RB,21,43,Tennessee,5-10,214,4.56,39.5,15.0,131.0,,,New Orleans Saints / 3rd / 67th pick / 2017 12 | 10,11,2017,Aaron Jones,RB,22,21,Texas-El Paso,5-9,208,4.56,37.5,16.0,127.0,6.82,4.2,Green Bay Packers / 5th / 182nd pick / 2017 13 | 11,12,2017,Kareem Hunt,RB,21,29,Toledo,5-10,216,4.62,36.5,18.0,119.0,,,Kansas City Chiefs / 3rd / 86th pick / 2017 14 | 12,13,2017,Elijah Hood,RB,20,0,North Carolina,6-0,232,,,18.0,,,,Oakland Raiders / 7th / 242nd pick / 2017 15 | 13,14,2017,Brian Hill,RB,21,5,Wyoming,6-1,219,4.54,34.0,15.0,125.0,7.03,4.32,Atlanta Falcons / 5th / 156th pick / 2017 16 | 14,15,2017,Wayne Gallman,RB,22,7,Clemson,6-0,215,4.6,29.5,21.0,120.0,7.17,4.28,New York Giants / 4th / 140th pick / 2017 17 | 15,16,2017,Leonard Fournette,RB,22,21,LSU,6-0,240,4.51,28.5,,,,,Jacksonville Jaguars / 1st / 4th pick / 2017 18 | 16,17,2017,D'Onta Foreman,RB,20,3,Texas,6-0,233,,,18.0,,,,Houston Texans / 3rd / 89th pick / 2017 19 | 17,18,2017,Matthew Dayes,RB,22,0,North Carolina State,5-9,205,4.47,28.0,18.0,109.0,,,Cleveland Browns / 7th / 252nd pick / 2017 20 | 18,19,2017,Justin Davis,RB,21,0,USC,6-1,208,,,21.0,,,, 21 | 19,20,2017,Dalvin Cook,RB,21,24,Florida State,5-10,210,4.49,30.5,22.0,116.0,7.27,4.53,Minnesota Vikings / 2nd / 41st pick / 2017 22 | 20,21,2017,James Conner,RB,21,16,Pittsburgh,6-1,233,4.65,29.0,20.0,113.0,,,Pittsburgh Steelers / 3rd / 105th pick / 2017 23 | 21,22,2017,Tarik Cohen,RB,21,21,North Carolina A&T,5-6,179,4.42,31.5,11.0,118.0,,,Chicago Bears / 4th / 119th pick / 2017 24 | 22,23,2017,Corey Clement,RB,22,6,Wisconsin,5-10,220,4.68,28.5,19.0,115.0,,, 25 | 23,24,2017,Chris Carson,RB,22,22,Oklahoma State,6-0,218,4.58,37.0,23.0,130.0,,,Seattle Seahawks / 7th / 249th pick / 2017 26 | -------------------------------------------------------------------------------- /combine/combinedata/2017/TE.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2017,Jeremy Sprinkle,TE,22,2,Arkansas,6-5,252,4.69,29.0,,116.0,,,Washington Redskins / 5th / 154th pick / 2017 3 | 1,2,2017,Jonnu Smith,TE,21,7,Florida International,6-3,248,4.62,38.0,22.0,127.0,,4.18,Tennessee Titans / 3rd / 100th pick / 2017 4 | 2,3,2017,Adam Shaheen,TE,22,2,Ashland,6-6,278,4.79,32.5,24.0,121.0,7.09,4.38,Chicago Bears / 2nd / 45th pick / 2017 5 | 3,4,2017,Eric Saubert,TE,22,0,Drake,6-5,253,,33.0,22.0,121.0,,,Atlanta Falcons / 5th / 174th pick / 2017 6 | 4,5,2017,Michael Roberts,TE,22,1,Toledo,6-4,270,4.86,30.0,,110.0,7.05,4.51,Detroit Lions / 4th / 127th pick / 2017 7 | 5,6,2017,David Njoku,TE,20,7,Miami (FL),6-4,246,4.64,37.5,21.0,133.0,6.97,4.34,Cleveland Browns / 1st / 29th pick / 2017 8 | 6,7,2017,Jordan Leggett,TE,22,1,Clemson,6-5,258,,33.0,18.0,114.0,7.12,4.33,New York Jets / 5th / 150th pick / 2017 9 | 7,8,2017,George Kittle,TE,23,25,Iowa,6-4,247,4.52,35.0,18.0,132.0,,,San Francisco 49ers / 5th / 146th pick / 2017 10 | 8,9,2017,O.J. Howard,TE,22,11,Alabama,6-6,251,4.51,30.0,22.0,121.0,6.85,4.16,Tampa Bay Buccaneers / 1st / 19th pick / 2017 11 | 9,10,2017,Cole Hikutini,TE,22,0,Louisville,6-4,247,,,20.0,,,, 12 | 10,11,2017,Gerald Everett,TE,22,9,South Alabama,6-3,239,4.62,37.5,22.0,126.0,6.99,4.33,Los Angeles Rams / 2nd / 44th pick / 2017 13 | 11,12,2017,Evan Engram,TE,22,14,Mississippi,6-3,234,4.42,36.0,19.0,125.0,6.92,4.23,New York Giants / 1st / 23rd pick / 2017 14 | 12,13,2017,Darrell Daniels,TE,22,0,Washington,6-3,247,4.55,32.0,17.0,116.0,7.09,4.47, 15 | 13,14,2017,Cethan Carter,TE,21,0,Nebraska,6-3,241,4.68,,19.0,,,, 16 | 14,15,2017,Jake Butt,TE,21,1,Michigan,6-5,246,,,,,,,Denver Broncos / 5th / 145th pick / 2017 17 | 15,16,2017,Pharaoh Brown,TE,22,0,Oregon,6-6,255,,34.0,24.0,,,, 18 | -------------------------------------------------------------------------------- /combine/combinedata/2017/WR.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2017,Jesus Wilson,WR,22,0,Florida State,5-9,189,4.57,,10.0,119.0,,4.57, 3 | 1,2,2017,Mike Williams,WR,22,15,Clemson,6-4,218,,32.5,15.0,121.0,,,Los Angeles Chargers / 1st / 7th pick / 2017 4 | 2,3,2017,Dede Westbrook,WR,23,14,Oklahoma,6-0,178,,,,,,,Jacksonville Jaguars / 4th / 110th pick / 2017 5 | 3,4,2017,Greg Ward Jr.,WR,21,2,Houston,5-11,186,,,10.0,,,, 6 | 4,5,2017,Trent Taylor,WR,22,5,Louisiana Tech,5-8,181,4.63,33.0,13.0,117.0,6.74,4.01,San Francisco 49ers / 5th / 177th pick / 2017 7 | 5,6,2017,Taywan Taylor,WR,22,6,Western Kentucky,5-11,203,4.5,33.5,13.0,132.0,6.57,4.21,Tennessee Titans / 3rd / 72nd pick / 2017 8 | 6,7,2017,Ryan Switzer,WR,22,3,North Carolina,5-8,181,4.51,32.0,11.0,116.0,6.77,4.0,Dallas Cowboys / 4th / 133rd pick / 2017 9 | 7,8,2017,ArDarius Stewart,WR,23,1,Alabama,5-11,204,4.49,34.0,,124.0,,,New York Jets / 3rd / 79th pick / 2017 10 | 8,9,2017,JuJu Smith-Schuster,WR,20,25,USC,6-1,215,4.54,32.5,15.0,120.0,,,Pittsburgh Steelers / 2nd / 62nd pick / 2017 11 | 9,10,2017,Ricky Seals-Jones,WR,21,5,Texas A&M,6-5,243,4.69,28.0,17.0,121.0,7.46,4.33, 12 | 10,11,2017,Curtis Samuel,WR,20,12,Ohio State,5-11,196,4.31,37.0,18.0,119.0,7.09,4.33,Carolina Panthers / 2nd / 40th pick / 2017 13 | 11,12,2017,Travis Rudolph,WR,21,1,Florida State,6-0,189,4.65,31.5,12.0,114.0,6.93,4.46, 14 | 12,13,2017,John Ross,WR,22,5,Washington,5-11,188,4.22,37.0,,133.0,,,Cincinnati Bengals / 1st / 9th pick / 2017 15 | 13,14,2017,Josh Reynolds,WR,22,8,Texas A&M,6-3,194,4.52,37.0,,124.0,6.83,4.13,Los Angeles Rams / 4th / 117th pick / 2017 16 | 14,15,2017,Zach Pascal,WR,22,9,Old Dominion,6-2,219,4.55,36.0,14.0,126.0,7.11,4.29, 17 | 15,16,2017,Isaiah McKenzie,WR,21,4,Georgia,5-7,173,4.42,36.0,11.0,123.0,6.64,4.15,Denver Broncos / 5th / 172nd pick / 2017 18 | 16,17,2017,Josh Malone,WR,20,1,Tennessee,6-3,208,4.4,30.5,10.0,121.0,7.05,4.19,Cincinnati Bengals / 4th / 128th pick / 2017 19 | 17,18,2017,Cooper Kupp,WR,23,24,East. Washington,6-2,204,4.62,31.0,,116.0,6.75,4.08,Los Angeles Rams / 3rd / 69th pick / 2017 20 | 18,19,2017,Zay Jones,WR,21,10,East Carolina,6-2,201,4.45,36.5,15.0,133.0,6.79,4.01,Buffalo Bills / 2nd / 37th pick / 2017 21 | 19,20,2017,Mack Hollins,WR,23,3,North Carolina,6-4,221,4.53,,,,,,Philadelphia Eagles / 4th / 118th pick / 2017 22 | 20,21,2017,Keon Hatcher,WR,22,0,Arkansas,6-1,212,4.64,,16.0,,,, 23 | 21,22,2017,Chad Hansen,WR,22,1,California,6-2,202,4.53,35.0,11.0,119.0,6.74,4.13,New York Jets / 4th / 141st pick / 2017 24 | 22,23,2017,Kenny Golladay,WR,23,21,Northern Illinois,6-4,218,4.5,35.5,18.0,120.0,7.0,4.15,Detroit Lions / 3rd / 96th pick / 2017 25 | 23,24,2017,Chris Godwin,WR,21,20,Penn State,6-1,209,4.42,36.0,19.0,126.0,7.01,4.0,Tampa Bay Buccaneers / 3rd / 84th pick / 2017 26 | 24,25,2017,Shelton Gibson,WR,21,0,West Virginia,5-11,191,4.5,32.0,8.0,118.0,6.83,4.2,Philadelphia Eagles / 5th / 166th pick / 2017 27 | 25,26,2017,Isaiah Ford,WR,21,2,Virginia Tech,6-1,194,4.61,35.5,14.0,127.0,6.94,4.34,Miami Dolphins / 7th / 237th pick / 2017 28 | 26,27,2017,Malachi Dupre,WR,21,0,LSU,6-2,196,4.52,39.5,11.0,135.0,7.19,4.26,Green Bay Packers / 7th / 247th pick / 2017 29 | 27,28,2017,Robert Davis,WR,21,0,Georgia State,6-3,219,4.44,41.0,19.0,136.0,6.82,4.28,Washington Redskins / 6th / 209th pick / 2017 30 | 28,29,2017,Corey Davis,WR,22,15,West. Michigan,6-3,209,,,,,,,Tennessee Titans / 1st / 5th pick / 2017 31 | 29,30,2017,Amara Darboh,WR,23,1,Michigan,6-2,214,4.45,36.0,17.0,124.0,,,Seattle Seahawks / 3rd / 106th pick / 2017 32 | 30,31,2017,Stacy Coley,WR,22,0,Miami (FL),6-1,195,4.45,34.0,10.0,122.0,,,Minnesota Vikings / 7th / 219th pick / 2017 33 | 31,32,2017,Jehu Chesson,WR,23,0,Michigan,6-3,204,4.47,35.5,10.0,132.0,6.7,4.09,Kansas City Chiefs / 4th / 139th pick / 2017 34 | 32,33,2017,Noah Brown,WR,21,0,Ohio State,6-2,222,,,19.0,,7.07,4.33,Dallas Cowboys / 7th / 239th pick / 2017 35 | 33,34,2017,Quincy Adeboyejo,WR,21,0,Mississippi,6-3,197,4.42,34.5,8.0,123.0,6.73,4.14, 36 | 34,35,2017,Rodney Adams,WR,22,0,South Florida,6-1,189,4.44,29.5,8.0,125.0,6.98,4.28,Minnesota Vikings / 5th / 170th pick / 2017 37 | -------------------------------------------------------------------------------- /combine/combinedata/2018/QB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2018,Mason Rudolph,QB,22,3,Oklahoma State,6-5,235,4.9,26.0,,,,,Pittsburgh Steelers / 3rd / 76th pick / 2018 3 | 1,2,2018,Josh Rosen,QB,21,3,UCLA,6-4,226,4.92,31.0,,111.0,7.09,4.28,Arizona Cardinals / 1st / 10th pick / 2018 4 | 2,3,2018,Baker Mayfield,QB,22,21,Oklahoma,6-1,215,4.84,29.0,,111.0,7.0,4.28,Cleveland Browns / 1st / 1st pick / 2018 5 | 3,4,2018,Kyle Lauletta,QB,22,0,Richmond,6-3,222,4.81,31.0,,113.0,6.95,4.07,New York Giants / 4th / 108th pick / 2018 6 | 4,5,2018,Lamar Jackson,QB,21,33,Louisville,6-2,216,,,,,,,Baltimore Ravens / 1st / 32nd pick / 2018 7 | 5,6,2018,Luke Falk,QB,23,1,Washington State,6-4,215,,26.5,,103.0,,,Tennessee Titans / 6th / 199th pick / 2018 8 | 6,7,2018,Sam Darnold,QB,20,13,USC,6-3,221,4.85,26.5,,105.0,6.96,4.4,New York Jets / 1st / 3rd pick / 2018 9 | 7,8,2018,Josh Allen,QB,21,17,Wyoming,6-5,237,4.75,33.5,,119.0,6.9,4.4,Buffalo Bills / 1st / 7th pick / 2018 10 | -------------------------------------------------------------------------------- /combine/combinedata/2018/RB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2018,Darrel Williams,RB,22,4,LSU,6-0,225,4.72,32.0,22.0,109.0,,4.21, 3 | 1,2,2018,Jordan Wilkins,RB,23,5,Mississippi,6-1,216,,36.0,16.0,117.0,,4.27,Indianapolis Colts / 5th / 169th pick / 2018 4 | 2,3,2018,Mark Walton,RB,20,3,Miami (FL),5-10,202,4.6,31.5,18.0,118.0,,,Cincinnati Bengals / 4th / 112th pick / 2018 5 | 3,4,2018,Bo Scarbrough,RB,21,2,Alabama,6-1,228,4.52,40.0,14.0,129.0,,4.34,Dallas Cowboys / 7th / 236th pick / 2018 6 | 4,5,2018,Rashaad Penny,RB,22,7,San Diego State,5-11,220,4.46,32.5,13.0,120.0,,,Seattle Seahawks / 1st / 27th pick / 2018 7 | 5,6,2018,Sony Michel,RB,23,12,Georgia,5-11,214,4.54,,22.0,,,4.21,New England Patriots / 1st / 31st pick / 2018 8 | 6,7,2018,John Kelly,RB,21,1,Tennessee,5-10,216,,35.0,15.0,120.0,7.13,4.51,Los Angeles Rams / 6th / 176th pick / 2018 9 | 7,8,2018,Kerryon Johnson,RB,20,8,Auburn,5-11,213,,40.0,11.0,126.0,7.07,4.29,Detroit Lions / 2nd / 43rd pick / 2018 10 | 8,9,2018,Justin Jackson,RB,22,4,Northwestern,6-0,199,4.52,38.5,13.0,122.0,6.81,4.07,Los Angeles Chargers / 7th / 251st pick / 2018 11 | 9,10,2018,Nyheim Hines,RB,21,12,North Carolina State,5-8,198,4.38,35.5,,119.0,7.18,4.35,Indianapolis Colts / 4th / 104th pick / 2018 12 | 10,11,2018,Derrius Guice,RB,20,2,LSU,5-10,224,4.49,31.5,15.0,,,,Washington Redskins / 2nd / 59th pick / 2018 13 | 11,12,2018,Royce Freeman,RB,22,8,Oregon,5-11,229,4.54,34.0,17.0,118.0,6.9,4.16,Denver Broncos / 3rd / 71st pick / 2018 14 | 12,13,2018,Chase Edmonds,RB,21,5,Fordham,5-9,205,4.55,34.0,19.0,122.0,6.79,4.07,Arizona Cardinals / 4th / 134th pick / 2018 15 | 13,14,2018,Nick Chubb,RB,22,18,Georgia,5-11,227,4.52,38.5,29.0,128.0,7.09,4.25,Cleveland Browns / 2nd / 35th pick / 2018 16 | 14,15,2018,Saquon Barkley,RB,21,23,Penn State,6-0,233,4.4,41.0,29.0,,,4.24,New York Giants / 1st / 2nd pick / 2018 17 | 15,16,2018,Kalen Ballage,RB,22,3,Arizona State,6-1,228,4.46,33.5,15.0,122.0,6.91,4.35,Miami Dolphins / 4th / 131st pick / 2018 18 | 16,17,2018,Josh Adams,RB,21,3,Notre Dame,6-2,213,,,18.0,,,, 19 | -------------------------------------------------------------------------------- /combine/combinedata/2018/TE.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2018,Jordan Thomas,TE,21,2,Mississippi State,6-5,265,4.74,27.0,16.0,111.0,7.5,4.75,Houston Texans / 6th / 211th pick / 2018 3 | 1,2,2018,Ian Thomas,TE,21,4,Indiana,6-4,259,4.74,36.0,,123.0,7.15,4.2,Carolina Panthers / 4th / 101st pick / 2018 4 | 2,3,2018,Durham Smythe,TE,22,0,Notre Dame,6-5,253,4.81,31.0,18.0,110.0,7.17,4.23,Miami Dolphins / 4th / 123rd pick / 2018 5 | 3,4,2018,Dalton Schultz,TE,21,1,Stanford,6-5,244,4.75,32.0,15.0,120.0,7.0,4.4,Dallas Cowboys / 4th / 137th pick / 2018 6 | 4,5,2018,Jaylen Samuels,TE,21,6,North Carolina State,5-11,225,4.54,34.5,18.0,121.0,6.93,4.28,Pittsburgh Steelers / 5th / 165th pick / 2018 7 | 5,6,2018,Ryan Izzo,TE,22,1,Florida State,6-5,256,4.94,33.0,18.0,110.0,7.15,4.43,New England Patriots / 7th / 250th pick / 2018 8 | 6,7,2018,Hayden Hurst,TE,24,6,South Carolina,6-4,250,4.67,31.5,,120.0,7.19,4.37,Baltimore Ravens / 1st / 25th pick / 2018 9 | 7,8,2018,Dallas Goedert,TE,23,8,South Dakota State,6-5,256,,,23.0,,,,Philadelphia Eagles / 2nd / 49th pick / 2018 10 | 8,9,2018,Mike Gesicki,TE,22,6,Penn State,6-5,247,4.54,41.5,22.0,129.0,6.76,4.1,Miami Dolphins / 2nd / 42nd pick / 2018 11 | 9,10,2018,Troy Fumagalli,TE,23,0,Wisconsin,6-5,247,,,14.0,,,,Denver Broncos / 5th / 156th pick / 2018 12 | 10,11,2018,Will Dissly,TE,21,4,Washington,6-4,262,4.87,28.0,15.0,111.0,7.07,4.4,Seattle Seahawks / 4th / 120th pick / 2018 13 | 11,12,2018,Tyler Conklin,TE,22,2,Central Michigan,6-3,254,4.8,38.0,18.0,120.0,7.13,4.23,Minnesota Vikings / 5th / 157th pick / 2018 14 | 12,13,2018,Mark Andrews,TE,21,17,Oklahoma,6-5,256,4.67,31.0,17.0,113.0,7.34,4.38,Baltimore Ravens / 3rd / 86th pick / 2018 15 | 13,14,2018,Jordan Akins,TE,25,6,Central Florida,6-3,249,,,,,,,Houston Texans / 3rd / 98th pick / 2018 16 | -------------------------------------------------------------------------------- /combine/combinedata/2018/WR.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2018,Javon Wims,WR,23,1,Georgia,6-3,215,4.53,33.5,,113.0,7.0,,Chicago Bears / 7th / 224th pick / 2018 3 | 1,2,2018,Cedrick Wilson,WR,22,0,Boise State,6-2,197,4.55,37.0,9.0,121.0,6.89,4.23,Dallas Cowboys / 6th / 208th pick / 2018 4 | 2,3,2018,James Washington,WR,21,8,Oklahoma State,5-11,213,4.54,34.5,14.0,120.0,7.11,4.32,Pittsburgh Steelers / 2nd / 60th pick / 2018 5 | 3,4,2018,Marquez Valdes-Scantling,WR,23,8,South Florida,6-4,206,4.37,30.5,15.0,124.0,,,Green Bay Packers / 5th / 174th pick / 2018 6 | 4,5,2018,Auden Tate,WR,21,4,Florida State,6-5,228,4.68,31.0,,112.0,,,Cincinnati Bengals / 7th / 253rd pick / 2018 7 | 5,6,2018,Courtland Sutton,WR,22,14,SMU,6-3,218,4.54,35.5,18.0,124.0,6.57,4.11,Denver Broncos / 2nd / 40th pick / 2018 8 | 6,7,2018,Equanimeous St. brown,WR,21,2,Notre Dame,6-5,214,4.48,,20.0,,,,Green Bay Packers / 6th / 207th pick / 2018 9 | 7,8,2018,Jaleel Scott,WR,23,0,New Mexico State,6-5,218,4.56,34.5,16.0,124.0,7.2,4.4,Baltimore Ravens / 4th / 132nd pick / 2018 10 | 8,9,2018,Calvin Ridley,WR,23,14,Alabama,6-0,189,4.43,31.0,15.0,110.0,6.88,4.41,Atlanta Falcons / 1st / 26th pick / 2018 11 | 9,10,2018,Trey Quinn,WR,22,2,SMU,5-11,203,4.55,33.5,17.0,116.0,6.91,4.19,Washington Redskins / 7th / 256th pick / 2018 12 | 10,11,2018,Byron Pringle,WR,24,2,Kansas State,6-1,203,4.46,33.5,15.0,120.0,6.87,4.4, 13 | 11,12,2018,Cam Phillips,WR,22,0,Virginia Tech,6-0,201,,,,,,, 14 | 12,13,2018,Dante Pettis,WR,22,4,Washington,6-0,186,,,,,,,San Francisco 49ers / 2nd / 44th pick / 2018 15 | 13,14,2018,D.J. Moore,WR,20,16,Maryland,6-0,210,4.42,39.5,15.0,132.0,6.95,4.07,Carolina Panthers / 1st / 24th pick / 2018 16 | 14,15,2018,Anthony Miller,WR,23,9,Memphis,5-11,201,,,22.0,,,,Chicago Bears / 2nd / 51st pick / 2018 17 | 15,16,2018,Ray-ray McCloud,WR,21,0,Clemson,5-9,190,4.53,34.5,13.0,113.0,,,Buffalo Bills / 6th / 187th pick / 2018 18 | 16,17,2018,Allen Lazard,WR,22,4,Iowa State,6-5,227,4.55,38.0,17.0,122.0,,, 19 | 17,18,2018,Christian Kirk,WR,21,11,Texas A&M,5-10,201,4.47,35.5,20.0,115.0,7.09,4.45,Arizona Cardinals / 2nd / 47th pick / 2018 20 | 18,19,2018,Quadree Henderson,WR,21,0,Pittsburgh,5-8,192,4.5,32.5,12.0,120.0,6.89,4.28, 21 | 19,20,2018,Daesean Hamilton,WR,22,4,Penn State,6-1,203,,34.5,,118.0,6.84,4.15,Denver Broncos / 4th / 113th pick / 2018 22 | 20,21,2018,Michael Gallup,WR,21,13,Colorado State,6-1,205,4.51,36.0,10.0,122.0,6.95,4.37,Dallas Cowboys / 3rd / 81st pick / 2018 23 | 21,22,2018,Keke Coutee,WR,21,5,Texas Tech,5-10,181,4.43,34.5,14.0,113.0,6.93,4.15,Houston Texans / 4th / 103rd pick / 2018 24 | 22,23,2018,Antonio Callaway,WR,21,5,Florida,5-11,200,4.41,34.0,,121.0,,,Cleveland Browns / 4th / 105th pick / 2018 25 | 23,24,2018,Deon Cain,WR,21,1,Clemson,6-2,202,4.43,33.5,11.0,115.0,6.71,4.37,Indianapolis Colts / 6th / 185th pick / 2018 26 | 24,25,2018,Deontay Burnett,WR,20,1,USC,6-0,186,,,,,,, 27 | 25,26,2018,Braxton Berrios,WR,22,1,Miami (FL),5-9,184,,,11.0,,,,New England Patriots / 6th / 210th pick / 2018 28 | 26,27,2018,Marcell Ateman,WR,23,2,Oklahoma State,6-4,216,4.62,34.0,13.0,121.0,7.07,4.25,Oakland Raiders / 7th / 228th pick / 2018 29 | -------------------------------------------------------------------------------- /combine/combinedata/2019/QB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2019,Jarrett Stidham,QB,22,0,Auburn,6-2,218,4.81,31.0,,110.0,7.28,4.33,New England Patriots / 4th / 133rd pick / 2019 3 | 1,2,2019,Kyler Murray,QB,21,14,Oklahoma,5-10,207,,,,,,,Arizona Cardinals / 1st / 1st pick / 2019 4 | 2,3,2019,Gardner Minshew,QB,22,10,Washington State,6-1,225,4.97,33.5,,116.0,7.14,4.45,Jacksonville Jaguars / 6th / 178th pick / 2019 5 | 3,4,2019,Trace McSorley,QB,23,0,Penn State,6-0,202,4.57,33.0,,115.0,7.09,4.12,Baltimore Ravens / 6th / 197th pick / 2019 6 | 4,5,2019,Drew Lock,QB,22,3,Missouri,6-4,228,4.69,31.0,,112.0,7.03,4.12,Denver Broncos / 2nd / 42nd pick / 2019 7 | 5,6,2019,Daniel Jones,QB,21,9,Duke,6-5,221,4.81,33.5,,120.0,7.0,4.41,New York Giants / 1st / 6th pick / 2019 8 | 6,7,2019,Dwayne Haskins,QB,21,3,Ohio State,6-3,231,5.04,28.5,,,,,Washington Redskins / 1st / 15th pick / 2019 9 | 7,8,2019,Will Grier,QB,23,1,West Virginia,6-2,217,4.84,34.0,,112.0,7.09,4.28,Carolina Panthers / 3rd / 100th pick / 2019 10 | 8,9,2019,Ryan Finley,QB,24,1,North Carolina State,6-4,213,4.73,30.5,,116.0,7.2,4.2,Cincinnati Bengals / 4th / 104th pick / 2019 11 | -------------------------------------------------------------------------------- /combine/combinedata/2019/RB.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2019,Trayveon Williams,RB,21,0,Texas A&M,5-8,206,4.51,33.0,19.0,121.0,7.44,4.44,Cincinnati Bengals / 6th / 182nd pick / 2019 3 | 1,2,2019,Dexter Williams,RB,22,0,Notre Dame,5-11,212,4.57,36.0,17.0,130.0,7.0,4.16,Green Bay Packers / 6th / 194th pick / 2019 4 | 2,3,2019,Devin Singletary,RB,21,6,Florida Atlantic,5-7,203,4.66,35.0,15.0,117.0,7.32,4.4,Buffalo Bills / 3rd / 74th pick / 2019 5 | 3,4,2019,Jordan Scarlett,RB,23,0,Florida,5-11,208,4.47,30.0,21.0,116.0,7.37,4.63,Carolina Panthers / 5th / 154th pick / 2019 6 | 4,5,2019,Miles Sanders,RB,21,9,Penn State,5-11,211,4.49,36.0,20.0,124.0,6.89,4.19,Philadelphia Eagles / 2nd / 53rd pick / 2019 7 | 5,6,2019,Tony Pollard,RB,21,4,Memphis,6-0,210,4.52,35.0,13.0,121.0,,,Dallas Cowboys / 4th / 128th pick / 2019 8 | 6,7,2019,Qadree Ollison,RB,22,0,Pittsburgh,6-1,228,4.58,29.5,19.0,114.0,7.53,4.31,Atlanta Falcons / 5th / 152nd pick / 2019 9 | 7,8,2019,David Montgomery,RB,21,5,Iowa State,5-10,222,4.63,28.5,15.0,121.0,,,Chicago Bears / 3rd / 73rd pick / 2019 10 | 8,9,2019,Alexander Mattison,RB,20,4,Boise State,5-11,221,4.67,35.0,22.0,127.0,7.13,4.29,Minnesota Vikings / 3rd / 102nd pick / 2019 11 | 9,10,2019,Josh Jacobs,RB,21,8,Alabama,5-10,220,,,,,,,Oakland Raiders / 1st / 24th pick / 2019 12 | 10,11,2019,Travis Homer,RB,20,1,Miami (FL),5-10,201,4.48,39.5,17.0,130.0,7.07,4.31,Seattle Seahawks / 6th / 204th pick / 2019 13 | 11,12,2019,Justice Hill,RB,21,3,Oklahoma State,5-10,198,4.4,40.0,21.0,130.0,,,Baltimore Ravens / 4th / 113th pick / 2019 14 | 12,13,2019,Darrell Henderson,RB,21,1,Memphis,5-8,208,4.49,33.5,22.0,121.0,,,Los Angeles Rams / 3rd / 70th pick / 2019 15 | 13,14,2019,Damien Harris,RB,22,0,Alabama,5-10,216,4.57,37.0,16.0,121.0,,,New England Patriots / 3rd / 87th pick / 2019 16 | 14,15,2019,Myles Gaskin,RB,22,1,Washington,5-9,205,4.58,35.5,24.0,118.0,7.19,4.27,Miami Dolphins / 7th / 234th pick / 2019 17 | 15,16,2019,Ryquell Armstead,RB,22,2,Temple,5-11,220,4.45,30.0,22.0,114.0,7.02,4.29,Jacksonville Jaguars / 5th / 140th pick / 2019 18 | -------------------------------------------------------------------------------- /combine/combinedata/2019/TE.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2019,Trevon Wesco,TE,23,0,West Virginia,6-3,267,4.89,31.0,24.0,117.0,7.18,4.38,New York Jets / 4th / 121st pick / 2019 3 | 1,2,2019,Tommy Sweeney,TE,23,1,Boston Col.,6-4,251,4.83,,17.0,,,,Buffalo Bills / 7th / 228th pick / 2019 4 | 2,3,2019,Jace Sternberger,TE,22,0,Texas A&M,6-4,251,4.75,31.5,17.0,113.0,7.19,4.31,Green Bay Packers / 3rd / 75th pick / 2019 5 | 3,4,2019,Kaden Smith,TE,21,2,Stanford,6-5,255,4.92,32.0,15.0,108.0,7.08,4.47,San Francisco 49ers / 6th / 176th pick / 2019 6 | 4,5,2019,Irv Smith,TE,20,3,Alabama,6-2,242,4.63,32.5,19.0,110.0,7.32,4.33,Minnesota Vikings / 2nd / 50th pick / 2019 7 | 5,6,2019,Drew Sample,TE,22,0,Washington,6-5,255,4.71,33.5,,115.0,7.15,4.31,Cincinnati Bengals / 2nd / 52nd pick / 2019 8 | 6,7,2019,Josh Oliver,TE,21,0,San Jose State,6-5,249,4.63,34.0,22.0,117.0,7.21,4.47,Jacksonville Jaguars / 3rd / 69th pick / 2019 9 | 7,8,2019,Isaac Nauta,TE,21,0,Georgia,6-3,244,4.91,28.0,19.0,,7.45,4.43,Detroit Lions / 7th / 224th pick / 2019 10 | 8,9,2019,Foster Moreau,TE,21,1,LSU,6-4,253,4.66,36.5,22.0,121.0,7.16,4.11,Oakland Raiders / 4th / 137th pick / 2019 11 | 9,10,2019,Dawson Knox,TE,22,3,Mississippi,6-4,254,,34.5,16.0,,7.12,4.27,Buffalo Bills / 3rd / 96th pick / 2019 12 | 10,11,2019,T.J. Hockenson,TE,21,3,Iowa,6-5,251,4.7,37.5,17.0,123.0,7.02,4.18,Detroit Lions / 1st / 8th pick / 2019 13 | 11,12,2019,Zach Gentry,TE,22,0,Michigan,6-8,265,4.9,29.5,12.0,110.0,7.4,4.53,Pittsburgh Steelers / 5th / 141st pick / 2019 14 | 12,13,2019,Noah Fant,TE,21,4,Iowa,6-4,249,4.5,39.5,20.0,127.0,6.81,4.22,Denver Broncos / 1st / 20th pick / 2019 15 | -------------------------------------------------------------------------------- /combine/combinedata/2019/WR.csv: -------------------------------------------------------------------------------- 1 | ,Rk,Year,Player,Pos,Age,AV,School,Height,Wt,40YD,Vertical,BenchReps,Broad Jump,3Cone,Shuttle,Drafted (tm/rnd/yr) 2 | 0,1,2019,Darius Slayton,WR,22.0,6,Auburn,6-1,190,4.39,40.5,11.0,135.0,7.0,4.15,New York Giants / 5th / 171st pick / 2019 3 | 1,2,2019,Deebo Samuel,WR,23.0,9,South Carolina,5-11,214,4.48,39.0,15.0,122.0,7.03,4.14,San Francisco 49ers / 2nd / 36th pick / 2019 4 | 2,3,2019,Riley Ridley,WR,22.0,1,Georgia,6-1,199,4.58,30.5,13.0,124.0,7.22,4.28,Chicago Bears / 4th / 126th pick / 2019 5 | 3,4,2019,Hunter Renfrow,WR,23.0,4,Clemson,5-10,184,4.59,35.0,7.0,116.0,6.8,4.19,Oakland Raiders / 5th / 149th pick / 2019 6 | 4,5,2019,D.K. Metcalf,WR,21.0,8,Mississippi,6-3,228,4.33,40.5,27.0,134.0,7.38,4.5,Seattle Seahawks / 2nd / 64th pick / 2019 7 | 5,6,2019,Terry McLaurin,WR,23.0,7,Ohio State,6-0,208,4.35,37.5,18.0,125.0,7.01,4.15,Washington Redskins / 3rd / 76th pick / 2019 8 | 6,7,2019,Bisi Johnson,WR,21.0,3,Colorado State,6-0,204,4.51,38.0,14.0,124.0,6.88,4.16,Minnesota Vikings / 7th / 247th pick / 2019 9 | 7,8,2019,Keesean Johnson,WR,22.0,2,Fresno State,6-1,201,4.6,30.0,14.0,117.0,7.28,4.23,Arizona Cardinals / 6th / 174th pick / 2019 10 | 8,9,2019,Diontae Johnson,WR,22.0,6,Toledo,5-10,183,4.53,33.5,15.0,123.0,7.09,4.45,Pittsburgh Steelers / 3rd / 66th pick / 2019 11 | 9,10,2019,Anthony Johnson,WR,,0,Buffalo,6-2,209,,32.5,18.0,122.0,7.12,, 12 | 10,11,2019,Gary Jennings,WR,21.0,0,West Virginia,6-1,214,4.42,37.0,20.0,127.0,7.32,4.15,Seattle Seahawks / 4th / 120th pick / 2019 13 | 11,12,2019,Andy Isabella,WR,22.0,2,Massachusetts,5-9,188,4.31,36.5,15.0,121.0,6.95,4.15,Arizona Cardinals / 2nd / 62nd pick / 2019 14 | 12,13,2019,N'Keal Harry,WR,21.0,1,Arizona State,6-2,228,4.53,38.5,27.0,122.0,,,New England Patriots / 1st / 32nd pick / 2019 15 | 13,14,2019,Kelvin Harmon,WR,22.0,3,North Carolina State,6-2,221,4.6,32.5,18.0,117.0,7.15,4.32,Washington Redskins / 6th / 206th pick / 2019 16 | 14,15,2019,Mecole Hardman,WR,20.0,7,Georgia,5-10,187,4.33,36.5,17.0,119.0,,,Kansas City Chiefs / 2nd / 56th pick / 2019 17 | 15,16,2019,Travis Fulgham,WR,23.0,0,Old Dominion,6-2,215,4.58,36.5,15.0,126.0,,,Detroit Lions / 6th / 184th pick / 2019 18 | 16,17,2019,Parris Campbell,WR,21.0,1,Ohio State,6-0,205,4.31,40.0,11.0,135.0,,4.03,Indianapolis Colts / 2nd / 59th pick / 2019 19 | 17,18,2019,Marquise Brown,WR,21.0,8,Oklahoma,5-9,166,,,,,,,Baltimore Ravens / 1st / 25th pick / 2019 20 | 18,19,2019,A.J. Brown,WR,21.0,10,Mississippi,6-0,226,4.49,36.5,19.0,120.0,,,Tennessee Titans / 2nd / 51st pick / 2019 21 | 19,20,2019,Miles Boykin,WR,22.0,3,Notre Dame,6-4,220,4.42,43.5,12.0,140.0,6.77,4.07,Baltimore Ravens / 3rd / 93rd pick / 2019 22 | 20,21,2019,J.J. Arcega-Whiteside,WR,22.0,1,Stanford,6-2,225,,,,,,,Philadelphia Eagles / 2nd / 57th pick / 2019 23 | -------------------------------------------------------------------------------- /combine/get_combine_data.py: -------------------------------------------------------------------------------- 1 | import requests 2 | from bs4 import BeautifulSoup as BS 3 | import os 4 | import pandas as pd; pd.set_option('display.max_columns', None); 5 | 6 | ENDPOINT = "https://www.pro-football-reference.com/play-index/nfl-combine-results.cgi?request=1&year_min={year}&year_max={year}&height_min=65&height_max=82&weight_min=140&weight_max=400&pos%5B%5D={position}&show=p&order_by=year_id" 7 | 8 | base_dir = os.path.abspath(os.path.dirname(__file__)) 9 | combine_data_dir = os.path.join(base_dir, 'combinedata') 10 | 11 | def scrape_pfr_data(): 12 | for year in range(2000, 2020): 13 | for position in ['WR', 'RB', 'TE', 'QB']: 14 | res = requests.get(ENDPOINT.format(year=year, position=position)) 15 | 16 | soup = BS(res.content, 'html.parser') 17 | table = soup.find('table') 18 | df = pd.read_html(str(table))[0] 19 | 20 | df = df.drop('College', axis=1) 21 | 22 | df.to_csv(os.path.join(combine_data_dir, str(year) + '/' + f'{position}.csv'), index=True) 23 | 24 | def join_csv_files(): 25 | final_df = pd.DataFrame() 26 | for year in range(2000, 2020): 27 | combine_folder = os.path.join(combine_data_dir, str(year)) 28 | for position in ['WR', 'RB', 'TE', 'QB']: 29 | pos_df = pd.read_csv(os.path.join(combine_folder, f'{position}.csv')) 30 | final_df = pd.concat([final_df, pos_df]) 31 | 32 | final_df.to_csv(os.path.join(base_dir, 'combine00to20.csv')) 33 | 34 | if __name__ == '__main__': 35 | # scrape_pfr_data() 36 | join_csv_files() -------------------------------------------------------------------------------- /defense/1966.csv: -------------------------------------------------------------------------------- 1 | ,Tm,PointsAllowed,TotalYardsAllowed,OffensivePlaysAllowed,YardsPerPlay,TO,ForcedFumbles,TotalFirstDownsAllowed,Cmp,PassingAttAllowed,PassingYardsAllowed,PassingTDAllowed,Int,NetYardsAllowedPerPass,PassingFirstDownsAllowed,RushingAttAllowed,RushingYdsAllowed,RushingTDAllowed,YardsPerRushAllowed,RushingFirstDownsAllowed,PenaltiesCommitted,PenaltyYardsAllowed,FirstDownsViaPenalty,PercentageOfDrivesEndingInOffensiveScores,PercentDrivesEndingInTO,PassingFantasyPointsAllowed,PPRReceivingFantasyPointsAllowed,HalfPPRReceivingFantasyPointsAllowed,StandardReceivingFantasyPointsAllowed,RushingFantasyPointsAllowed,PassingDefRank,PPRReceivingDefRank,HalfPPRReceivingDefRank,StandardReceivingDefRank,RushingDefRank,PPRFantasyPointsAllowed,PPRDefRank,HalfPPRFantasyPointsAllowed,HalfPPRDefRank,StandardFantasyPointsAllowed,StandardDefRank 2 | 0,Green Bay Packers,163.0,3603.0,883.0,4.1,42.0,14.0,211.0,202.0,390.0,1959.0,7.0,28.0,4.5,106.0,446.0,1644.0,9.0,3.7,90.0,67.0,745.0,15.0,,,50.36,439.9,338.9,237.9,190.4,1.0,1.0,1.0,1.0,5.0,680.66,1.0,579.66,1.0,478.65999999999997,1.0 3 | 1,Los Angeles Rams,212.0,3771.0,852.0,4.4,46.0,20.0,196.0,190.0,406.0,2469.0,13.0,26.0,5.5,114.0,401.0,1302.0,10.0,3.2,64.0,76.0,704.0,18.0,,,98.76,514.9,419.9,324.9,150.2,3.0,3.0,5.0,7.0,2.0,763.8599999999999,2.0,668.8599999999999,2.0,573.8599999999999,2.0 4 | 2,Baltimore Colts,226.0,4091.0,932.0,4.4,40.0,18.0,245.0,240.0,425.0,2358.0,14.0,22.0,5.0,134.0,460.0,1733.0,7.0,3.8,94.0,69.0,704.0,17.0,,,106.32,559.8,439.8,319.8,179.3,4.0,8.0,7.0,4.0,4.0,845.42,6.0,725.4200000000001,6.0,605.4200000000001,5.0 5 | 3,Dallas Cowboys,239.0,3558.0,873.0,4.1,31.0,14.0,221.0,212.0,457.0,2382.0,17.0,17.0,4.6,140.0,356.0,1176.0,6.0,3.3,64.0,63.0,778.0,17.0,,,129.28,552.2,446.2,340.2,125.6,9.0,7.0,8.0,8.0,1.0,807.08,4.0,701.0799999999999,4.0,595.0799999999999,3.0 6 | 4,Cleveland Browns,259.0,4266.0,891.0,4.8,49.0,19.0,255.0,221.0,406.0,2372.0,14.0,30.0,5.4,124.0,450.0,1894.0,12.0,4.2,113.0,61.0,563.0,18.0,,,90.88,542.2,431.7,321.2,223.39999999999998,2.0,6.0,6.0,6.0,9.0,856.48,7.0,745.98,7.0,635.48,7.0 7 | 5,St. Louis Cardinals,265.0,3492.0,872.0,4.0,31.0,10.0,209.0,197.0,443.0,2300.0,15.0,21.0,4.6,109.0,377.0,1192.0,11.0,3.2,68.0,83.0,761.0,32.0,,,110.0,517.0,418.5,320.0,165.2,5.0,5.0,4.0,5.0,3.0,792.2,3.0,693.7,3.0,595.2,4.0 8 | 6,Chicago Bears,272.0,3971.0,901.0,4.4,38.0,23.0,239.0,202.0,406.0,2367.0,13.0,15.0,5.4,116.0,466.0,1604.0,13.0,3.4,102.0,71.0,636.0,21.0,,,116.68,516.7,415.7,314.7,192.4,7.0,4.0,3.0,3.0,6.0,825.7800000000001,5.0,724.78,5.0,623.78,6.0 9 | 7,Minnesota Vikings,304.0,3922.0,828.0,4.7,22.0,8.0,213.0,206.0,391.0,2236.0,13.0,14.0,5.4,116.0,412.0,1686.0,15.0,4.1,85.0,67.0,667.0,12.0,,,113.44,507.6,404.6,301.6,242.60000000000002,6.0,2.0,2.0,2.0,11.0,863.6400000000001,8.0,760.6400000000001,8.0,657.6400000000001,8.0 10 | 8,Detroit Lions,317.0,4414.0,876.0,5.0,35.0,11.0,240.0,210.0,363.0,2408.0,19.0,24.0,6.1,108.0,479.0,2006.0,16.0,4.2,109.0,61.0,564.0,23.0,,,124.32,564.8,459.8,354.8,274.6,8.0,9.0,9.0,9.0,13.0,963.72,9.0,858.72,9.0,753.72,9.0 11 | 9,San Francisco 49ers,325.0,4179.0,868.0,4.8,29.0,11.0,238.0,206.0,414.0,2550.0,22.0,18.0,5.6,126.0,414.0,1629.0,15.0,3.9,88.0,91.0,938.0,24.0,,,154.0,593.0,490.0,387.0,230.9,11.0,10.0,10.0,10.0,10.0,977.9,11.0,874.9,10.0,771.9,10.0 12 | 10,Philadelphia Eagles,340.0,4370.0,870.0,5.0,35.0,15.0,249.0,226.0,446.0,2677.0,23.0,20.0,5.6,139.0,390.0,1693.0,13.0,4.3,90.0,63.0,703.0,20.0,,,159.07999999999998,631.7,518.7,405.7,217.3,12.0,12.0,12.0,11.0,8.0,1008.08,12.0,895.08,12.0,782.0799999999999,11.0 13 | 11,Pittsburgh Steelers,347.0,4291.0,903.0,4.8,40.0,16.0,238.0,192.0,397.0,2505.0,27.0,24.0,5.8,105.0,468.0,1786.0,11.0,3.8,107.0,82.0,835.0,26.0,,,160.2,604.5,508.5,412.5,212.6,13.0,11.0,11.0,13.0,7.0,977.3,10.0,881.3,11.0,785.3,12.0 14 | 12,Washington Redskins,355.0,4692.0,894.0,5.2,43.0,20.0,261.0,224.0,411.0,2861.0,21.0,23.0,6.3,134.0,438.0,1831.0,19.0,4.2,106.0,62.0,626.0,21.0,,,152.44,636.1,524.1,412.1,257.1,10.0,13.0,13.0,12.0,12.0,1045.64,13.0,933.6400000000001,13.0,821.6400000000001,13.0 15 | 13,Atlanta Falcons,437.0,5272.0,902.0,5.8,32.0,13.0,295.0,227.0,396.0,3100.0,26.0,19.0,7.2,151.0,472.0,2172.0,20.0,4.6,126.0,66.0,588.0,18.0,,,190.0,693.0,579.5,466.0,311.2,14.0,14.0,14.0,14.0,14.0,1194.2,14.0,1080.7,14.0,967.2,14.0 16 | 14,New York Giants,501.0,4945.0,863.0,5.7,24.0,7.0,273.0,194.0,357.0,2892.0,36.0,17.0,7.6,137.0,480.0,2053.0,23.0,4.3,122.0,83.0,788.0,14.0,,,225.68,699.2,602.2,505.2,329.3,15.0,15.0,15.0,15.0,15.0,1254.18,15.0,1157.18,15.0,1060.18,15.0 17 | -------------------------------------------------------------------------------- /defense/1967.csv: -------------------------------------------------------------------------------- 1 | ,Tm,PointsAllowed,TotalYardsAllowed,OffensivePlaysAllowed,YardsPerPlay,TO,ForcedFumbles,TotalFirstDownsAllowed,Cmp,PassingAttAllowed,PassingYardsAllowed,PassingTDAllowed,Int,NetYardsAllowedPerPass,PassingFirstDownsAllowed,RushingAttAllowed,RushingYdsAllowed,RushingTDAllowed,YardsPerRushAllowed,RushingFirstDownsAllowed,PenaltiesCommitted,PenaltyYardsAllowed,FirstDownsViaPenalty,PercentageOfDrivesEndingInOffensiveScores,PercentDrivesEndingInTO,PassingFantasyPointsAllowed,PPRReceivingFantasyPointsAllowed,HalfPPRReceivingFantasyPointsAllowed,StandardReceivingFantasyPointsAllowed,RushingFantasyPointsAllowed,PassingDefRank,PPRReceivingDefRank,HalfPPRReceivingDefRank,StandardReceivingDefRank,RushingDefRank,PPRFantasyPointsAllowed,PPRDefRank,HalfPPRFantasyPointsAllowed,HalfPPRDefRank,StandardFantasyPointsAllowed,StandardDefRank 2 | 0,Los Angeles Rams,196.0,3526.0,849.0,4.2,45.0,13.0,200.0,212.0,445.0,2407.0,14.0,32.0,4.9,104.0,361.0,1119.0,6.0,3.1,75.0,91.0,912.0,21.0,,,88.28,536.7,430.7,324.7,121.9,5.0,5.0,5.0,6.0,1.0,746.8800000000001,4.0,640.88,4.0,534.88,3.0 3 | 1,Baltimore Colts,198.0,3843.0,818.0,4.7,40.0,8.0,208.0,221.0,395.0,2432.0,13.0,32.0,5.6,116.0,387.0,1411.0,5.0,3.6,78.0,82.0,927.0,14.0,,,85.28,542.2,431.7,321.2,155.1,4.0,6.0,6.0,5.0,3.0,782.58,6.0,672.0799999999999,5.0,561.5799999999999,5.0 4 | 2,Green Bay Packers,209.0,3300.0,809.0,4.1,40.0,14.0,183.0,155.0,337.0,1377.0,13.0,26.0,3.8,78.0,443.0,1923.0,7.0,4.3,98.0,55.0,482.0,7.0,,,55.08,370.7,293.2,215.7,206.3,1.0,1.0,1.0,1.0,7.0,632.0799999999999,1.0,554.5799999999999,1.0,477.08,1.0 5 | 3,Chicago Bears,218.0,3406.0,833.0,4.1,44.0,16.0,215.0,164.0,384.0,1875.0,14.0,28.0,4.5,98.0,419.0,1531.0,11.0,3.7,91.0,82.0,782.0,26.0,,,75.0,435.5,353.5,271.5,187.1,3.0,4.0,4.0,3.0,5.0,697.6,2.0,615.6,2.0,533.6,2.0 6 | 4,Detroit Lions,259.0,3528.0,822.0,4.3,33.0,10.0,205.0,143.0,312.0,1733.0,11.0,23.0,4.9,85.0,471.0,1795.0,15.0,3.8,98.0,73.0,822.0,22.0,,,67.32,382.3,310.8,239.3,249.5,2.0,2.0,2.0,2.0,12.0,699.12,3.0,627.62,3.0,556.12,4.0 7 | 5,Dallas Cowboys,268.0,3871.0,866.0,4.5,48.0,19.0,236.0,260.0,482.0,2790.0,21.0,29.0,5.3,145.0,339.0,1081.0,11.0,3.2,64.0,64.0,717.0,27.0,,,137.6,665.0,535.0,405.0,136.1,7.0,13.0,12.0,11.0,2.0,938.7,8.0,808.7,7.0,678.7,7.0 8 | 6,Minnesota Vikings,294.0,3856.0,850.0,4.5,35.0,19.0,217.0,149.0,314.0,1752.0,17.0,16.0,5.0,90.0,500.0,2104.0,12.0,4.2,105.0,90.0,906.0,22.0,,,106.08,426.2,351.7,277.2,244.39999999999998,6.0,3.0,3.0,4.0,10.0,776.68,5.0,702.18,6.0,627.68,6.0 9 | 7,Cleveland Browns,297.0,4666.0,954.0,4.9,36.0,14.0,281.0,250.0,454.0,2899.0,19.0,22.0,5.9,153.0,459.0,1767.0,15.0,3.8,115.0,57.0,655.0,13.0,,,147.95999999999998,653.9,528.9,403.9,238.7,10.0,12.0,11.0,10.0,8.0,1040.56,12.0,915.56,11.0,790.56,10.0 10 | 8,Pittsburgh Steelers,320.0,3955.0,844.0,4.7,39.0,13.0,228.0,201.0,397.0,2578.0,22.0,26.0,6.1,128.0,418.0,1377.0,12.0,3.3,80.0,73.0,833.0,20.0,,,139.12,590.8,490.3,389.8,183.7,9.0,8.0,8.0,8.0,4.0,913.6199999999999,7.0,813.12,8.0,712.62,8.0 11 | 9,San Francisco 49ers,337.0,4044.0,858.0,4.7,29.0,13.0,237.0,212.0,403.0,2346.0,19.0,16.0,5.2,128.0,407.0,1698.0,17.0,4.2,92.0,64.0,596.0,17.0,,,137.84,560.6,454.6,348.6,245.8,8.0,7.0,7.0,7.0,11.0,944.24,9.0,838.24,9.0,732.24,9.0 12 | 10,Washington Redskins,353.0,5255.0,937.0,5.6,34.0,14.0,274.0,261.0,468.0,3403.0,25.0,20.0,6.7,153.0,431.0,1852.0,19.0,4.3,98.0,86.0,882.0,23.0,,,196.12,751.3,620.8,490.3,271.2,14.0,14.0,14.0,14.0,14.0,1218.62,15.0,1088.12,15.0,957.62,15.0 13 | 11,St. Louis Cardinals,356.0,4185.0,807.0,5.2,32.0,13.0,216.0,169.0,360.0,2683.0,26.0,19.0,6.8,117.0,410.0,1502.0,13.0,3.7,79.0,89.0,782.0,20.0,,,173.32,593.3,508.8,424.3,202.2,13.0,9.0,10.0,12.0,6.0,968.8199999999999,10.0,884.3199999999999,10.0,799.8199999999999,11.0 14 | 12,New Orleans Saints,379.0,4928.0,902.0,5.5,32.0,10.0,276.0,207.0,410.0,2836.0,25.0,22.0,6.5,138.0,469.0,2092.0,22.0,4.5,114.0,83.0,824.0,24.0,,,169.44,640.6,537.1,433.6,321.2,12.0,11.0,13.0,13.0,16.0,1131.24,13.0,1027.74,13.0,924.24,13.0 15 | 13,New York Giants,379.0,4284.0,836.0,5.1,32.0,15.0,261.0,195.0,389.0,2485.0,25.0,17.0,5.9,125.0,416.0,1799.0,20.0,4.3,113.0,68.0,774.0,23.0,,,165.4,593.5,496.0,398.5,269.9,11.0,10.0,9.0,9.0,13.0,1028.8,11.0,931.3,12.0,833.8,12.0 16 | 14,Philadelphia Eagles,409.0,4972.0,937.0,5.3,35.0,14.0,286.0,255.0,480.0,3231.0,29.0,21.0,6.4,161.0,434.0,1741.0,16.0,4.0,105.0,67.0,715.0,20.0,,,203.24,752.1,624.6,497.1,242.10000000000002,15.0,15.0,15.0,15.0,9.0,1197.44,14.0,1069.94,14.0,942.44,14.0 17 | 15,Atlanta Falcons,422.0,5531.0,946.0,5.8,27.0,10.0,294.0,238.0,421.0,3392.0,31.0,17.0,7.7,152.0,504.0,2139.0,18.0,4.2,124.0,87.0,853.0,18.0,,,225.68,763.2,644.2,525.2,301.9,16.0,16.0,16.0,16.0,15.0,1290.78,16.0,1171.78,16.0,1052.78,16.0 18 | -------------------------------------------------------------------------------- /defense/1968.csv: -------------------------------------------------------------------------------- 1 | ,Tm,PointsAllowed,TotalYardsAllowed,OffensivePlaysAllowed,YardsPerPlay,TO,ForcedFumbles,TotalFirstDownsAllowed,Cmp,PassingAttAllowed,PassingYardsAllowed,PassingTDAllowed,Int,NetYardsAllowedPerPass,PassingFirstDownsAllowed,RushingAttAllowed,RushingYdsAllowed,RushingTDAllowed,YardsPerRushAllowed,RushingFirstDownsAllowed,PenaltiesCommitted,PenaltyYardsAllowed,FirstDownsViaPenalty,PercentageOfDrivesEndingInOffensiveScores,PercentDrivesEndingInTO,PassingFantasyPointsAllowed,PPRReceivingFantasyPointsAllowed,HalfPPRReceivingFantasyPointsAllowed,StandardReceivingFantasyPointsAllowed,RushingFantasyPointsAllowed,PassingDefRank,PPRReceivingDefRank,HalfPPRReceivingDefRank,StandardReceivingDefRank,RushingDefRank,PPRFantasyPointsAllowed,PPRDefRank,HalfPPRFantasyPointsAllowed,HalfPPRDefRank,StandardFantasyPointsAllowed,StandardDefRank 2 | 0,Baltimore Colts,144.0,3377.0,852.0,4.0,41.0,12.0,207.0,224.0,432.0,2038.0,9.0,29.0,4.3,119.0,375.0,1339.0,6.0,3.6,71.0,72.0,799.0,17.0,,,59.519999999999996,481.8,369.8,257.8,145.9,1.0,5.0,4.0,2.0,2.0,687.22,2.0,575.22,2.0,463.22,1.0 3 | 1,Dallas Cowboys,186.0,3633.0,848.0,4.3,41.0,15.0,202.0,220.0,428.0,2438.0,20.0,26.0,5.1,123.0,369.0,1195.0,2.0,3.2,61.0,54.0,657.0,18.0,,,125.52,583.8,473.8,363.8,101.5,9.0,12.0,12.0,11.0,1.0,810.8199999999999,6.0,700.8199999999999,6.0,590.8199999999999,5.0 4 | 2,Los Angeles Rams,200.0,3118.0,801.0,3.9,44.0,19.0,190.0,158.0,353.0,1813.0,12.0,25.0,4.5,104.0,397.0,1305.0,9.0,3.3,66.0,88.0,806.0,20.0,,,70.52,411.3,332.3,253.3,146.5,2.0,1.0,1.0,1.0,3.0,628.3199999999999,1.0,549.3199999999999,1.0,470.32,2.0 5 | 3,Green Bay Packers,227.0,3596.0,831.0,4.3,34.0,17.0,213.0,157.0,327.0,1796.0,14.0,17.0,5.1,92.0,476.0,1800.0,11.0,3.8,105.0,60.0,541.0,16.0,,,93.84,420.6,342.1,263.6,212.0,4.0,2.0,2.0,3.0,6.0,726.44,3.0,647.94,3.0,569.44,3.0 6 | 4,Detroit Lions,241.0,3837.0,830.0,4.6,36.0,12.0,214.0,157.0,337.0,2157.0,12.0,24.0,5.8,105.0,457.0,1680.0,13.0,3.7,92.0,76.0,658.0,17.0,,,86.28,444.7,366.2,287.7,222.0,3.0,3.0,3.0,5.0,7.0,752.98,4.0,674.48,4.0,595.98,6.0 7 | 5,Minnesota Vikings,242.0,3758.0,791.0,4.8,38.0,22.0,210.0,185.0,315.0,1855.0,16.0,16.0,5.2,98.0,432.0,1903.0,8.0,4.4,98.0,74.0,875.0,14.0,,,106.2,466.5,374.0,281.5,194.3,6.0,4.0,5.0,4.0,4.0,767.0,5.0,674.5,5.0,582.0,4.0 8 | 6,Cleveland Browns,273.0,4090.0,888.0,4.6,46.0,14.0,259.0,213.0,439.0,2248.0,19.0,32.0,4.8,130.0,423.0,1842.0,11.0,4.4,110.0,61.0,620.0,19.0,,,101.92,551.8,445.3,338.8,222.2,5.0,11.0,9.0,7.0,8.0,875.92,7.0,769.4200000000001,7.0,662.9200000000001,7.0 9 | 7,St. Louis Cardinals,289.0,4419.0,866.0,5.1,21.0,8.0,238.0,210.0,399.0,2861.0,23.0,13.0,6.5,131.0,423.0,1558.0,10.0,3.7,90.0,71.0,728.0,17.0,,,180.44,634.1,529.1,424.1,199.8,14.0,14.0,14.0,14.0,5.0,1014.34,14.0,909.34,13.0,804.34,12.0 10 | 8,San Francisco 49ers,310.0,4020.0,896.0,4.5,31.0,11.0,250.0,201.0,416.0,2244.0,19.0,20.0,5.0,124.0,445.0,1776.0,12.0,4.0,111.0,71.0,646.0,15.0,,,125.76,539.4,438.9,338.4,227.6,10.0,9.0,7.0,6.0,9.0,892.76,8.0,792.26,8.0,691.76,8.0 11 | 9,New York Giants,325.0,4341.0,810.0,5.4,40.0,14.0,263.0,191.0,364.0,2340.0,18.0,26.0,6.1,121.0,425.0,2001.0,22.0,4.7,125.0,62.0,579.0,17.0,,,113.6,533.0,437.5,342.0,304.1,7.0,7.0,6.0,8.0,15.0,950.7,10.0,855.2,10.0,759.7,9.0 12 | 10,New Orleans Saints,327.0,4291.0,839.0,5.1,42.0,26.0,228.0,153.0,366.0,2186.0,25.0,16.0,5.5,109.0,439.0,2105.0,13.0,4.8,97.0,74.0,757.0,22.0,,,155.44,521.6,445.1,368.6,236.5,12.0,6.0,8.0,12.0,11.0,913.54,9.0,837.04,9.0,760.54,10.0 13 | 11,Chicago Bears,333.0,4371.0,790.0,5.5,30.0,12.0,240.0,172.0,333.0,2667.0,25.0,18.0,7.3,102.0,427.0,1704.0,17.0,4.0,102.0,91.0,896.0,36.0,,,170.68,588.7,502.7,416.7,248.39999999999998,13.0,13.0,13.0,13.0,12.0,1007.78,13.0,921.78,14.0,835.78,14.0 14 | 12,Philadelphia Eagles,351.0,4514.0,863.0,5.2,20.0,7.0,256.0,182.0,327.0,2373.0,20.0,13.0,6.8,111.0,515.0,2141.0,18.0,4.2,128.0,76.0,843.0,17.0,,,148.92000000000002,539.3,448.3,357.3,308.1,11.0,8.0,11.0,10.0,16.0,996.3199999999999,12.0,905.32,12.0,814.32,13.0 15 | 13,Washington Redskins,358.0,4683.0,877.0,5.3,35.0,14.0,259.0,202.0,359.0,2489.0,16.0,21.0,6.6,118.0,497.0,2194.0,18.0,4.4,122.0,82.0,879.0,19.0,,,121.56,546.9,445.9,344.9,299.4,8.0,10.0,10.0,9.0,14.0,967.8599999999999,11.0,866.8599999999999,11.0,765.8599999999999,11.0 16 | 14,Atlanta Falcons,389.0,5320.0,936.0,5.7,30.0,16.0,302.0,248.0,389.0,3085.0,30.0,14.0,7.4,157.0,518.0,2235.0,17.0,4.3,129.0,63.0,628.0,16.0,,,215.4,736.5,612.5,488.5,293.5,16.0,16.0,16.0,15.0,13.0,1245.4,16.0,1121.4,16.0,997.4,16.0 17 | 15,Pittsburgh Steelers,397.0,4785.0,882.0,5.4,26.0,9.0,244.0,220.0,413.0,3161.0,29.0,17.0,7.2,131.0,441.0,1624.0,14.0,3.7,92.0,79.0,844.0,21.0,,,208.44,710.1,600.1,490.1,228.4,15.0,15.0,15.0,16.0,10.0,1146.94,15.0,1036.94,15.0,926.94,15.0 18 | -------------------------------------------------------------------------------- /defense/1969.csv: -------------------------------------------------------------------------------- 1 | ,Tm,PointsAllowed,TotalYardsAllowed,OffensivePlaysAllowed,YardsPerPlay,TO,ForcedFumbles,TotalFirstDownsAllowed,Cmp,PassingAttAllowed,PassingYardsAllowed,PassingTDAllowed,Int,NetYardsAllowedPerPass,PassingFirstDownsAllowed,RushingAttAllowed,RushingYdsAllowed,RushingTDAllowed,YardsPerRushAllowed,RushingFirstDownsAllowed,PenaltiesCommitted,PenaltyYardsAllowed,FirstDownsViaPenalty,PercentageOfDrivesEndingInOffensiveScores,PercentDrivesEndingInTO,PassingFantasyPointsAllowed,PPRReceivingFantasyPointsAllowed,HalfPPRReceivingFantasyPointsAllowed,StandardReceivingFantasyPointsAllowed,RushingFantasyPointsAllowed,PassingDefRank,PPRReceivingDefRank,HalfPPRReceivingDefRank,StandardReceivingDefRank,RushingDefRank,PPRFantasyPointsAllowed,PPRDefRank,HalfPPRFantasyPointsAllowed,HalfPPRDefRank,StandardFantasyPointsAllowed,StandardDefRank 2 | 0,Minnesota Vikings,133.0,2720.0,796.0,3.4,42.0,12.0,158.0,213.0,410.0,1631.0,8.0,30.0,3.6,88.0,337.0,1089.0,4.0,3.2,55.0,69.0,795.0,15.0,,,37.239999999999995,424.1,317.6,211.1,108.9,1.0,1.0,1.0,1.0,2.0,570.24,1.0,463.74,1.0,357.24,1.0 3 | 1,Detroit Lions,188.0,3084.0,768.0,4.0,42.0,21.0,182.0,167.0,350.0,1861.0,15.0,21.0,4.7,101.0,372.0,1223.0,7.0,3.3,64.0,90.0,857.0,17.0,,,92.44,443.1,359.6,276.1,122.30000000000001,3.0,3.0,3.0,3.0,3.0,657.84,2.0,574.34,2.0,490.84000000000003,2.0 4 | 2,Green Bay Packers,221.0,3827.0,881.0,4.3,26.0,7.0,224.0,177.0,360.0,1845.0,13.0,19.0,4.7,107.0,485.0,1982.0,7.0,4.1,103.0,65.0,733.0,14.0,,,87.8,439.5,351.0,262.5,226.2,2.0,2.0,2.0,2.0,7.0,753.5,3.0,665.0,3.0,576.5,3.0 5 | 3,Dallas Cowboys,223.0,3707.0,826.0,4.5,35.0,11.0,203.0,235.0,458.0,2657.0,23.0,24.0,5.2,141.0,313.0,1050.0,3.0,3.4,52.0,58.0,680.0,10.0,,,150.28,638.7,521.2,403.7,101.0,11.0,11.0,11.0,11.0,1.0,889.98,7.0,772.48,6.0,654.98,6.0 6 | 4,Los Angeles Rams,243.0,4001.0,895.0,4.5,38.0,12.0,242.0,202.0,430.0,2526.0,18.0,26.0,5.3,125.0,415.0,1475.0,8.0,3.6,84.0,88.0,709.0,33.0,,,121.04,562.6,461.6,360.6,171.5,7.0,9.0,9.0,9.0,5.0,855.1400000000001,4.0,754.1400000000001,4.0,653.1400000000001,5.0 7 | 5,Atlanta Falcons,268.0,4317.0,888.0,4.9,46.0,27.0,254.0,225.0,383.0,2285.0,13.0,19.0,5.5,120.0,475.0,2032.0,14.0,4.3,120.0,73.0,762.0,14.0,,,105.4,531.5,419.0,306.5,233.2,5.0,7.0,7.0,5.0,9.0,870.1,5.0,757.6,5.0,645.1,4.0 8 | 6,Baltimore Colts,268.0,4649.0,891.0,5.2,25.0,10.0,256.0,271.0,459.0,3249.0,20.0,15.0,6.6,164.0,399.0,1400.0,8.0,3.5,70.0,74.0,848.0,22.0,,,179.96,715.9,580.4,444.9,168.0,13.0,15.0,14.0,13.5,4.0,1063.8600000000001,13.0,928.36,12.0,792.86,12.0 9 | 7,New York Giants,298.0,4208.0,838.0,5.0,33.0,14.0,243.0,171.0,340.0,2155.0,18.0,19.0,5.8,103.0,466.0,2053.0,14.0,4.4,120.0,62.0,601.0,20.0,,,120.2,494.5,409.0,323.5,261.3,6.0,6.0,5.0,6.0,13.0,876.0,6.0,790.5,7.0,705.0,7.0 10 | 8,Cleveland Browns,300.0,4454.0,841.0,5.3,41.0,22.0,257.0,202.0,387.0,2464.0,19.0,19.0,5.8,121.0,417.0,1990.0,18.0,4.8,120.0,72.0,746.0,16.0,,,136.56,562.4,461.4,360.4,263.0,8.0,8.0,8.0,8.0,14.0,961.96,10.0,860.96,11.0,759.96,11.0 11 | 9,San Francisco 49ers,319.0,4175.0,854.0,4.9,31.0,11.0,242.0,205.0,402.0,2471.0,22.0,20.0,5.7,128.0,422.0,1704.0,14.0,4.0,91.0,70.0,671.0,23.0,,,146.84,584.1,481.6,379.1,232.4,10.0,10.0,10.0,10.0,8.0,963.34,11.0,860.84,10.0,758.34,10.0 12 | 10,Washington Redskins,319.0,4476.0,898.0,5.0,26.0,10.0,277.0,192.0,369.0,2177.0,11.0,16.0,5.6,110.0,511.0,2299.0,26.0,4.5,149.0,83.0,904.0,18.0,,,99.08,475.7,379.7,283.7,365.9,4.0,4.0,4.0,4.0,16.0,940.68,9.0,844.68,9.0,748.68,9.0 13 | 11,Chicago Bears,339.0,3881.0,769.0,5.0,27.0,11.0,208.0,150.0,296.0,1981.0,23.0,16.0,6.0,98.0,440.0,1900.0,17.0,4.3,89.0,66.0,612.0,21.0,,,139.24,486.1,411.1,336.1,270.0,9.0,5.0,6.0,7.0,15.0,895.34,8.0,820.34,8.0,745.34,8.0 14 | 12,Philadelphia Eagles,377.0,4978.0,936.0,5.3,29.0,14.0,268.0,243.0,444.0,3069.0,23.0,15.0,6.5,136.0,467.0,1909.0,15.0,4.1,111.0,79.0,950.0,21.0,,,184.76,687.9,566.4,444.9,252.89999999999998,14.0,13.0,13.0,13.5,11.0,1125.56,14.0,1004.06,14.0,882.56,14.0 15 | 13,St. Louis Cardinals,389.0,5176.0,936.0,5.5,27.0,12.0,289.0,260.0,465.0,3532.0,38.0,15.0,7.1,185.0,438.0,1644.0,10.0,3.8,83.0,71.0,773.0,21.0,,,263.28,841.2,711.2,581.2,200.4,16.0,16.0,16.0,16.0,6.0,1304.88,16.0,1174.88,16.0,1044.88,16.0 16 | 14,New Orleans Saints,393.0,5018.0,822.0,6.1,22.0,10.0,242.0,200.0,382.0,3183.0,32.0,12.0,7.9,131.0,419.0,1835.0,15.0,4.4,88.0,81.0,773.0,23.0,,,231.32,710.3,610.3,510.3,253.5,15.0,14.0,15.0,15.0,12.0,1195.12,15.0,1095.12,15.0,995.12,15.0 17 | 15,Pittsburgh Steelers,404.0,4401.0,898.0,4.9,41.0,16.0,260.0,227.0,410.0,2669.0,27.0,25.0,6.0,142.0,455.0,1732.0,17.0,3.8,101.0,79.0,793.0,17.0,,,164.76,655.9,542.4,428.9,243.2,12.0,12.0,12.0,12.0,10.0,1063.86,12.0,950.3599999999999,13.0,836.8599999999999,13.0 18 | -------------------------------------------------------------------------------- /misc/abbrev.csv: -------------------------------------------------------------------------------- 1 | ,Abbrev,Team 2 | 0,CAR,Carolina Panthers 3 | 1,BAL,Baltimore Ravens 4 | 2,TEN,Tennessee Titans 5 | 3,GNB,Green Bay Packers 6 | 4,DAL,Dallas Cowboys 7 | 5,MIN,Minnesota Vikings 8 | 6,NOR,New Orleans Saints 9 | 7,KAN,Kansas City Chiefs 10 | 8,CLE,Cleveland Browns 11 | 9,LAC,Los Angeles Chargers 12 | 10,SEA,Seattle Seahawks 13 | 11,TAM,Tampa Bay Buccaneers 14 | 12,SFO,San Francisco 49ers 15 | 13,HOU,Houston Texans 16 | 14,OAK,Oakland Raiders 17 | 15,DET,Detroit Lions 18 | 16,NYG,New York Giants 19 | 17,PHI,Philadelphia Eagles 20 | 18,CIN,Cincinnati Bengals 21 | 19,LAR,Los Angeles Rams 22 | 20,ATL,Atlanta Falcons 23 | 21,MIA,Miami Dolphins 24 | 22,JAX,Jacksonville Jaguars 25 | 23,CHI,Chicago Bears 26 | 24,NWE,New England Patriots 27 | 25,IND,Indianapolis Colts 28 | 26,BUF,Buffalo Bills 29 | 27,DEN,Denver Broncos 30 | 28,ARI,Arizona Cardinals 31 | 29,NYJ,New York Jets 32 | 30,WAS,Washington Redskins 33 | 31,PIT,Pittsburgh Steelers 34 | 32,SDG,San Diego Chargers 35 | 33,STL,St. Louis Rams 36 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4==4.9.1 2 | bs4==0.0.1 3 | certifi==2022.12.7 4 | chardet==3.0.4 5 | html5lib==1.1 6 | idna==2.10 7 | lxml==4.9.1 8 | numpy==1.22.0 9 | pandas==1.3.2 10 | python-dateutil==2.8.1 11 | pytz==2020.1 12 | requests==2.24.0 13 | six==1.15.0 14 | soupsieve==2.0.1 15 | urllib3==1.26.5 16 | webencodings==0.5.1 17 | -------------------------------------------------------------------------------- /scripts/scrape_pfr.py: -------------------------------------------------------------------------------- 1 | import requests 2 | from bs4 import BeautifulSoup as BS 3 | import pandas as pd 4 | 5 | pd.set_option('display.max_columns', None) 6 | 7 | URL = 'https://www.pro-football-reference.com/years/2020/fantasy.htm' 8 | 9 | res = requests.get(URL) 10 | soup = BS(res.content, 'html.parser') 11 | table = soup.find('table', {'id': 'fantasy'}) 12 | df = pd.read_html(str(table))[0] 13 | df.columns = df.columns.droplevel(level=0) 14 | 15 | #removing filler rows 16 | df = df.loc[df['Player'] != 'Player'] 17 | 18 | #fixing player names that have astericks 19 | df['Player'] = df['Player'].apply(lambda x: x.split('*')[0].strip()) 20 | 21 | #Column names: 22 | #Player,Tm,Pos,Age,G,GS,Tgt,Rec,PassingYds,PassingTD,PassingAtt,RushingYds, 23 | #RushingTD,RushingAtt,ReceivingYds,ReceivingTD,FantasyPoints,Int,Fumbles,FumblesLost 24 | 25 | df['PassingYds'] = df['Yds'].iloc[:, 0] 26 | df['RushingYds'] = df['Yds'].iloc[:, 1] 27 | df['ReceivingYds'] = df['Yds'].iloc[:, 2] 28 | 29 | df['PassingTD'] = df['TD'].iloc[:, 0] 30 | df['RushingTD'] = df['TD'].iloc[:, 1] 31 | df['ReceivingTD'] = df['TD'].iloc[:, 2] 32 | 33 | df['PassingAtt'] = df['Att'].iloc[:, 0] 34 | df['RushingAtt'] = df['Att'].iloc[:, 1] 35 | 36 | df = df.rename(columns={ 37 | 'FantPos': 'Pos', 'FantPt': 'FantasyPoints', 'Fmb': 'Fumbles', 'FL': 'FumblesLost' 38 | }) 39 | 40 | df = df[[ 41 | 'Player','Tm','Pos','Age','G','GS','Tgt','Rec','PassingYds','PassingTD','PassingAtt', 42 | 'RushingYds','RushingTD','RushingAtt','ReceivingYds','ReceivingTD','FantasyPoints', 43 | 'Int','Fumbles','FumblesLost' 44 | ]] 45 | 46 | df.to_csv('yearly/2020.csv', index=False) 47 | -------------------------------------------------------------------------------- /sos/1999.csv: -------------------------------------------------------------------------------- 1 | ,OppPPRFantasyPointsAllowed,PPRSOSRank,OppStandardFantasyPointsAllowed,StandardSOSRank,OppHalfPPRFantasyPointsAllowed,HalfPPRSOSRank,OppRushingFantasyPointsAllowed,RushingSOSRank,OppPassingFantasyPointsAllowed,PassingSOSRank,OppPPRReceivingFantasyPointsAllowed,PPRReceivingSOSRank,OppHalfPPRReceivingFantasyPointsAllowed,HalfPPRReceivingSOSRank,OppStandardReceivingFantasyPointsAllowed,StandardReceivingSOSRank 2 | St. Louis Rams,20443.759999999995,31.0,15412.76,31.0,17928.26,31.0,3843.6000000000004,30.0,3415.7600000000007,31.0,13184.4,31.0,10668.900000000001,31.0,8153.4,31.0 3 | Carolina Panthers,19799.04,30.0,14905.04,30.0,17352.04,30.0,3791.4000000000005,28.0,3199.04,30.0,12808.599999999999,26.0,10361.599999999999,29.0,7914.599999999999,30.0 4 | Jacksonville Jaguars,19632.1,29.0,14775.099999999999,29.0,17203.6,29.0,3915.1,31.0,3184.0000000000005,29.0,12533.0,20.0,10104.5,22.0,7676.000000000001,25.0 5 | Tampa Bay Buccaneers,19523.279999999995,28.0,14349.280000000002,26.0,16936.280000000002,27.0,3510.2,21.0,3060.8799999999997,23.0,12952.2,30.0,10365.2,30.0,7778.200000000001,27.0 6 | San Francisco 49ers,19456.739999999998,27.0,14575.74,28.0,17016.239999999998,28.0,3633.6000000000004,24.0,3144.04,27.0,12679.1,24.0,10238.6,26.0,7798.1,28.0 7 | Dallas Cowboys,19347.7,26.0,14431.699999999999,27.0,16889.7,26.0,3841.4,29.0,2987.8,18.0,12518.5,19.0,10060.500000000002,21.0,7602.500000000001,22.0 8 | Green Bay Packers,19225.44,25.0,14004.439999999999,18.0,16614.94,22.0,3262.8999999999996,8.0,3062.44,24.0,12900.1,29.0,10289.6,27.0,7679.1,26.0 9 | Pittsburgh Steelers,19178.739999999998,24.0,14206.739999999998,25.0,16692.739999999998,25.0,3637.0000000000005,25.0,3055.64,22.0,12486.100000000002,17.0,10000.100000000002,17.0,7514.1,16.0 10 | Atlanta Falcons,19138.08,23.0,14188.079999999998,24.0,16663.079999999998,24.0,3139.4,3.0,3178.4800000000005,28.0,12820.199999999999,28.0,10345.199999999999,28.0,7870.2,29.0 11 | New Orleans Saints,19112.04,22.0,14128.04,23.0,16620.04,23.0,3414.8,15.0,3070.64,25.0,12626.6,23.0,10134.6,24.0,7642.6,24.0 12 | San Diego Chargers,19108.74,21.0,14067.740000000002,21.0,16588.24,21.0,3597.3999999999996,23.0,2949.2399999999993,15.0,12562.100000000002,22.0,10041.6,19.0,7521.1,17.0 13 | Washington Redskins,19019.960000000003,20.0,14074.960000000001,22.0,16547.46,20.0,3515.0,22.0,2992.5600000000004,19.0,12512.4,18.0,10039.9,18.0,7567.4000000000015,21.0 14 | Detroit Lions,18983.58,19.0,13824.580000000002,16.0,16404.08,17.0,3375.399999999999,12.0,2905.4800000000005,14.0,12702.7,25.0,10123.2,23.0,7543.700000000001,19.0 15 | Chicago Bears,18913.14,18.0,13723.140000000001,12.0,16318.140000000001,16.0,3202.5999999999995,6.0,2898.4400000000005,13.0,12812.099999999999,27.0,10217.099999999999,25.0,7622.099999999999,23.0 16 | Tennessee Titans,18822.64,17.0,14049.640000000003,20.0,16436.140000000003,19.0,3678.5,27.0,3000.04,20.0,12144.100000000002,7.0,9757.600000000002,8.0,7371.100000000002,11.0 17 | Minnesota Vikings,18820.04,16.0,13792.040000000003,14.0,16306.040000000003,14.0,3311.4999999999995,10.0,2952.4400000000005,16.0,12556.1,21.0,10042.1,20.0,7528.099999999999,18.0 18 | Baltimore Ravens,18785.78,15.0,14040.779999999999,19.0,16413.28,18.0,3677.100000000001,26.0,3002.48,21.0,12106.199999999999,6.0,9733.699999999999,6.0,7361.2,10.0 19 | Cincinnati Bengals,18747.72,14.0,13807.720000000001,15.0,16277.720000000001,13.0,3399.4,13.0,2987.52,17.0,12360.800000000001,12.0,9890.800000000001,12.0,7420.800000000001,13.0 20 | Arizona Cardinals,18745.2,13.0,13870.2,17.0,16307.700000000003,15.0,3494.2,19.0,2886.0,12.0,12365.000000000002,13.0,9927.500000000002,15.0,7490.000000000001,15.0 21 | New York Giants,18739.28,12.0,13763.279999999999,13.0,16251.28,12.0,3483.2,18.0,2848.88,9.0,12407.2,15.0,9919.2,14.0,7431.2,14.0 22 | Cleveland Browns,18563.14,11.0,13714.14,11.0,16138.64,11.0,3069.6000000000004,2.0,3082.4400000000005,26.0,12411.099999999999,16.0,9986.6,16.0,7562.100000000001,20.0 23 | Philadelphia Eagles,18435.780000000002,10.0,13559.78,10.0,15997.78,10.0,3409.2000000000003,14.0,2847.8800000000006,8.0,12178.699999999999,8.0,9740.699999999999,7.0,7302.700000000001,6.0 24 | Seattle Seahawks,18355.94,9.0,13477.940000000002,8.0,15916.94,8.0,3268.2,9.0,2875.6400000000003,11.0,12212.100000000002,9.0,9773.100000000002,9.0,7334.100000000001,9.0 25 | Kansas City Chiefs,18355.38,8.0,13353.380000000003,5.0,15854.380000000003,6.0,3173.8,5.0,2871.88,10.0,12309.700000000003,11.0,9808.700000000003,11.0,7307.700000000002,7.0 26 | Buffalo Bills,18332.480000000003,7.0,13506.48,9.0,15919.480000000001,9.0,3445.9,17.0,2811.88,5.0,12074.7,4.0,9661.7,4.0,7248.700000000001,5.0 27 | Miami Dolphins,18306.96,6.0,13445.960000000003,7.0,15876.460000000003,7.0,3357.4,11.0,2846.16,7.0,12103.400000000001,5.0,9672.900000000001,5.0,7242.400000000001,4.0 28 | Denver Broncos,18268.520000000004,5.0,13263.52,3.0,15766.020000000002,4.0,3053.8999999999996,1.0,2815.32,6.0,12399.300000000001,14.0,9896.8,13.0,7394.299999999999,12.0 29 | Oakland Raiders,18229.980000000003,4.0,13290.980000000001,4.0,15760.480000000003,3.0,3164.699999999999,4.0,2806.0800000000004,4.0,12259.2,10.0,9789.7,10.0,7320.2,8.0 30 | Indianapolis Colts,18208.5,3.0,13417.500000000002,6.0,15813.000000000002,5.0,3445.7000000000003,16.0,2792.8,3.0,11970.0,3.0,9574.500000000002,3.0,7179.000000000001,3.0 31 | New England Patriots,17991.54,2.0,13190.54,2.0,15591.04,2.0,3503.7,20.0,2706.24,1.0,11781.600000000002,2.0,9381.100000000002,2.0,6980.600000000001,2.0 32 | New York Jets,17622.54,1.0,12930.54,1.0,15276.540000000003,1.0,3262.6,7.0,2722.8399999999997,2.0,11637.099999999999,1.0,9291.100000000002,1.0,6945.1,1.0 33 | -------------------------------------------------------------------------------- /sos/2011.csv: -------------------------------------------------------------------------------- 1 | ,OppPPRFantasyPointsAllowed,PPRSOSRank,OppStandardFantasyPointsAllowed,StandardSOSRank,OppHalfPPRFantasyPointsAllowed,HalfPPRSOSRank,OppRushingFantasyPointsAllowed,RushingSOSRank,OppPassingFantasyPointsAllowed,PassingSOSRank,OppPPRReceivingFantasyPointsAllowed,PPRReceivingSOSRank,OppHalfPPRReceivingFantasyPointsAllowed,HalfPPRReceivingSOSRank,OppStandardReceivingFantasyPointsAllowed,StandardReceivingSOSRank 2 | Chicago Bears,21928.880000000005,32.0,16503.879999999997,32.0,19216.38,32.0,3944.5999999999995,19.0,3692.08,31.0,14292.199999999999,31.0,11579.699999999999,31.0,8867.2,31.0 3 | Green Bay Packers,21838.82,31.0,16398.819999999996,31.0,19118.82,31.0,4024.6999999999994,24.0,3666.3200000000006,30.0,14147.800000000001,29.0,11427.8,29.0,8707.8,29.0 4 | Detroit Lions,21827.140000000003,30.0,16344.140000000001,30.0,19085.640000000003,30.0,3711.3,6.0,3704.2400000000002,32.0,14411.6,32.0,11670.1,32.0,8928.6,32.0 5 | Minnesota Vikings,21788.719999999998,29.0,16308.720000000001,29.0,19048.719999999998,29.0,4009.8,23.0,3569.12,27.0,14209.8,30.0,11469.800000000001,30.0,8729.8,30.0 6 | New Orleans Saints,21707.960000000003,28.0,16294.960000000001,28.0,19001.460000000003,28.0,4186.9,32.0,3559.1600000000003,26.0,13961.9,24.0,11255.4,26.0,8548.9,26.0 7 | Atlanta Falcons,21647.02,27.0,16219.020000000004,27.0,18933.020000000004,27.0,4102.6,29.0,3576.12,28.0,13968.3,26.0,11254.3,25.0,8540.3,25.0 8 | Kansas City Chiefs,21540.3,26.0,16140.3,26.0,18840.3,26.0,3940.5999999999995,18.0,3580.2,29.0,14019.5,27.0,11319.5,28.0,8619.500000000002,28.0 9 | Carolina Panthers,21482.14,25.0,15987.14,24.0,18734.64,25.0,3981.6,21.0,3536.4400000000005,25.0,13964.1,25.0,11216.6,23.0,8469.1,22.0 10 | Denver Broncos,21356.4,24.0,16060.4,25.0,18708.4,24.0,3955.5999999999995,20.0,3518.8,23.0,13882.0,23.0,11234.0,24.0,8586.0,27.0 11 | Tampa Bay Buccaneers,21204.52,23.0,15654.52,19.0,18429.520000000004,21.0,3581.9,2.0,3535.32,24.0,14087.3,28.0,11312.300000000001,27.0,8537.3,24.0 12 | New York Jets,21133.74,22.0,15886.739999999998,23.0,18510.24,23.0,3932.1,17.0,3477.04,22.0,13724.600000000002,21.0,11101.100000000002,22.0,8477.6,23.0 13 | San Diego Chargers,21092.719999999998,21.0,15802.72,22.0,18447.719999999998,22.0,3930.8999999999996,16.0,3436.5199999999995,20.0,13725.3,22.0,11080.3,21.0,8435.3,21.0 14 | Washington Redskins,20980.62,20.0,15677.619999999999,21.0,18329.12,20.0,3821.399999999999,11.0,3452.92,21.0,13706.3,20.0,11054.800000000001,20.0,8403.300000000001,20.0 15 | Dallas Cowboys,20908.56,19.0,15669.559999999998,20.0,18289.06,19.0,4075.3999999999996,27.0,3353.7600000000007,16.0,13479.400000000001,16.0,10859.900000000001,15.0,8240.4,15.0 16 | Buffalo Bills,20813.420000000002,18.0,15584.419999999998,17.0,18198.920000000002,18.0,3868.6,14.0,3404.519999999999,19.0,13540.300000000001,18.0,10925.8,18.0,8311.3,19.0 17 | Philadelphia Eagles,20741.419999999995,17.0,15386.419999999998,13.0,18063.919999999995,15.0,3778.9,8.0,3334.7199999999993,14.0,13627.800000000001,19.0,10950.300000000001,19.0,8272.800000000001,17.0 18 | Oakland Raiders,20719.58,16.0,15549.579999999998,16.0,18134.58,17.0,3870.8999999999996,15.0,3390.48,18.0,13458.2,15.0,10873.2,16.0,8288.2,18.0 19 | New York Giants,20666.399999999998,15.0,15402.400000000001,14.0,18034.4,14.0,3774.4,7.0,3358.0,17.0,13534.000000000002,17.0,10902.0,17.0,8270.000000000002,16.0 20 | Miami Dolphins,20642.28,14.0,15615.280000000002,18.0,18128.78,16.0,4106.1,30.0,3331.4799999999996,13.0,13204.699999999999,14.0,10691.2,14.0,8177.7,14.0 21 | New England Patriots,20539.360000000004,13.0,15488.36,15.0,18013.86,13.0,4061.8,26.0,3340.1599999999994,15.0,13137.400000000001,13.0,10611.9,13.0,8086.4,13.0 22 | Houston Texans,20503.100000000002,12.0,15255.100000000002,12.0,17879.100000000002,12.0,4076.7,28.0,3308.4,12.0,13118.0,12.0,10494.0,12.0,7869.999999999999,12.0 23 | Tennessee Titans,19927.5,11.0,14879.500000000002,11.0,17403.5,11.0,4034.9999999999995,25.0,3195.0000000000005,11.0,12697.500000000002,8.0,10173.5,9.0,7649.499999999999,9.0 24 | San Francisco 49ers,19854.92,10.0,14796.919999999998,10.0,17325.92,10.0,4120.2,31.0,3099.9199999999996,6.0,12634.800000000001,5.0,10105.800000000001,5.0,7576.800000000002,5.0 25 | Jacksonville Jaguars,19790.5,9.0,14736.500000000002,9.0,17263.5,9.0,3986.9,22.0,3163.6,10.0,12640.0,6.0,10113.0,6.0,7586.0,6.0 26 | Indianapolis Colts,19644.6,8.0,14571.6,8.0,17108.100000000002,8.0,3827.1,12.0,3123.0,8.0,12694.5,7.0,10158.0,7.0,7621.5,8.0 27 | St. Louis Rams,19581.96,7.0,14368.96,6.0,16975.459999999995,6.0,3502.7999999999993,1.0,3109.76,7.0,12969.4,11.0,10362.9,11.0,7756.4000000000015,11.0 28 | Arizona Cardinals,19543.660000000003,6.0,14491.66,7.0,17017.66,7.0,3676.0,5.0,3134.7600000000007,9.0,12732.9,10.0,10206.9,10.0,7680.900000000001,10.0 29 | Seattle Seahawks,19477.820000000003,5.0,14355.82,5.0,16916.82,5.0,3662.7,4.0,3090.3200000000006,5.0,12724.800000000001,9.0,10163.800000000001,8.0,7602.800000000001,7.0 30 | Pittsburgh Steelers,19104.359999999997,4.0,14102.359999999999,4.0,16603.36,4.0,3840.9,13.0,2951.5600000000004,3.0,12311.9,3.0,9810.900000000001,3.0,7309.9,4.0 31 | Cleveland Browns,18963.66,3.0,13882.66,3.0,16423.16,3.0,3616.699999999999,3.0,2964.56,4.0,12382.400000000003,4.0,9841.900000000001,4.0,7301.400000000002,3.0 32 | Baltimore Ravens,18811.66,2.0,13876.66,2.0,16344.16,2.0,3820.5000000000005,10.0,2917.76,2.0,12073.400000000001,2.0,9605.9,2.0,7138.399999999999,2.0 33 | Cincinnati Bengals,18731.3,1.0,13778.3,1.0,16254.8,1.0,3811.1999999999994,9.0,2876.6,1.0,12043.500000000002,1.0,9567.0,1.0,7090.500000000001,1.0 34 | -------------------------------------------------------------------------------- /sos/2018.csv: -------------------------------------------------------------------------------- 1 | ,OppPPRFantasyPointsAllowed,PPRSOSRank,OppStandardFantasyPointsAllowed,StandardSOSRank,OppHalfPPRFantasyPointsAllowed,HalfPPRSOSRank,OppRushingFantasyPointsAllowed,RushingSOSRank,OppPassingFantasyPointsAllowed,PassingSOSRank,OppPPRReceivingFantasyPointsAllowed,PPRReceivingSOSRank,OppHalfPPRReceivingFantasyPointsAllowed,HalfPPRReceivingSOSRank,OppStandardReceivingFantasyPointsAllowed,StandardReceivingSOSRank 2 | Carolina Panthers,22987.6,32.0,16982.6,29.0,19985.1,31.0,3931.6000000000004,14.0,3965.9999999999995,31.0,15090.000000000002,32.0,12087.5,32.0,9085.0,31.0 3 | Baltimore Ravens,22987.1,31.0,17118.1,32.0,20052.600000000002,32.0,4237.000000000001,31.0,3892.6,29.0,14857.499999999998,28.0,11923.0,29.0,8988.5,29.0 4 | Cleveland Browns,22891.059999999998,30.0,17032.06,31.0,19961.559999999998,30.0,3942.0000000000005,16.0,3981.16,32.0,14967.9,30.0,12038.400000000001,31.0,9108.899999999998,32.0 5 | Atlanta Falcons,22821.64,29.0,16906.64,27.0,19864.14,28.0,4043.100000000001,22.0,3918.4399999999996,30.0,14860.100000000004,29.0,11902.600000000002,28.0,8945.1,28.0 6 | New Orleans Saints,22809.46,28.0,16882.46,26.0,19845.96,26.0,4107.8,23.0,3862.76,26.0,14838.900000000001,27.0,11875.400000000003,27.0,8911.900000000001,25.0 7 | Pittsburgh Steelers,22788.160000000003,27.0,16937.16,28.0,19862.660000000003,27.0,4159.900000000001,27.0,3838.3599999999997,25.0,14789.899999999998,26.0,11864.399999999998,26.0,8938.900000000001,27.0 8 | Denver Broncos,22746.500000000004,26.0,17013.5,30.0,19880.000000000004,29.0,4216.9000000000015,30.0,3883.6000000000004,27.0,14646.0,23.0,11779.5,25.0,8913.0,26.0 9 | Tampa Bay Buccaneers,22632.72,25.0,16652.72,23.0,19642.72,25.0,3770.0000000000005,5.0,3889.9199999999996,28.0,14972.800000000001,31.0,11982.8,30.0,8992.8,30.0 10 | Cincinnati Bengals,22502.74,24.0,16668.739999999998,24.0,19585.74,23.0,4034.900000000001,21.0,3794.2400000000002,23.0,14673.6,24.0,11756.6,24.0,8839.6,24.0 11 | Los Angeles Chargers,22452.379999999997,23.0,16817.38,25.0,19634.879999999997,24.0,4300.700000000001,32.0,3784.48,22.0,14367.2,17.0,11549.699999999999,18.0,8732.199999999999,21.0 12 | Oakland Raiders,22433.38,22.0,16625.38,22.0,19529.38,22.0,4154.8,26.0,3741.88,18.0,14536.7,20.0,11632.7,21.0,8728.699999999999,20.0 13 | Dallas Cowboys,22246.38,21.0,16346.380000000001,16.0,19296.379999999997,21.0,3796.5000000000005,6.0,3773.6799999999994,21.0,14676.2,25.0,11726.2,23.0,8776.199999999999,22.0 14 | Washington Redskins,22220.780000000002,20.0,16310.779999999999,14.0,19265.780000000002,19.0,3937.600000000001,15.0,3731.4800000000005,16.0,14551.699999999999,21.0,11596.699999999999,20.0,8641.7,18.0 15 | Arizona Cardinals,22089.420000000002,19.0,16477.420000000002,21.0,19283.420000000002,20.0,3874.6000000000004,11.0,3826.5199999999995,24.0,14388.3,18.0,11582.3,19.0,8776.300000000001,23.0 16 | Los Angeles Rams,21998.100000000002,18.0,16355.099999999999,17.0,19176.600000000002,15.0,4024.5,20.0,3759.6000000000004,20.0,14214.0,14.0,11392.5,14.0,8571.0,14.0 17 | San Francisco 49ers,21988.74,17.0,16391.74,18.0,19190.24,17.0,4195.8,28.0,3668.8399999999997,12.0,14124.100000000002,11.0,11325.6,12.0,8527.099999999999,11.0 18 | Kansas City Chiefs,21985.96,16.0,16428.96,20.0,19207.46,18.0,4121.599999999999,24.0,3714.9599999999996,14.0,14149.4,13.0,11370.9,13.0,8592.4,16.0 19 | New York Giants,21960.5,15.0,16007.5,10.0,18984.0,13.0,3577.7000000000007,1.0,3742.7999999999993,19.0,14640.0,22.0,11663.5,22.0,8687.0,19.0 20 | Seattle Seahawks,21950.119999999995,14.0,16404.12,19.0,19177.119999999995,16.0,4136.0,25.0,3738.32,17.0,14075.800000000003,10.0,11302.800000000001,10.0,8529.8,12.0 21 | Jacksonville Jaguars,21817.5,13.0,15944.500000000002,9.0,18881.0,10.0,3727.4000000000005,3.0,3632.6000000000004,10.0,14457.500000000004,19.0,11521.0,17.0,8584.5,15.0 22 | Chicago Bears,21815.800000000003,12.0,16345.800000000001,15.0,19080.8,14.0,4209.8,29.0,3695.9999999999995,13.0,13910.0,7.0,11175.000000000002,8.0,8440.0,9.0 23 | Philadelphia Eagles,21799.0,11.0,16014.999999999998,11.0,18907.0,11.0,3800.9000000000005,7.0,3654.5999999999995,11.0,14343.5,16.0,11451.5,16.0,8559.5,13.0 24 | Minnesota Vikings,21791.199999999997,10.0,16145.199999999999,13.0,18968.199999999997,12.0,3820.1,8.0,3720.5999999999995,15.0,14250.500000000002,15.0,11427.5,15.0,8604.5,17.0 25 | Indianapolis Colts,21689.28,9.0,16040.279999999997,12.0,18864.78,9.0,3949.500000000001,17.0,3607.08,9.0,14132.7,12.0,11308.2,11.0,8483.7,10.0 26 | New England Patriots,21319.74,8.0,15752.740000000002,8.0,18536.24,8.0,3998.2000000000007,19.0,3494.44,4.0,13827.100000000002,3.0,11043.600000000002,4.0,8260.1,4.0 27 | Houston Texans,21287.8,7.0,15582.8,3.0,18435.3,3.0,3989.2000000000003,18.0,3413.6,2.0,13884.999999999998,6.0,11032.499999999998,3.0,8180.0,2.0 28 | Miami Dolphins,21285.96,6.0,15728.960000000003,7.0,18507.46,7.0,3867.9000000000005,10.0,3537.159999999999,8.0,13880.9,5.0,11102.4,6.0,8323.9,7.0 29 | Buffalo Bills,21271.52,5.0,15670.52,5.0,18471.02,5.0,3765.7999999999997,4.0,3529.92,7.0,13975.800000000001,8.0,11175.300000000001,9.0,8374.800000000001,8.0 30 | Green Bay Packers,21265.92,4.0,15702.920000000002,6.0,18484.42,6.0,3898.0,13.0,3521.12,6.0,13846.800000000001,4.0,11065.3,5.0,8283.8,6.0 31 | Detroit Lions,21213.659999999996,3.0,15664.66,4.0,18439.16,4.0,3889.2000000000003,12.0,3519.5599999999995,5.0,13804.900000000001,2.0,11030.400000000001,2.0,8255.9,3.0 32 | Tennessee Titans,21200.36,2.0,15457.36,2.0,18328.86,2.0,3703.6,2.0,3473.3599999999997,3.0,14023.4,9.0,11151.899999999998,7.0,8280.399999999998,5.0 33 | New York Jets,20986.0,1.0,15435.0,1.0,18210.5,1.0,3859.000000000001,9.0,3401.999999999999,1.0,13725.0,1.0,10949.5,1.0,8174.0,1.0 34 | --------------------------------------------------------------------------------