In [83]:
from IPython.html.widgets import *
from numpy import *
from matplotlib import pyplot as plt
In [129]:
def GetCategories(filename):
with open(filename, 'r') as f:
categories=f.readlines()
categories = [line.strip() for line in categories]
return categories
In [130]:
CatList = GetCategories('categoreis.csv')
In [133]:
from dataReader import dataReader
data=dataReader('.csv')
print data
years = [str(x) for x in range(1960,2015)]
In [125]:
interact(, Start=years, End=years, Cat=CatList)
In [ ]: