4 from matplotlib import pyplot as plt
13 with open(filename) as f:
14 reader = csv.reader(f)
15 headers = next(reader)
21 co2.append(int(row[2]))
23 fig = plt.figure(dpi = 128, figsize = (10,6))
24 plt.plot(co2, c = 'red')
25 plt.title('CO₂', fontsize = 24)
26 plt.xlabel('',fontsize = 16)
27 plt.ylabel('ppm', fontsize = 16)
28 plt.tick_params(axis = 'both', which = 'major', labelsize = 16)