diff scripts/process.py @ 1061:671426ce0f3e

minor
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Wed, 11 Jul 2018 17:31:26 -0400
parents a87b3072bd26
children a2e20aba0740
line wrap: on
line diff
--- a/scripts/process.py	Wed Jul 11 15:29:44 2018 -0400
+++ b/scripts/process.py	Wed Jul 11 17:31:26 2018 -0400
@@ -280,7 +280,7 @@
     data = pd.read_csv(args.eventFilename, parse_dates = [2])
     #data = pd.read_csv('./speeds.csv', converters = {'time': lambda s: datetime.datetime.strptime(s, "%H:%M:%S").time()}, nrows = 5000)
     # create time for end of each 15 min, then group by, using the agg method for each data column
-    headers = ['sites', 'date', 'intervalend15', 'duration', 'count']
+    headers = ['site', 'date', 'intervalend15', 'duration', 'count']
     aggFunctions, tmpheaders = utils.aggregationMethods(args.aggMethods, args.aggCentiles)
     dataColumns = list(data.columns[4:])
     for h in dataColumns: