nfl_data {ProSportsDraftData} | R Documentation |
NFL Draft Data
Description
A dataset of all first-round picks in the NFL, including various draft metrics.
Usage
nfl_data
Format
A tibble
with the following columns:
source
The source of the data.
name
The name of the player.
year
The year of the draft.
rank
The rank of the player.
round
The round in which the player was drafted.
height
The height of the player.
weight
The weight of the player.
position
The position of the player.
college
The college the player attended.
pros
The pros of the player's abilities.
cons
The cons of the player's abilities.
similar_player
A similar player for comparison.
summary
A summary of the player's abilities.
arm_length
The arm length of the player.
hand_length
The hand length of the player.
next_gen_production_score
The Next Gen production score.
next_gen_athleticism_score
The Next Gen athleticism score.
forty_yard_dash
The forty-yard dash time.
vertical_jump
The vertical jump height.
nfl_prospect_grade
The NFL prospect grade.
home_town
The hometown of the player.
broad_jump
The broad jump distance.
three_cone_drill
The three-cone drill time.
twenty_yard_shuttle
The twenty-yard shuttle time.
bench_press
The bench press reps.
college_abbrivation
The abbreviation of the college.
pre_draft
Pre-draft information.
post_draft
Post-draft information.
position_rank
The position rank of the player.
overall_rank
The overall rank of the player.
grade
The grade of the player.
school
The school the player attended.
yds
Yards the player ran.
ypa
The yards per attempt.
ypr
The yards per reception.
tds
Number of touchdowns the player performed.
ints
The interceptions.
rtg
The rating of the player.
tkls
The number of taclees of the player.
tfl
The tackles for loss.
ypc
The yards per carry.
pbu
The pass break-ups of the player.
twenty_plus
Plays of twenty or more yards.
sacks
Number of sacks of the player.
gms
The number of games played.
strts
The number of games started.
sk_all
The number of sack allowed.
age
The age of the player.
main_selling_point
The main selling point of the player.
description
The description of the player.
scouting_report
The scouting report.
score
Players score from 1-100.
Examples
# Load the dataset
data(nfl_data)
# View the first few rows
head(nfl_data)
# Filter data for NFL.com source
nfl_com_data <- nfl_data[nfl_data$source == "NFL.com", ]
# Filter data for The Ringer source
the_ringer_data <- nfl_data[nfl_data$source == "The Ringer", ]