-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgoogle_chart_functions.py
More file actions
489 lines (370 loc) · 16 KB
/
google_chart_functions.py
File metadata and controls
489 lines (370 loc) · 16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
#!/usr/bin/python
# -*- coding: utf-8 -*-
#Library of common functions
import json, urllib2, re, time, datetime, sys, cgi, os, string, random, math
import locale
import base64
import hashlib
import sqlite3
from tempfile import TemporaryFile
# Import smtplib for the actual sending function
import smtplib
# Import the email modules we'll need
from email.mime.text import MIMEText
from werkzeug.security import generate_password_hash, \
check_password_hash
#to enable debugging
import cgitb
# cgitb.enable()
# ########################## ##################
# ########################## ##################
#
# Google Chart functions
#
# ########################## ##################
# ########################## ##################
def color_palette():
# define the color palette.
# First 5 colors are shades of blue - starting from dark blue to very light blue.
# second set of 5 colors are shades of orange.
temp = " [\'#094d74\',\'#758cd8\',\'#9cd9d1\',\'#cfdaec\',\'#eef0f6\',\'#f6c7b6\', \'#f3b49f\', \'#ec8f6e\', \'#e6693e\', \'#e0440e\' ] "
return str(temp)
def google_chart_1_column(cht_title,xdata,ydata1):
#this routine will draw a bar chart with two bara
#print '<p>DO NOT PRINT anaything inside chart modules except needed items</p>'
a = '''
<!--Load the AJAX API google chart 1 column -->
<script type=\"text/javascript\" src=\"https://www.google.com/jsapi\"></script>
<script type=\"text/javascript\">
google.load(\'visualization\', \'1.0\', {\'packages\':[\'corechart\']});
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = new google.visualization.arrayToDataTable([
'''
abc1 = str(ydata1[0])
b_y_1 = abc1[:abc1.find('(')]
a += "[ \'Screen Name\', \' " + b_y_1 + "\' ],"
b = ''
for cdi in range(len(xdata)):
if cdi>0:
b += " [ \'" + str(xdata[cdi]) + "\'," + str(ydata1[cdi]) + " ], "
c = " ]); "
c += "var options = {\'title\':\'" + cht_title + "\',"
c += '''
\'width\':800,
\'height\':400,
\'hAxis\' : {\"logScale\" : false},
'''
d = 'colors:' + color_palette() + ','
e = 'legend :\"top\" , \"backgroundColor\": { fill: \"none\" } }; '
f = 'var chart = new google.visualization.ColumnChart(document.getElementById(\"'+cht_title+'DIV'+'\")); '
g = '''
function selectHandler() {
var selectedItem = chart.getSelection()[0];
if (selectedItem) {
var topping = data.getValue(selectedItem.row, 0);
alert(\'The user selected \' + topping);
}
}
google.visualization.events.addListener(chart, \'select\', selectHandler);
chart.draw(data, options);
}
</script>
<!--Div that will hold the chart-->
'''
h = '<div id=\"'+cht_title+'DIV'+'\" style=\"width:600; height:400\"></div> '
return a+b+c+d+e+f+g+h
def google_chart_combo(cht_title,xdata,ydata1,ydata2):
#this routine will draw a bar chart with two bars
#print '<p>DO NOT PRINT anaything inside chart modules except needed items</p>'
a = '''
<!--Load the AJAX API- google chart combo -->
<script type=\"text/javascript\" src=\"https://www.google.com/jsapi\"></script>
<script type=\"text/javascript\">
google.load(\'visualization\', \'1.0\', {\'packages\':[\'corechart\']});
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = new google.visualization.arrayToDataTable([
'''
abc1 = str(ydata1[0])
b_y_1 = abc1[:abc1.find('(')]
abc2 = str(ydata2[0])
b_y_2 = abc2[:abc2.find('(')]
b = " [ \'Screen Name\', \' " + b_y_1 + "\' , \'" + b_y_2 + "\' ], "
c = ''
for cdi in range(len(xdata)):
if cdi>0:
c += " [ \'" + str(xdata[cdi]) + "\'," + str(ydata1[cdi]) + "," + str(ydata2[cdi]) + " ], "
d = ' ]); '
#Set chart options
e = "var options = {\'title\':\'" + cht_title + "\', "
f = '''
\'width\':800,
\'height\':400,
\'hAxis\' : {\"logScale\" : false} ,
seriesType: \"bars\",
series: {1: {type: \"line\"}},
'''
g = 'colors:' + color_palette() + ','
h = 'legend :\"top\" , \"backgroundColor\": { fill: \"none\" } }; '
# chart_bottom():
# Instantiate and draw our chart, passing in some options.
i = 'var chart = new google.visualization.ComboChart(document.getElementById(\"'+cht_title+'DIV'+'\")); '
j = '''
function selectHandler() {
var selectedItem = chart.getSelection()[0];
if (selectedItem) {
var topping = data.getValue(selectedItem.row, 0);
alert(\'The user selected \' + topping);
}
}
google.visualization.events.addListener(chart, \'select\', selectHandler);
chart.draw(data, options);
}
</script>
<!--Div that will hold the chart-->
'''
k = '<div id=\"' + cht_title + 'DIV'+'\" style=\"width:600; height:400\"></div> '
return a+b+c+d+e+f+g+h+i+j+k
def google_chart_3_line(cht_title,xdata,ydata1,ydata2,ydata3):
#this routine will draw a bar chart with two bara
#print '<p>DO NOT PRINT anaything inside chart modules except needed items</p>'
a = '''
<!--Load the AJAX API google chart 3 lines -->
<script type=\"text/javascript\" src=\"https://www.google.com/jsapi\"></script>
<script type=\"text/javascript\">
google.load(\'visualization\', \'1.0\', {\'packages\':[\'corechart\']});
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = new google.visualization.arrayToDataTable([
'''
abc1 = str(ydata1[0])
b_y_1 = abc1[:abc1.find('(')]
abc2 = str(ydata2[0])
b_y_2 = abc2[:abc2.find('(')]
abc3 = str(ydata3[0])
b_y_3 = abc3[:abc3.find('(')]
# b = "[ \'Screen Name\', \'" +str(ydata1[0]) + "\' , \'" +str(ydata2[0])+ "\' , \'"+str(ydata3[0])+ "\' ],"
b = "[ \'Screen Name\', \'" + b_y_1 + "\' , \'" + b_y_2 + "\' , \'"+ b_y_3 + "\' ],"
c = ''
for cdi in range(len(xdata)):
if cdi>0:
c += " [ \'"+str(xdata[cdi])+ "\',"+str(ydata1[cdi])+","+str(ydata2[cdi])+","+str(ydata3[cdi])+" ],"
d = ']); '
#Set chart options
e = "var options = {\'title\':\'" + cht_title + "\', "
e += '''\'width\':800,
\'height\':400,
\'hAxis\' : {\"logScale\" : false} ,
seriesType: \"line\",
'''
f = 'colors:' + color_palette() + ','
g = '''
legend :\"top\" , \"backgroundColor\": { fill: \"none\" } };
'''
h = 'var chart = new google.visualization.LineChart(document.getElementById(\"' + cht_title + 'DIV'+'\")); '
i = '''
function selectHandler() {
var selectedItem = chart.getSelection()[0];
if (selectedItem) {
var topping = data.getValue(selectedItem.row, 0);
alert(\'The user selected \' + topping);
}
}
google.visualization.events.addListener(chart, \'select\', selectHandler);
chart.draw(data, options);
}
</script>
<!--Div that will hold the chart-->
'''
j = '<div id=\"' + cht_title + 'DIV'+'\" style=\"width:600; height:400\"></div> '
return a+b+c+d+e+f+g+h+i+j
def google_chart_3_stacked_cols(cht_title,xdata,ydata1,ydata2,ydata3):
#this routine will draw a bar chart with two bara
#print '<p>DO NOT PRINT anaything inside chart modules except needed items</p>'
a = '''
<!--Load the AJAX API google chart 3 stacked cols -->
<script type=\"text/javascript\" src=\"https://www.google.com/jsapi\"></script>
<script type=\"text/javascript\">
google.load(\'visualization\', \'1.0\', {\'packages\':[\'corechart\']});
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = new google.visualization.arrayToDataTable([
'''
abc1 = str(ydata1[0])
b_y_1 = abc1[:abc1.find('(')]
abc2 = str(ydata2[0])
b_y_2 = abc2[:abc2.find('(')]
abc3 = str(ydata3[0])
b_y_3 = abc3[:abc3.find('(')]
# b = "[ \'Screen Name\', \' "+str(ydata1[0])+ "\' , \'" +str(ydata2[0])+ "\' , \'" +str(ydata3[0])+ "\' ], "
b = "[ \'Screen Name\', \' "+b_y_1+ "\' , \'" +b_y_2+ "\' , \'" +b_y_3+ "\' ], "
c = ''
for cdi in range(len(xdata)):
if cdi>0:
c += "[ \'" +str(xdata[cdi])+ "\',"+str(ydata1[cdi])+","+str(ydata2[cdi])+","+str(ydata3[cdi])+ "],"
d = ' ]); '
#Set chart options
e = "var options = {\'title\':\'"+cht_title+"\', "
f = '''
width:800,
height:400,
hAxis : {\"logScale\" : false} ,
isStacked: true,
'''
g = 'colors:' + color_palette() + ','
h = ' legend :\"top\" , \"backgroundColor\": { fill: \"none\" } }; '
# chart_bottom():
# Instantiate and draw our chart, passing in some options.
i = ' var chart = new google.visualization.ColumnChart(document.getElementById(\"'+cht_title+'DIV'+'\")); '
j = '''
function selectHandler() {
var selectedItem = chart.getSelection()[0];
if (selectedItem) {
var topping = data.getValue(selectedItem.row, 0);
alert(\'The user selected \' + topping);
}
}
google.visualization.events.addListener(chart, \'select\', selectHandler);
chart.draw(data, options);
}
</script>
<!--Div that will hold the chart-->
'''
k = '<div id=\"'+ cht_title + 'DIV'+'\" style=\"width:600; height:400\"></div> '
return a+b+c+d+e+f+g+h+i+j+k
def google_chart_multi_stacked_cols(cht_title,xdata,ydata):
#this routine will draw a bar chart with multiple stacked columns
#print '<p>DO NOT PRINT anaything inside chart modules except needed items</p>'
a = '''
<!--Load the AJAX API google chart multi stacked cols -->
<script type=\"text/javascript\" src=\"https://www.google.com/jsapi\"></script>
<script type=\"text/javascript\">
google.load('visualization', '1', {packages: ['corechart', 'bar']});
google.setOnLoadCallback(drawStacked);
function drawStacked() {
var data = new google.visualization.arrayToDataTable([
'''
b = '["'+str(xdata[0])+'"'
c = ''
for i in range(0,len(ydata)): c += ',"' + str(ydata[i][0])[:str(ydata[i][0]).find('(')] + '" '
d = '],'
e = ''
for i in range(1,len(xdata)):
e += '["' + str(xdata[i]) + '"'
for j in range(0,len(ydata)): e += ',' + str(ydata[j][i]) + ''
e += ']'
if i<len(xdata)-1: e += ","
f = ' ]); '
#Set chart options
g = " var options = {\'title\':\'" + cht_title + "\', "
h = '''
width: 800,
height: 400,
legend: { position: 'top', maxLines: 3 },
bar: { groupWidth: '75%' },
'''
i = 'colors:' + color_palette() + ','
j = '''
isStacked: true,
};
'''
k = ' var chart = new google.visualization.ColumnChart(document.getElementById(\"'+ cht_title + '\"));'
l = '''
chart.draw(data, options);
}
</script>
<!--Div that will hold the chart-->
'''
m = '<div id=\"'+cht_title+'\" style=\"width:800; height:400\"></div> '
return a+b+c+d+e+f+g+h+i+j+k+l+m
#data should be like this for the stacked bar chart
# var data = google.visualization.arrayToDataTable([
# ['Year', 'Sales', 'Expenses', 'Profit'],
# ['2014', 1000, 400, 200],
# ['2015', 1170, 460, 250],
# ['2016', 660, 1120, 300],
# ['2017', 1030, 540, 350]
# ]);
def google_chart_draw_histogram(xdata):
#module to create a google histogram
cht_title = "Net Gain"
a = '''
<!--Load the AJAX API google charts draw histogram -->
<script type=\"text/javascript\" src=\"https://www.google.com/jsapi\"></script>
<script type=\"text/javascript\">
<!-- Load the Visualization API and the piechart package. -->
google.load(\'visualization\', \'1\', {\'packages\':[\'corechart\']});
<!-- Set a callback to run when the Google Visualization API is loaded.-->
google.setOnLoadCallback(drawChart);
<!-- Callback that creates and populates a data table, -->
<!--# instantiates the pie chart, passes in the data and-->
<!--# draws it.-->
function drawChart() {
<!--# Create the data table.-->
var data = new google.visualization.arrayToDataTable([
[ \'Iteration\' , \'Net Gain\' ],
'''
b = ''
for cdi in range(len(xdata)):
itercdi = "Iter"+str(cdi)
b = b + " [ \'" + itercdi + "\' , " + str(xdata[cdi]) + " ], "
c = ' ]); '
#Set chart options
d1a = "var options = {\'title\':\'" + cht_title
d1b = '''\', \'width\':600, \'height\':400,
legend :\'none\' , \'backgroundColor\': { fill: \'none\' }
};
<!--# chart_bottom():-->
<!--# Instantiate and draw our chart, passing in some options.-->
'''
d1 = d1a + d1b
d2 = 'var chart = new google.visualization.Histogram(document.getElementById(\"' + \
cht_title + 'DIV\"));'
d3 = '''
chart.draw(data, options);
}
</script>
<!--Div that will hold the pie chart-->
'''
e = '<div id=\"' + cht_title + 'DIV' +'\" style=\"width:600; height:400\"></div> '
temp = a + b + c + d1 + d2 + d3 + e
return temp
def gc_scatter(cht_title,xdata,ydata,xlabel,ylabel):
#module to create a google histogram
a = '''
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript">
google.charts.load('current', {'packages':['corechart']});
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var data = google.visualization.arrayToDataTable([
'''
b = " [\'" + str(xlabel) + "\',\'" + str(ylabel) + "\'],"
for cdi in range(len(xdata)):
b += " [ " + str(xdata[cdi]) + " , " + str(ydata[cdi]) + " ], "
c = ' ]); '
#Set chart options
d1a = "var options = {\'title\':\'" + str(cht_title) + "\'," + \
" hAxis: {title: \'" + str(xlabel) + "\'}," + \
" vAxis: {title: \'" + str(ylabel) + "\'},"
d1b = '''
\'width\':600, \'height\':400,
\'pointSize\':1, colors:[\'red\',\'#004411\'],
legend :\'none\' , \'backgroundColor\': { fill: \'none\' }
};
<!--# chart_bottom():-->
<!--# Instantiate and draw our chart, passing in some options.-->
'''
d1 = d1a + d1b
d2 = 'var chart = new google.visualization.ScatterChart(document.getElementById(\"' + \
cht_title + 'DIV\"));'
d3 = '''
chart.draw(data, options);
}
</script>
<!--Div that will hold the scatter chart-->
'''
e = '<div id=\"' + cht_title + 'DIV' +'\" style=\"width:600; height:400\"></div> '
temp = a + b + c + d1 + d2 + d3 + e
return temp