Hatman commited on
Commit
0b887e3
1 Parent(s): 5257e42

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +75 -0
README.md ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ language:
4
+ - en
5
+ size_categories:
6
+ - n<1K
7
+ ---
8
+
9
+ ## Dataset Description
10
+
11
+ This dataset contains two CSV files with information about the 2018 NBA regular season:
12
+
13
+ 1. `game_results_2018.csv` - Contains results for each game played in the 2018 NBA regular season.
14
+
15
+ 2. `player_stats_2018.csv` - Contains average per-game stats for every starter in the 2018 NBA season.
16
+
17
+ ## Data Source
18
+
19
+ The data was scraped from the official NBA website and sports reference sites that track NBA stats and results.
20
+
21
+ ## Data Fields
22
+ - `Date`: Date the game was played (Day-of-Week Mnth Day Year)
23
+ - 'Start (ET)': Start of Game (0:00p)
24
+ - 'Away/Neutral': Away Team
25
+ - 'PTS': Away/Neutral Points
26
+ - 'Home/Neutral': Home Team
27
+ - 'PTS': Home/Neutral Points
28
+ - 'Box Score': Box Score Field
29
+ - 'Overtime': Whether there was Overtime
30
+ - 'Attendance': Attendance at the Arena
31
+ - `Arena`: Name of the arena where the game took place
32
+
33
+ `player_stats_2018.csv` fields:
34
+ - `Rk: Rank of the player on the team
35
+ - `Name`: Full name of the player
36
+ - 'Age' : Age of the Player
37
+ - 'G': Games Played
38
+ - 'GS': Games Started
39
+ - 'MP': Minutes Played
40
+ - 'FG': Field Goal Made
41
+ - 'FGA': Field Goal Attempted
42
+ - 'FG%': Field Goal Percentage
43
+ - '3P': Three Point Made
44
+ - '3PA': Three Point Attempted
45
+ - '3P%': Three Point Percentage
46
+ - '2P': Two Point Made
47
+ - '2PA': Two Point Attempted
48
+ - '2P%': Two Point Percentage
49
+ - 'eFG%': Effective Field Goal percentage
50
+ - 'FT': Free Throws Made
51
+ - 'FTA': Free Throw Attempts
52
+ - 'FT%': Free Throw Percentage
53
+ - 'DRB': Defensive rebounds
54
+ - `TRB`: Rebounds
55
+ - `AST`: Assists
56
+ - `STL`: Steals
57
+ - `BLK`: Blocks
58
+ - `TOV`: Turnovers
59
+ - 'PF': Personal Fouls
60
+ - 'PTS/G' : Points per game
61
+ - `team`: Team the player was on
62
+
63
+
64
+ ## Example Usage
65
+
66
+ This dataset can be used for analysis of the 2018 NBA season, such as:
67
+
68
+ - Calculating team and player stats/rankings
69
+ - Predicting game outcomes based on matchups and player performance
70
+ - Analyzing how game results impacted team standings
71
+ - Visualizing player stats and performance over the season
72
+
73
+ ## License
74
+
75
+ The data is provided under an open source MIT license.[1]