Repository for Petra's work at ampli Jan-Feb 2019

downweather.py 218B

12345678910
  1. from util import gettemp
  2. import pandas as p
  3. tempdata = gettemp('2016-04-01', '2019-01-01', 2006)
  4. print(tempdata.info())
  5. print(tempdata.describe())
  6. print("Pickling")
  7. tempdata.to_pickle("../data/2016-18-weather.pkl")