-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.py
More file actions
33 lines (30 loc) · 1.29 KB
/
script.py
File metadata and controls
33 lines (30 loc) · 1.29 KB
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
import codecademylib
from matplotlib import pyplot as plt
months = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
visits_per_month = [9695, 7909, 10831, 12942, 12495, 16794, 14161, 12762, 12777, 12439, 10309, 8724]
# numbers of limes of different species sold each month
key_limes_per_month = [92.0, 109.0, 124.0, 70.0, 101.0, 79.0, 106.0, 101.0, 103.0, 90.0, 102.0, 106.0]
persian_limes_per_month = [67.0, 51.0, 57.0, 54.0, 83.0, 90.0, 52.0, 63.0, 51.0, 44.0, 64.0, 78.0]
blood_limes_per_month = [75.0, 75.0, 76.0, 71.0, 74.0, 77.0, 69.0, 80.0, 63.0, 69.0, 73.0, 82.0]
x=range(len(months))
# create your figure here
plt.figure(figsize=(12,8))
ax1=plt.subplot(1,2,1)
plt.title('No of visits per month')
plt.plot(x,visits_per_month, marker ='o')
plt.xlabel('months')
plt.ylabel('visits per month')
ax1.set_xticks(x)
ax1.set_xticklabels(months)
ax2=plt.subplot(1,2,2)
plt.title('Type of lime sold each month')
plt.plot(x,key_limes_per_month, color = 'pink')
plt.plot(x,persian_limes_per_month, color = 'black')
plt.plot(x,blood_limes_per_month, color = 'green')
plt.xlabel('months')
plt.ylabel('lime sold per month')
ax2.set_xticks(x)
ax2.set_xticklabels(months)
plt.legend(["key limes", "persian lime","blood lime"])
plt.show()
plt.savefig("State of lime sales and visits.png")