forked from heroku/node-js-sample
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSQ_feature_ranking.html
1809 lines (1687 loc) · 54.3 KB
/
SQ_feature_ranking.html
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
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>MathSight: StatSEO Onsite Drilldown</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://d396qusza40orc.cloudfront.net/startup%2Fcode%2Fbootstrap-combined.no-icons.min.css">
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/font-awesome/3.0.2/css/font-awesome.css">
<link rel="stylesheet" href="https://d396qusza40orc.cloudfront.net/startup%2Fcode%2Fsocial-buttons.css">
<script src="https://d396qusza40orc.cloudfront.net/startup%2Fcode%2Fjquery.js"></script>
<script src="https://d396qusza40orc.cloudfront.net/startup%2Fcode%2Fbootstrap.js"></script>
<!-- for datatables' styling -->
<link href="http://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700,300italic,400italic,500italic,700italic" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,300,400,600,700,800" rel="stylesheet" type="text/css">
<script src="datatables/media/js/jquery.js"></script>
<!-- for datatables -->
<script src="datatables/media/js/jquery.dataTables.js"></script>
<!-- for datatables' styling etc -->
<script type="text/javascript" charset="utf-8" src="datatables/media/js/ZeroClipboard.js"></script>
<script type="text/javascript" charset="utf-8" src="datatables/media/js/TableTools.js"></script>
<script type="text/javascript" charset="utf-8" src="http://datatables.github.com/Plugins/integration/bootstrap/2/dataTables.bootstrap.js"></script>
<script type="text/javascript" charset="utf-8">
var aDataSet = [
['number of images in body', 1,2.012592065,6.706571243,0],
['proximity of title tag words to external bound hyperlinks', 2,2458.276471,4308.302537,432.4648889],
['number of scripts', 3,12.68773264,10.4567339,9.995333333],
['number of hyperlinks', 4,77.37031757,90.67534157,92.394],
['length of page title', 5,54.07246377,57.05920625,59.06222222],
['number of external css styles', 6,4.994773105,2.756018217,1.060222222],
['number of titles same as h1', 7,0.003880573375,0.03903708523,0],
['title total number of syllables', 8,4.172012354,8.898503578,0],
['anchor number of unique words', 9,24.91486497,48.13142485,0],
['total number of dictionary words', 10,0.8888096935,1.597918022,0.1082222222],
['number of id attribute refs', 11,0.258493704,0.2420299284,0],
['anchor total number of syllables', 12,93.73588342,199.6408588,0],
['number of unique words', 13,189.2978538,268.1385817,285.4093333],
['number of duplicate words', 14,220.5588026,364.647365,293.9573333],
['number of external links', 15,26.37934585,38.35133377,75.15688889],
['total number of 5k common words', 16,282.6245347,436.1281718,350.1273333],
['number of external javascripts', 17,4.759325255,6.696811971,9.088444444],
['anchor number of duplicate words', 18,11.12972202,24.41249187,0],
['ratio of common words to total', 19,0.6620895784,0.6315843185,0.5409020188],
['number of inline css styles', 20,1.213273145,0.2134027326,0.003555555556],
['number of words per sentence', 21,23.36184703,32.10500425,32.44584629],
['number of rare words', 22,102.6532035,157.4274561,160.1406667],
['maximum length of h1', 23,2.774689158,10.78919974,0],
['title total number of rare words', 24,0.7258256118,1.959011061,0],
['ratio of dictionary words to total', 25,0.001444481739,0.002505717352,0.0001488978971],
['average length of h1', 26,2.163300863,6.878334418,0],
['number of text characters in html', 27,440.5469233,744.0865322,0],
['number of sentences', 28,17.10628019,25.27716331,20.78844444],
['metadesc total number of syllables', 29,1.130118001,5.872478855,0],
['number of relative internal links', 30,0.3667537816,0.2849707222,0],
['total number of words', 31,431.7918746,672.6655823,635.7171111],
['number of h2 instances', 32,0.1649639661,0.4716981132,0],
['number of images', 33,10.69771125,17.1008458,17.94977778],
['metadesc total number of words', 34,0.7727092738,4.037085231,0],
['flesch reading ease', 35,50.0034841,41.20950601,29.87896301],
['number of root relative internal links', 36,0.001821493625,0.01626545218,0],
['number of class attribute refs', 37,1.70650194,2.303838647,0.06111111111],
['flesch grade level', 38,11.94681907,15.27153796,16.8517199],
['average length of h3', 39,2.684168845,4.494469746,0],
['average length of anchor text', 40,4.743248594,8.625243982,0],
['number of embedded javascripts', 41,2.068503999,0.7195836044,0.01311111111],
['number of inline scripts', 42,2.398431932,3,0.9553333333],
['body total number of rare words', 43,12.4400887,16.91802212,0],
['maximum length of anchor text', 44,19.62097094,26.94469746,0],
['dale chall readability', 45,7.931989721,8.729022436,10.45028249],
['average number of words in anchor text', 46,0.7634434149,1.450227716,0],
['metadesc number of dictionary words', 47,0.003088619625,0.0201691607,0],
['metadesc number of duplicate words', 48,0.07301813574,0.6011711126,0],
['number chars per meta word', 49,1.421740416,0.7714864976,0],
['number of h3 instances', 50,0.5326680922,1.14964216,0],
['total number of 3k common words', 51,230.9599271,361.6258946,276.2313333],
['number of split sentences', 52,32.1643304,46.26480156,39.518],
['maximum length of h3', 53,3.447057892,5.199739753,0],
['number of embedded css styles', 54,1.52276867,1.217306441,2.866],
['average image width', 55,76.75196009,108.3988289,212.7451111],
['number of internal links', 56,9.291755761,8.22121015,0.1051111111],
['number of meta keywords', 57,0.3688920567,0.4886141835,0],
['number of images missing alt', 58,9.950740477,16.19648666,16.95044444],
['h3 total number of rare words', 59,0.3394313772,0.8874430709,0],
['metadesc total number of rare words', 60,0.2830442702,0.8939492518,0],
['number of h1 instances', 61,0.1060426071,0.4183474301,0],
['metadesc number of unique dictionary words', 62,0.00237586125,0.01886792453,0],
['number of iframes', 63,0.233784747,0.08392973325,0],
['number of dhtml scripts', 64,0.2264987725,0.1424853611,0.02],
['title total number of words', 65,2.138591906,4.328562134,0],
['number of destination titles same as anchor text', 66,0.3219291993,1.385816526,0],
['h2 total number of rare words', 67,0.198938782,0.6102797658,0],
['meta description character length', 68,52.80779282,86.23682498,136.3191111],
['average image caption length', 69,39.53274729,50.68575146,65.6],
['title number of unique dictionary words', 70,0.007285974499,0.01496421601,0],
['number of hyperlinks with html', 71,4.756711808,2.659076122,0.001333333333],
['number of embedded styles', 72,1.523164647,1.217306441,2.866],
['meta keywords character length', 73,5.43509939,6.344827586,0],
['anchor total number of rare words', 74,19.26403738,46.04814574,0],
['number of words in meta description', 75,6.413954225,11.17957059,16.43511111],
['h1 total number of rare words', 76,0.1670230459,0.80611581,0],
['number of hyperlinks with file', 77,5.289142314,3.277163305,0],
['ratio of rare words to total', 78,0.207128743,0.232380167,0.2536019355],
['maximum length of h2', 79,1.618991051,6.262849707,0],
['percent auto image width and height', 80,0.01377999525,0.02992843201,0.007333333333],
['anchor number of dictionary words', 81,0.06684089649,0.2452830189,0],
['total number of syllables', 82,700.8576067,1057.804164,1070.771111],
['average image height', 83,38.05852538,58.79830839,96.326],
['number of absolute internal links', 84,33.66714184,50.35133377,86.34733333],
['metakey total number of rare words', 85,0.2657796785,0.3916720885,0],
['html5 detected', 86,0.4022333096,0.3103448276,0],
['title number of dictionary words', 87,0.007761146749,0.01496421601,0],
['anchor number of unique dictionary words', 88,0.06351469074,0.2381262199,0],
['number of pdf links', 89,0.00300942425,0.003903708523,0],
['number of unique dictionary words', 90,0.786489269,1.342875732,1.042],
['average length of h2', 91,1.244634513,4.960312297,0],
['title number of unique words', 92,1.962778174,3.977228367,0],
['number of unique 5k common words', 93,120.8099311,163.5367599,155.9848889],
['max number of words in anchor text', 94,3.167894195,4.195836044,0],
['number of flash links', 95,0,0,0],
['number of figures', 96,0,0,0],
['number of captions', 97,0,0,0],
['maximum caption length', 98,0,0,0],
['average caption length', 99,0,0,0],
['title number of duplicate words', 100,0.1758137325,0.3513337671,0],
['metadesc number of unique words', 101,0.699691138,3.435914118,0],
['anchor total number of words', 102,36.044587,72.54391672,0],
['number of difficult words', 103,200.8319474,311.0396877,359.4857778]
];
function OpenInNewTab(url )
{
var win=window.open(url, '_blank');
win.focus();
}
/* Global vars */
var locate = decodeURI(window.location);
// var websiteURL = "www.stealthgenie.com";
var urlSplit = locate.split("=");
var websiteNameFull = urlSplit[1];
var featureName = urlSplit[2];
var featureNameJSON = featureName.replace(/ /g, "_");
var urlSplitTwo = websiteNameFull.split("&");
var websiteName = urlSplitTwo[0];
// var feature_list= {1:"average_backlink_flesch_reading_ease",
// 2:"number_of_inline_css_styles",
// 3:"average_backlink_flesch_kincaid_grade",
// 4:"number_of_images_missing_alt",
// 5:"number_of_h1_instances",
// 6:"number_of_images",
// 7:"total_number_of_words",
// 8:"total_number_of_dictionary_words",
// 9:"number_of_hyperlinks_with_html",
// 10:"number_of_unique_words",
// 11:"ratio_of_dictionary_words_to_total",
// 12:"number_of_destination_titles_same_as_anchor_text",
// 13:"maximum_length_of_h1",
// 14:"average_length_of_h1",
// 15:"average_backlink_dale_chall_readability",
// 16:"number_of_duplicate_words",
// 17:"number_of_hyperlinks_with_file",
// 18:"number_of_rare_words",
// 19:"total_number_of_5k_common_words",
// 20:"number_of_titles_same_as_h1",
// 21:"number_of_iframes",
// 22:"html5_detected"
// };
function initDataTables(){
$('#dynamicA').html( '<table cellpadding="0" cellspacing="0" border="0" class="table table-striped table-bordered" id="example"></table>' );
$('#example').dataTable( {
"aaData": aDataSet,
"aoColumns": [
{ "sTitle": "Highlighted Feature" },
{ "sTitle": "Influence Rank" , "sClass": "center"},
{ "sTitle": "Losing Mean" , "sClass": "center"},
{ "sTitle": "Winning Mean" , "sClass": "center"},
{ "sTitle": "Mean Value (this domain)", "sClass": "center" },
],
"aaSorting": [[ 1, "asc" ]]
} );
$('#example1').dataTable( {
"bProcessing": true,
"sAjaxSource": "/json/drilldown/"+websiteName+"_XDrill.json",
"sAjaxDataProp": "onsite."+ featureNameJSON,
"sDom": "<'row-fluid'<'span6'T><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
"oTableTools": {
"aButtons": [
"copy",
"print",
{
"sExtends": "collection",
"sButtonText": 'Save <span class="caret" />',
"aButtons": [ "csv", "xls", "pdf" ]
}
]
},
"aoColumns": [
{ "mData": "html_id",
"mRender" : function ( data, type, full) {
return '<div onclick="OpenInNewTab(\''+ data +'\');">'+data+'</div>';
}
},
{ "mData": "feature_value" },
{ "mData": "cluster_win_mean" },
{ "mData": "delta" }
],
"aaSorting": [[ 3, "desc" ]],
} );
// $('#example2').dataTable( {
// "bProcessing": true,
// "sAjaxSource": "/json/drilldown/"+websiteName+"_XDrill.json",
// "sAjaxDataProp": "onsite."+ feature_list[2],
// "sDom": "<'row-fluid'<'span6'T><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
// "oTableTools": {
// "aButtons": [
// "copy",
// "print",
// {
// "sExtends": "collection",
// "sButtonText": 'Save <span class="caret" />',
// "aButtons": [ "csv", "xls", "pdf" ]
// }
// ]
// },
// "aoColumns": [
// { "mData": "html_id",
// "mRender" : function ( data, type, full) {
// return '<div onclick="OpenInNewTab(\''+ data +'\');">'+data+'</div>';
// }
// },
// { "mData": "feature_value" },
// { "mData": "cluster_win_mean" },
// { "mData": "delta" }
// ],
// "aaSorting": [[ 3, "desc" ]]
// } );
//
// $('#example3').dataTable( {
// "bProcessing": true,
// "sAjaxSource": "/json/drilldown/"+websiteName+"_XDrill.json",
// "sAjaxDataProp": "onsite."+ feature_list[3],
// "sDom": "<'row-fluid'<'span6'T><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
// "oTableTools": {
// "aButtons": [
// "copy",
// "print",
// {
// "sExtends": "collection",
// "sButtonText": 'Save <span class="caret" />',
// "aButtons": [ "csv", "xls", "pdf" ]
// }
// ]
// },
// "aoColumns": [
// { "mData": "html_id",
// "mRender" : function ( data, type, full) {
// return '<div onclick="OpenInNewTab(\''+ data +'\');">'+data+'</div>';
// }
// },
// { "mData": "feature_value" },
// { "mData": "cluster_win_mean" },
// { "mData": "delta" }
// ],
// "aaSorting": [[ 3, "desc" ]]
// } );
//
// $('#example4').dataTable( {
// "bProcessing": true,
// "sAjaxSource": "/json/drilldown/"+websiteName+"_XDrill.json",
// "sAjaxDataProp": "onsite."+ feature_list[4],
// "sDom": "<'row-fluid'<'span6'T><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
// "oTableTools": {
// "aButtons": [
// "copy",
// "print",
// {
// "sExtends": "collection",
// "sButtonText": 'Save <span class="caret" />',
// "aButtons": [ "csv", "xls", "pdf" ]
// }
// ]
// },
// "aoColumns": [
// { "mData": "html_id",
// "mRender" : function ( data, type, full) {
// return '<div onclick="OpenInNewTab(\''+ data +'\');">'+data+'</div>';
// }
// },
// { "mData": "feature_value" },
// { "mData": "cluster_win_mean" },
// { "mData": "delta" }
// ],
// "aaSorting": [[ 3, "desc" ]]
// } );
//
// $('#example5').dataTable( {
// "bProcessing": true,
// "sAjaxSource": "/json/drilldown/"+websiteName+"_XDrill.json",
// "sAjaxDataProp": "onsite."+ feature_list[5],
// "sDom": "<'row-fluid'<'span6'T><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
// "oTableTools": {
// "aButtons": [
// "copy",
// "print",
// {
// "sExtends": "collection",
// "sButtonText": 'Save <span class="caret" />',
// "aButtons": [ "csv", "xls", "pdf" ]
// }
// ]
// },
// "aoColumns": [
// { "mData": "html_id",
// "mRender" : function ( data, type, full) {
// return '<div onclick="OpenInNewTab(\''+ data +'\');">'+data+'</div>';
// }
// },
// { "mData": "feature_value" },
// { "mData": "cluster_win_mean" },
// { "mData": "delta" }
// ],
// "aaSorting": [[ 3, "desc" ]]
// } );
//
// $('#example6').dataTable( {
// "bProcessing": true,
// "sAjaxSource": "/json/drilldown/"+websiteName+"_XDrill.json",
// "sAjaxDataProp": "onsite."+ feature_list[6],
// "sDom": "<'row-fluid'<'span6'T><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
// "oTableTools": {
// "aButtons": [
// "copy",
// "print",
// {
// "sExtends": "collection",
// "sButtonText": 'Save <span class="caret" />',
// "aButtons": [ "csv", "xls", "pdf" ]
// }
// ]
// },
// "aoColumns": [
// { "mData": "html_id",
// "mRender" : function ( data, type, full) {
// return '<div onclick="OpenInNewTab(\''+ data +'\');">'+data+'</div>';
// }
// },
// { "mData": "feature_value" },
// { "mData": "cluster_win_mean" },
// { "mData": "delta" }
// ],
// "aaSorting": [[ 3, "desc" ]]
// } );
//
// $('#example7').dataTable( {
// "bProcessing": true,
// "sAjaxSource": "/json/drilldown/"+websiteName+"_XDrill.json",
// "sAjaxDataProp": "onsite."+ feature_list[7],
// "sDom": "<'row-fluid'<'span6'T><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
// "oTableTools": {
// "aButtons": [
// "copy",
// "print",
// {
// "sExtends": "collection",
// "sButtonText": 'Save <span class="caret" />',
// "aButtons": [ "csv", "xls", "pdf" ]
// }
// ]
// },
// "aoColumns": [
// { "mData": "html_id",
// "mRender" : function ( data, type, full) {
// return '<div onclick="OpenInNewTab(\''+ data +'\');">'+data+'</div>';
// }
// },
// { "mData": "feature_value" },
// { "mData": "cluster_win_mean" },
// { "mData": "delta" }
// ],
// "aaSorting": [[ 3, "desc" ]]
// } );
//
// $('#example8').dataTable( {
// "bProcessing": true,
// "sAjaxSource": "/json/drilldown/"+websiteName+"_XDrill.json",
// "sAjaxDataProp": "onsite."+ feature_list[8],
// "sDom": "<'row-fluid'<'span6'T><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
// "oTableTools": {
// "aButtons": [
// "copy",
// "print",
// {
// "sExtends": "collection",
// "sButtonText": 'Save <span class="caret" />',
// "aButtons": [ "csv", "xls", "pdf" ]
// }
// ]
// },
// "aoColumns": [
// { "mData": "html_id",
// "mRender" : function ( data, type, full) {
// return '<div onclick="OpenInNewTab(\''+ data +'\');">'+data+'</div>';
// }
// },
// { "mData": "feature_value" },
// { "mData": "cluster_win_mean" },
// { "mData": "delta" }
// ],
// "aaSorting": [[ 3, "desc" ]]
// } );
//
// $('#example9').dataTable( {
// "bProcessing": true,
// "sAjaxSource": "/json/drilldown/"+websiteName+"_XDrill.json",
// "sAjaxDataProp": "onsite."+ feature_list[9],
// "sDom": "<'row-fluid'<'span6'T><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
// "oTableTools": {
// "aButtons": [
// "copy",
// "print",
// {
// "sExtends": "collection",
// "sButtonText": 'Save <span class="caret" />',
// "aButtons": [ "csv", "xls", "pdf" ]
// }
// ]
// },
// "aoColumns": [
// { "mData": "html_id",
// "mRender" : function ( data, type, full) {
// return '<div onclick="OpenInNewTab(\''+ data +'\');">'+data+'</div>';
// }
// },
// { "mData": "feature_value" },
// { "mData": "cluster_win_mean" },
// { "mData": "delta" }
// ],
// "aaSorting": [[ 3, "desc" ]]
// } );
//
// $('#example10').dataTable( {
// "bProcessing": true,
// "sAjaxSource": "/json/drilldown/"+websiteName+"_XDrill.json",
// "sAjaxDataProp": "onsite."+ feature_list[10],
// "sDom": "<'row-fluid'<'span6'T><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
// "oTableTools": {
// "aButtons": [
// "copy",
// "print",
// {
// "sExtends": "collection",
// "sButtonText": 'Save <span class="caret" />',
// "aButtons": [ "csv", "xls", "pdf" ]
// }
// ]
// },
// "aoColumns": [
// { "mData": "html_id",
// "mRender" : function ( data, type, full) {
// return '<div onclick="OpenInNewTab(\''+ data +'\');">'+data+'</div>';
// }
// },
// { "mData": "feature_value" },
// { "mData": "cluster_win_mean" },
// { "mData": "delta" }
// ],
// "aaSorting": [[ 3, "desc" ]]
// } );
//
// $('#example11').dataTable( {
// "bProcessing": true,
// "sAjaxSource": "/json/drilldown/"+websiteName+"_XDrill.json",
// "sAjaxDataProp": "onsite."+ feature_list[11],
// "sDom": "<'row-fluid'<'span6'T><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
// "oTableTools": {
// "aButtons": [
// "copy",
// "print",
// {
// "sExtends": "collection",
// "sButtonText": 'Save <span class="caret" />',
// "aButtons": [ "csv", "xls", "pdf" ]
// }
// ]
// },
// "aoColumns": [
// { "mData": "html_id",
// "mRender" : function ( data, type, full) {
// return '<div onclick="OpenInNewTab(\''+ data +'\');">'+data+'</div>';
// }
// },
// { "mData": "feature_value" },
// { "mData": "cluster_win_mean" },
// { "mData": "delta" }
// ],
// "aaSorting": [[ 3, "desc" ]]
// } );
//
// $('#example12').dataTable( {
// "bProcessing": true,
// "sAjaxSource": "/json/drilldown/"+websiteName+"_XDrill.json",
// "sAjaxDataProp": "onsite."+ feature_list[12],
// "sDom": "<'row-fluid'<'span6'T><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
// "oTableTools": {
// "aButtons": [
// "copy",
// "print",
// {
// "sExtends": "collection",
// "sButtonText": 'Save <span class="caret" />',
// "aButtons": [ "csv", "xls", "pdf" ]
// }
// ]
// },
// "aoColumns": [
// { "mData": "html_id",
// "mRender" : function ( data, type, full) {
// return '<div onclick="OpenInNewTab(\''+ data +'\');">'+data+'</div>';
// }
// },
// { "mData": "feature_value" },
// { "mData": "cluster_win_mean" },
// { "mData": "delta" }
// ],
// "aaSorting": [[ 3, "desc" ]]
// } );
//
// $('#example13').dataTable( {
// "bProcessing": true,
// "sAjaxSource": "/json/drilldown/"+websiteName+"_XDrill.json",
// "sAjaxDataProp": "onsite."+ feature_list[13],
// "sDom": "<'row-fluid'<'span6'T><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
// "oTableTools": {
// "aButtons": [
// "copy",
// "print",
// {
// "sExtends": "collection",
// "sButtonText": 'Save <span class="caret" />',
// "aButtons": [ "csv", "xls", "pdf" ]
// }
// ]
// },
// "aoColumns": [
// { "mData": "html_id",
// "mRender" : function ( data, type, full) {
// return '<div onclick="OpenInNewTab(\''+ data +'\');">'+data+'</div>';
// }
// },
// { "mData": "feature_value" },
// { "mData": "cluster_win_mean" },
// { "mData": "delta" }
// ],
// "aaSorting": [[ 3, "desc" ]]
// } );
//
// $('#example14').dataTable( {
// "bProcessing": true,
// "sAjaxSource": "/json/drilldown/"+websiteName+"_XDrill.json",
// "sAjaxDataProp": "onsite."+ feature_list[14],
// "sDom": "<'row-fluid'<'span6'T><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
// "oTableTools": {
// "aButtons": [
// "copy",
// "print",
// {
// "sExtends": "collection",
// "sButtonText": 'Save <span class="caret" />',
// "aButtons": [ "csv", "xls", "pdf" ]
// }
// ]
// },
// "aoColumns": [
// { "mData": "html_id",
// "mRender" : function ( data, type, full) {
// return '<div onclick="OpenInNewTab(\''+ data +'\');">'+data+'</div>';
// }
// },
// { "mData": "feature_value" },
// { "mData": "cluster_win_mean" },
// { "mData": "delta" }
// ],
// "aaSorting": [[ 3, "desc" ]]
// } );
//
// $('#example15').dataTable( {
// "bProcessing": true,
// "sAjaxSource": "/json/drilldown/"+websiteName+"_XDrill.json",
// "sAjaxDataProp": "onsite."+ feature_list[15],
// "sDom": "<'row-fluid'<'span6'T><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
// "oTableTools": {
// "aButtons": [
// "copy",
// "print",
// {
// "sExtends": "collection",
// "sButtonText": 'Save <span class="caret" />',
// "aButtons": [ "csv", "xls", "pdf" ]
// }
// ]
// },
// "aoColumns": [
// { "mData": "html_id",
// "mRender" : function ( data, type, full) {
// return '<div onclick="OpenInNewTab(\''+ data +'\');">'+data+'</div>';
// }
// },
// { "mData": "feature_value" },
// { "mData": "cluster_win_mean" },
// { "mData": "delta" }
// ],
// "aaSorting": [[ 3, "desc" ]]
// } );
//
// $('#example16').dataTable( {
// "bProcessing": true,
// "sAjaxSource": "/json/drilldown/"+websiteName+"_XDrill.json",
// "sAjaxDataProp": "onsite."+ feature_list[16],
// "sDom": "<'row-fluid'<'span6'T><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
// "oTableTools": {
// "aButtons": [
// "copy",
// "print",
// {
// "sExtends": "collection",
// "sButtonText": 'Save <span class="caret" />',
// "aButtons": [ "csv", "xls", "pdf" ]
// }
// ]
// },
// "aoColumns": [
// { "mData": "html_id",
// "mRender" : function ( data, type, full) {
// return '<div onclick="OpenInNewTab(\''+ data +'\');">'+data+'</div>';
// }
// },
// { "mData": "feature_value" },
// { "mData": "cluster_win_mean" },
// { "mData": "delta" }
// ],
// "aaSorting": [[ 3, "desc" ]]
// } );
//
// $('#example17').dataTable( {
// "bProcessing": true,
// "sAjaxSource": "/json/drilldown/"+websiteName+"_XDrill.json",
// "sAjaxDataProp": "onsite."+ feature_list[17],
// "sDom": "<'row-fluid'<'span6'T><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
// "oTableTools": {
// "aButtons": [
// "copy",
// "print",
// {
// "sExtends": "collection",
// "sButtonText": 'Save <span class="caret" />',
// "aButtons": [ "csv", "xls", "pdf" ]
// }
// ]
// },
// "aoColumns": [
// { "mData": "html_id",
// "mRender" : function ( data, type, full) {
// return '<div onclick="OpenInNewTab(\''+ data +'\');">'+data+'</div>';
// }
// },
// { "mData": "feature_value" },
// { "mData": "cluster_win_mean" },
// { "mData": "delta" }
// ],
// "aaSorting": [[ 3, "desc" ]]
// } );
//
// $('#example18').dataTable( {
// "bProcessing": true,
// "sAjaxSource": "/json/drilldown/"+websiteName+"_XDrill.json",
// "sAjaxDataProp": "onsite."+ feature_list[18],
// "sDom": "<'row-fluid'<'span6'T><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
// "oTableTools": {
// "aButtons": [
// "copy",
// "print",
// {
// "sExtends": "collection",
// "sButtonText": 'Save <span class="caret" />',
// "aButtons": [ "csv", "xls", "pdf" ]
// }
// ]
// },
// "aoColumns": [
// { "mData": "html_id",
// "mRender" : function ( data, type, full) {
// return '<div onclick="OpenInNewTab(\''+ data +'\');">'+data+'</div>';
// }
// },
// { "mData": "feature_value" },
// { "mData": "cluster_win_mean" },
// { "mData": "delta" }
// ],
// "aaSorting": [[ 3, "desc" ]]
// } );
//
// $('#example19').dataTable( {
// "bProcessing": true,
// "sAjaxSource": "/json/drilldown/"+websiteName+"_XDrill.json",
// "sAjaxDataProp": "onsite."+ feature_list[19],
// "sDom": "<'row-fluid'<'span6'T><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
// "oTableTools": {
// "aButtons": [
// "copy",
// "print",
// {
// "sExtends": "collection",
// "sButtonText": 'Save <span class="caret" />',
// "aButtons": [ "csv", "xls", "pdf" ]
// }
// ]
// },
// "aoColumns": [
// { "mData": "html_id",
// "mRender" : function ( data, type, full) {
// return '<div onclick="OpenInNewTab(\''+ data +'\');">'+data+'</div>';
// }
// },
// { "mData": "feature_value" },
// { "mData": "cluster_win_mean" },
// { "mData": "delta" }
// ],
// "aaSorting": [[ 3, "desc" ]]
// } );
//
// $('#example20').dataTable( {
// "bProcessing": true,
// "sAjaxSource": "/json/drilldown/"+websiteName+"_XDrill.json",
// "sAjaxDataProp": "onsite."+ feature_list[20],
// "sDom": "<'row-fluid'<'span6'T><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
// "oTableTools": {
// "aButtons": [
// "copy",
// "print",
// {
// "sExtends": "collection",
// "sButtonText": 'Save <span class="caret" />',
// "aButtons": [ "csv", "xls", "pdf" ]
// }
// ]
// },
// "aoColumns": [
// { "mData": "html_id",
// "mRender" : function ( data, type, full) {
// return '<div onclick="OpenInNewTab(\''+ data +'\');">'+data+'</div>';
// }
// },
// { "mData": "feature_value" },
// { "mData": "cluster_win_mean" },
// { "mData": "delta" }
// ],
// "aaSorting": [[ 3, "desc" ]]
// } );
//
// $('#example21').dataTable( {
// "bProcessing": true,
// "sAjaxSource": "/json/drilldown/"+websiteName+"_XDrill.json",
// "sAjaxDataProp": "onsite."+ feature_list[21],
// "sDom": "<'row-fluid'<'span6'T><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
// "oTableTools": {
// "aButtons": [
// "copy",
// "print",
// {
// "sExtends": "collection",
// "sButtonText": 'Save <span class="caret" />',
// "aButtons": [ "csv", "xls", "pdf" ]
// }
// ]
// },
// "aoColumns": [
// { "mData": "html_id",
// "mRender" : function ( data, type, full) {
// return '<div onclick="OpenInNewTab(\''+ data +'\');">'+data+'</div>';
// }
// },
// { "mData": "feature_value" },
// { "mData": "cluster_win_mean" },
// { "mData": "delta" }
// ],
// "aaSorting": [[ 3, "desc" ]]
// } );
//
// $('#example22').dataTable( {
// "bProcessing": true,
// "sAjaxSource": "/json/drilldown/"+websiteName+"_XDrill.json",
// "sAjaxDataProp": "onsite."+ feature_list[22],
// "sDom": "<'row-fluid'<'span6'T><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>",
// "oTableTools": {
// "aButtons": [
// "copy",
// "print",
// {
// "sExtends": "collection",
// "sButtonText": 'Save <span class="caret" />',
// "aButtons": [ "csv", "xls", "pdf" ]
// }
// ]
// },
// "aoColumns": [
// { "mData": "html_id",
// "mRender" : function ( data, type, full) {
// return '<div onclick="OpenInNewTab(\''+ data +'\');">'+data+'</div>';
// }
// },
// { "mData": "feature_value" },
// { "mData": "cluster_win_mean" },
// { "mData": "delta" }
// ],
// "aaSorting": [[ 3, "desc" ]]
// } );
};
$(document).ready(function(){
initDataTables();
/* all other page load code*/
});
</script>
<link href="http://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700,300italic,400italic,500italic,700italic" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,300,400,600,700,800"
rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="dist/jquery.jqplot.min.css" />
<style type="text/css" title="currentStyle">
@import "datatables/media/css/demo_page.css";
@import "datatables/media/css/header.ccss";
@import "datatables/media/css/demo_table.css";
/* for re-styling and CSV export */
@import "http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css";
@import "http://datatables.github.com/Plugins/integration/bootstrap/2/dataTables.bootstrap.css";
</style>
<style type="text/css">
/* Large desktop */
@media (min-width: 980px) {
body {
padding-top: 60px;
}
.linediv-l {
border-right: 1px white solid;
}
.linediv-r {
border-left: 1px white solid;
}
}
/* Landscape phones and down */
@media (max-width: 480px) {
.copy {
padding: 2.5% 10%;
}
.linediv-l {
border-bottom: 1px white solid;
}
.linediv-r {
border-top: 1px white solid;
}
}
/* All form factors */
/* Main body and headings */
body{
font-family: 'Open Sans', Helvetica, Arial, sans-serif;
}
.heading, .subheading {
font-family: 'Ubuntu', Helvetica, Arial, sans-serif;
text-align: center;
}
p.lead {
padding-top: 1.5%;
font-size: 24px;
line-height: 30px;
}
p {
font-size: 18px;
line-height: 24px;
}
/* Video pitch and Action */
.pitch {
padding: 2.5% 0%;
}
.order {
padding: 2% 0%;
}
.actions {
background-color: #343434;
padding: 3% 0%;
}
.video, .thermometer, .order, .social, .statistics {
text-align: center;
}
.statistics h3, .statistics p {
color: white;
}
/* Marketing Copy and Footer */
.copy {
padding-top: 2.5%;
padding-bottom: 2.5%;
text-align: justify;
}
.asset {
padding: 2.5% 0%;
}
.footer {
color: #cccccc;
text-align: center;
}
.footer p {
font-size: 11px;
}
.footer a {
color: #ccccff;
}
</style>
</head>
<body>
<!-- Mobile-friendly navbar adapted from example. -->
<!-- http://twitter.github.io/bootstrap/examples/starter-template.html -->
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<button type="button" class="btn btn-navbar"
data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="brand" href="/">MathSight Demo</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li class="active"><a href="/">Home</a></li>
<!-- <li><a href="/plans.html">Plans</a></li> -->
<!-- <li class="active"><a href="/tour.html">Tour</a></li> -->
<li><a href="/api.html">API</a></li>
<!-- <li><a href="/jobs.html">Jobs</a></li> -->
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<!-- We use row-fluid inside containers to achieve a resizable layout. -->
<!-- blogs.endjin.com/2013/04/tips-for-implementing-responsive-designs-using-bootstrap/ -->
<!-- http://stackoverflow.com/a/12270322 -->
<div class="container">
<!-- Font and paired font of .heading/.subheading and body from Google Fonts -->
<!-- www.google.com/fonts/specimen/Ubuntu -->
<!-- www.google.com/fonts/specimen/Ubuntu#pairings -->
<div class="row-fluid heading">
<div class="span12">
<h1>StatSEO: Onsite drilldown</h1>
</div>
</div>
<FORM NAME="joe">
<INPUT TYPE="hidden" NAME="burns" SIZE="35">
</form>
<div class="row-fluid subheading">
<div class="span12">
<!-- Special typography from Bootstrap for lead paragraph. -->
<!-- http://twitter.github.io/bootstrap/base-css.html#typography -->
<p class="lead">
<script>document.write("for " + websiteName);</script>