Crescimento Global de Data Center IP Traffic


In [8]:
import matplotlib.pyplot as plt
import csv

a = []
b = []

with open('data/dc_ip_traffic.csv','r') as csvfile:
    plots = csv.reader(csvfile, delimiter=';')
    for row in plots:
        a.append(float(row[0]))
        b.append(float(row[1]))
        

plt.bar(a,b, label='Demanda')
plt.xlabel('Ano')
plt.ylabel('Zettabytes por ano')

plt.title('Crescimento Global de Data Center\n Traffic IP')
plt.legend()
plt.show()



In [ ]: