This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Group df by country | |
df = df.groupby('Country_Region').agg('sum') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Find Coronavirus URL from John Hopkins on github | |
url = 'https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_daily_reports/05-06-2020.csv' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Import pandas for data analysis | |
import pandas as pd | |
# Load url as pandas dataFrame | |
df = pd.read_csv(url) | |
# Display first 5 rows | |
df.head() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Player | 3NG Career Totals | ||
---|---|---|---|
1 | Stephen Curry | 1192.30 | |
2 | Kyle Korver | 1178.17 | |
3 | Ray Allen | 1010.91 | |
4 | Steve Nash | 861.98 | |
5 | Reggie Miller | 775.75 | |
6 | Klay Thompson | 741.98 | |
7 | J.J. Redick | 640.78 | |
8 | Dale Ellis | 615.90 | |
9 | Mike Miller | 607.86 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Player | 3NG/y | ||
---|---|---|---|
1 | Stephen Curry | 1.94 | |
2 | Klay Thompson | 1.38 | |
3 | Kyle Korver | 1.08 | |
4 | J.J. Redick | 0.91 | |
5 | Hubert Davis | 0.83 | |
6 | Ray Allen | 0.78 | |
7 | Steve Novak | 0.76 | |
8 | Steve Nash | 0.71 | |
9 | Peja Stojakovic | 0.69 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Tm | Year | 3NG | ||
---|---|---|---|---|
1 | GSW | 2016 | 5.74 | |
2 | PHO | 2010 | 3.72 | |
3 | CHH | 1997 | 3.69 | |
4 | GSW | 2015 | 3.53 | |
5 | PHO | 2006 | 3.41 | |
6 | PHO | 2007 | 3.20 | |
7 | GSW | 2018 | 3.12 | |
8 | CLE | 2017 | 2.95 | |
9 | GSW | 2013 | 2.88 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Player | Tm | 3NG | 3P/g | 3P% | ||
---|---|---|---|---|---|---|
1 | Stephen Curry | GSW | 2.03 | 4.16 | 42.3 | |
2 | Klay Thompson | GSW | 1.84 | 3.14 | 44.0 | |
8 | Kevin Durant | GSW | 1.16 | 2.54 | 41.9 | |
47 | Chris Paul | HOU | 0.49 | 2.48 | 38.0 | |
52 | Ryan Anderson | HOU | 0.47 | 1.98 | 38.6 | |
67 | James Harden | HOU | 0.36 | 3.68 | 36.7 | |
77 | Nick Young | GSW | 0.28 | 1.54 | 37.7 | |
78 | Trevor Ariza | HOU | 0.28 | 2.54 | 36.8 | |
97 | P.J. Tucker | HOU | 0.18 | 1.40 | 37.1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Player | Year | 3NG | 3P/g | 3P% | ||
---|---|---|---|---|---|---|
1 | Glen Rice | 1997 | 1.93 | 2.62 | 47.0 | |
2 | Dana Barros | 1995 | 1.69 | 2.40 | 46.4 | |
3 | Dennis Scott | 1996 | 1.63 | 3.26 | 42.5 | |
4 | Tim Legler | 1996 | 1.59 | 1.66 | 52.2 | |
5 | Mitch Richmond | 1996 | 1.57 | 2.78 | 43.7 | |
6 | Reggie Miller | 1997 | 1.44 | 2.83 | 42.7 | |
7 | Steve Kerr | 1996 | 1.39 | 1.49 | 51.5 | |
8 | Hubert Davis | 1996 | 1.32 | 1.72 | 47.6 | |
9 | Mitch Richmond | 1997 | 1.29 | 2.52 | 42.8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Player | Year | 3NG | 3P/g | 3P% | ||
---|---|---|---|---|---|---|
1 | Stephen Curry | 2016 | 3.33 | 5.09 | 45.4 | |
2 | Kyle Korver | 2015 | 2.47 | 2.95 | 49.2 | |
3 | Stephen Curry | 2013 | 2.28 | 3.49 | 45.3 | |
4 | Stephen Curry | 2015 | 2.15 | 3.58 | 44.3 | |
5 | J.J. Redick | 2016 | 2.04 | 2.67 | 47.5 | |
6 | Stephen Curry | 2018 | 2.03 | 4.16 | 42.3 | |
7 | Kyle Korver | 2014 | 1.95 | 2.61 | 47.2 | |
8 | Glen Rice | 1997 | 1.93 | 2.62 | 47.0 | |
9 | Klay Thompson | 2018 | 1.84 | 3.14 | 44.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Player | 3NG | 3P/g | 3P% | ||
---|---|---|---|---|---|
1 | Stephen Curry | 2.03 | 4.16 | 42.3 | |
2 | Klay Thompson | 1.84 | 3.14 | 44.0 | |
3 | Joe Ingles | 1.45 | 2.49 | 44.0 | |
4 | J.J. Redick | 1.29 | 2.76 | 42.0 | |
5 | Kyle Korver | 1.27 | 2.25 | 43.6 | |
6 | Reggie Bullock | 1.24 | 2.02 | 44.5 | |
7 | Buddy Hield | 1.17 | 2.20 | 43.1 | |
8 | Kevin Durant | 1.16 | 2.54 | 41.9 | |
9 | Anthony Tolliver | 1.11 | 2.40 | 43.6 |
NewerOlder