-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcovid.py
138 lines (123 loc) · 3.42 KB
/
covid.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
"""
get and plot covid data for us states
"""
import requests
import matplotlib.pyplot as plt
from datetime import datetime
import sys
us_states = {
'AK': 'Alaska',
'AL': 'Alabama',
'AR': 'Arkansas',
'AS': 'American Samoa',
'AZ': 'Arizona',
'CA': 'California',
'CO': 'Colorado',
'CT': 'Connecticut',
'DC': 'District of Columbia',
'DE': 'Delaware',
'FL': 'Florida',
'GA': 'Georgia',
'GU': 'Guam',
'HI': 'Hawaii',
'IA': 'Iowa',
'ID': 'Idaho',
'IL': 'Illinois',
'IN': 'Indiana',
'KS': 'Kansas',
'KY': 'Kentucky',
'LA': 'Louisiana',
'MA': 'Massachusetts',
'MD': 'Maryland',
'ME': 'Maine',
'MI': 'Michigan',
'MN': 'Minnesota',
'MO': 'Missouri',
'MP': 'Northern Mariana Islands',
'MS': 'Mississippi',
'MT': 'Montana',
'NA': 'National',
'NC': 'North Carolina',
'ND': 'North Dakota',
'NE': 'Nebraska',
'NH': 'New Hampshire',
'NJ': 'New Jersey',
'NM': 'New Mexico',
'NV': 'Nevada',
'NY': 'New York',
'OH': 'Ohio',
'OK': 'Oklahoma',
'OR': 'Oregon',
'PA': 'Pennsylvania',
'PR': 'Puerto Rico',
'RI': 'Rhode Island',
'SC': 'South Carolina',
'SD': 'South Dakota',
'TN': 'Tennessee',
'TX': 'Texas',
'UT': 'Utah',
'VA': 'Virginia',
'VI': 'Virgin Islands',
'VT': 'Vermont',
'WA': 'Washington',
'WI': 'Wisconsin',
'WV': 'West Virginia',
'WY': 'Wyoming'
}
def get_data(state):
"""
get data for a given state
"""
url = "https://api.covidtracking.com/v1/states/{}/daily.json".format(state)
r = requests.get(url)
data = r.json()
if not data:
print("no data for {}".format(us_states[state.upper()]))
sys.exit(1)
state_name = us_states[state.upper()]
return data, state_name
def plot_data(data, state_name=None):
"""
plot data for a given state
"""
dates, cases, deaths = [], [], []
recovered, negative = [], []
for d in data:
dates.append(datetime.strptime(str(d['date']), "%Y%m%d"))
# check if data is null and replace with 0
cases.append(d['positive'] if d['positive'] else 0)
deaths.append(d['death'] if d['death'] else 0)
recovered.append(d['recovered'] if d['recovered'] else 0)
negative.append(d['negative'] if d['negative'] else 0)
plt.subplot(2, 1, 1)
# pie chart
labels = ["cases", "deaths", "recovered", "negative"]
sizes = [sum(cases), sum(deaths), sum(recovered), sum(negative)]
colors = ['gold', 'yellowgreen', 'lightcoral', 'lightskyblue']
explode = (0.1, 0.1, 0.1, 0.1)
plt.pie(sizes, explode=explode, labels=labels, colors=colors,
autopct='%1.1f%%', shadow=True, startangle=140)
plt.axis('equal')
plt.title("{} covid data".format(state_name))
plt.legend()
plt.subplot(2, 1, 2)
# line chart for all data(cases, deaths, recovered, negative)
plt.plot(dates, cases, label="cases")
plt.plot(dates, deaths, label="deaths")
plt.plot(dates, recovered, label="recovered")
plt.plot(dates, negative, label="negative")
plt.legend()
plt.title("{} covid data".format(state_name))
plt.show()
def main():
"""
main function
"""
if len(sys.argv) != 2:
print("usage: covid.py <state>")
sys.exit(1)
state = sys.argv[1]
data, state_name = get_data(state)
plot_data(data, us_states[state_name])
if __name__ == "__main__":
main()