Baselight

NFL Play Statistics Dataset (primary)

NFL play-by-play dataset with participation information, 2004-present.

@kaggle.toddsteussie_nfl_play_statistics_dataset_2004_to_present

Combine
@kaggle.toddsteussie_nfl_play_statistics_dataset_2004_to_present.combine

  • 896.8 KB
  • 10080 rows
  • 35 columns
combineid

CombineId

playerid

PlayerId

combineyear

CombineYear

combineposition

CombinePosition

combineheight

CombineHeight

combineweight

CombineWeight

combinehand

CombineHand

namefirst

NameFirst

namelast

NameLast

namefull

NameFull

position

Position

collegeid

CollegeId

nflid

NflId

college

College

heightinches

HeightInches

weight

Weight

dob

Dob

ageatdraft

AgeAtDraft

playerprofileurl

PlayerProfileUrl

homecity

HomeCity

homestate

HomeState

homecountry

HomeCountry

highschool

HighSchool

hscity

HsCity

hsstate

HsState

hscountry

HsCountry

combinearm

CombineArm

combine40yd

Combine40yd

combinevert

CombineVert

combinebench

CombineBench

combineshuttle

CombineShuttle

combinebroad

CombineBroad

combine3cone

Combine3cone

combine60ydshuttle

Combine60ydShuttle

combinewonderlic

CombineWonderlic

10000198700671987CB69.81988.5MichaelAdamsMichael AdamsDB724012508219Arkansas State70195Sun Apr 05 1964 00:00:00 GMT+0000 (Coordinated Universal Time)23.076712328767123http://www.nfl.com/player/MichaelAdams/2508219/profileShelbyMSUSAnannannannan30.54.4232134.611811.91
10001198701541987C74.826610.25JohnAdickesJohn AdickesC767062508242Baylor75264Mon Jun 29 1964 00:00:00 GMT+0000 (Coordinated Universal Time)22.843835616438355http://www.nfl.com/player/JohnAdickes/2508242/profileQueensNYUSAnannannannan304.9726.5254.6103
10002198708001987FB71.82179TommyAgeeTommy AgeeFB36849nanAuburn72217nannannannannannannannan30.7515
10003198701211987C7527910.5DavidAlexanderDavid AlexanderC741042499384Tulsa (OK)75285Tue Jul 28 1964 00:00:00 GMT+0000 (Coordinated Universal Time)22.76438356164384http://www.nfl.com/player/DavidAlexander/2499384/profileSilver SpringMDUSAnannannannan32.755.1327.5224.33105
10004198708011987WR72.120210LynealAlstonLyneal AlstonWR394062508416Southern Miss72202Thu Jul 23 1964 00:00:00 GMT+0000 (Coordinated Universal Time)22.778082191780825http://www.nfl.com/player/LynealAlston/2508416/profileMobileALUSAnannannannan334.643274.5211411.85
10005198702011987DE76.52738.75SteveAlvordSteve AlvordDT981952508426Washington76272Fri Oct 02 1964 00:00:00 GMT+0000 (Coordinated Universal Time)22.583561643835612http://www.nfl.com/player/SteveAlvord/2508426/profileBellinghamWAUSAnannannannan344.8628.5184.49108
10006198702561987CB73.62088.5AnthonyAndersonAnthony AndersonDB712452508463Grambling State (LA)74205Sat Oct 24 1964 00:00:00 GMT+0000 (Coordinated Universal Time)22.523287671232875http://www.nfl.com/player/AnthonyAnderson/2508463/profileRustonLAUSAnannannannan32.54.69314.4811112.17
10007198702241987FB72.322010.25JoeArmentroutJoe ArmentroutRB537062508622Wisconsin72220Wed Nov 04 1964 00:00:00 GMT+0000 (Coordinated Universal Time)22.493150684931507http://www.nfl.com/player/JoeArmentrout/2508622/profilenannannannannannannan30.54.7131184.1611611.59
10008198700231987OT7628410.25BruceArmstrongBruce ArmstrongOT402922499455Louisville76295Tue Sep 07 1965 00:00:00 GMT+0000 (Coordinated Universal Time)21.65205479452055http://www.nfl.com/player/BruceArmstrong/2499455/profileMiamiFLUSAMiami Central HSnanFLUSA32.755.0527224.81100
10009198701791987FS71.31919GeneAtkinsGene AtkinsDB323072499467Florida A&M71201Sun Nov 22 1964 00:00:00 GMT+0000 (Coordinated Universal Time)22.44383561643836http://www.nfl.com/player/GeneAtkins/2499467/profileTallahasseeFLUSAnannannannan29.754.5831144.5512012.05

CREATE TABLE combine (
  "combineid" BIGINT,
  "playerid" BIGINT,
  "combineyear" BIGINT,
  "combineposition" VARCHAR,
  "combineheight" DOUBLE,
  "combineweight" BIGINT,
  "combinehand" DOUBLE,
  "namefirst" VARCHAR,
  "namelast" VARCHAR,
  "namefull" VARCHAR,
  "position" VARCHAR,
  "collegeid" DOUBLE,
  "nflid" VARCHAR,
  "college" VARCHAR,
  "heightinches" DOUBLE,
  "weight" DOUBLE,
  "dob" TIMESTAMP,
  "ageatdraft" DOUBLE,
  "playerprofileurl" VARCHAR,
  "homecity" VARCHAR,
  "homestate" VARCHAR,
  "homecountry" VARCHAR,
  "highschool" VARCHAR,
  "hscity" VARCHAR,
  "hsstate" VARCHAR,
  "hscountry" VARCHAR,
  "combinearm" DOUBLE,
  "combine40yd" DOUBLE,
  "combinevert" DOUBLE,
  "combinebench" DOUBLE,
  "combineshuttle" DOUBLE,
  "combinebroad" DOUBLE,
  "combine3cone" DOUBLE,
  "combine60ydshuttle" DOUBLE,
  "combinewonderlic" DOUBLE
);