Open markkleader opened 7 years ago
When I pulled data for 2016, I noticed everyone has '0' for 'passing_int'. Here is a sample code executed in the terminal and the results:
import nflgame games = nflgame.games(2016) players = nflgame.combine(games) for p in players.passing().sort('passing_int').limit(50): ... print p, p.passing_int ... T.Siemian 0 R.Dixon 0 C.Newton 0 M.Ryan 0 J.Winston 0 J.Flacco 0 J.Tucker 0 T.Taylor 0 B.Osweiler 0 J.Cutler 0 B.Bortles 0 M.Lee 0 A.Rodgers 0 A.Smith 0 J.Maclin 0 D.Poe 0 P.Rivers 0 T.Benjamin 0 D.Brees 0 W.Snead 0 D.Carr 0 R.Fitzpatrick 0 A.Dalton 0 C.Wentz 0 R.Griffin 0 D.Johnson 0 T.Pryor 0 M.Mariota 0 D.Murray 0 S.Hill 0 J.McKinnon 0 R.Wilson 0 D.Baldwin 0 J.Ryan 0 R.Tannehill 0 J.Landry 0 D.Prescott 0 C.Beasley 0 D.Bryant 0 E.Manning 0 A.Luck 0 P.McAfee 0 A.Morrison 0 M.Stafford 0 C.Palmer 0 L.Fitzgerald 0 J.Garoppolo 0 K.Cousins 0 T.Way 0 B.Roethlisberger 0
Any help is appreciated. Thanks.
Its supposed to be passing_ints i believe
passing_ints
When I pulled data for 2016, I noticed everyone has '0' for 'passing_int'. Here is a sample code executed in the terminal and the results:
Any help is appreciated. Thanks.