nba_data_the_ringer {ProSportsDraftData} | R Documentation |
NBA Data The Ringer
Description
Filter NBA Data by Source (The Ringer)
Usage
nba_data_the_ringer()
Format
A tibble
with the following columns:
name
The name of the player.
year
The year of the draft.
position
The position the player plays.
school
The school the player attended.
grade
The grade given to the player.
pts_total
Total points scored by the player.
pts_per40
Points per 40 minutes played.
reb_total
Total rebounds by the player.
reb_per40
Rebounds per 40 minutes played.
ast_total
Total assists by the player.
ast_per40
Assists per 40 minutes played.
efg
Effective field goal percentage.
fga
Field goal attempts.
stl_total
Total steals by the player.
stl_per40
Steals per 40 minutes played.
blk_total
Total blocks by the player.
blk_per40
Blocks per 40 minutes played.
tpt
Three-point shots made.
tpa
Three-point attempts.
ft
Free throws made.
fta
Free throw attempts.
ts
True shooting percentage.
ts_att
True shooting attempts.
main_selling_point
The main selling point of the player.
age
The age of the player at the time of the draft.
height
The height of the player.
weight
The weight of the player.
wingspan
The wingspan of the player.
standing_reach
The standing reach of the player.
analysis
An analysis of the player's potential and performance.
similar_player
A player with a similar profile.
pros
The pros of the player's abilities.
cons
The cons of the player's abilities.
Details
Filters and selects NBA data from The Ringer for the given source value.
Value
A filtered and selected tibble of NBA data from The Ringer.
Examples
# Filter NFL data for The Ringer
ringer_data <- nba_data_the_ringer()
# View the first few rows
head(ringer_data)