-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcp-member-dashboard.pickle
3201 lines (3201 loc) · 28.3 KB
/
cp-member-dashboard.pickle
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
(dp0
Vdashboards
p1
(lp2
ccopy_reg
_reconstructor
p3
(csuperset.models.core
Dashboard
p4
c__builtin__
object
p5
Ntp6
Rp7
(dp8
S'dashboard_title'
p9
VCoding Pirates medlemmer
p10
sS'_sa_instance_state'
p11
g3
(csqlalchemy.orm.state
InstanceState
p12
g5
Ntp13
Rp14
(dp15
S'manager'
p16
g3
(csqlalchemy.orm.instrumentation
_SerializeManager
p17
g5
Ntp18
Rp19
(dp20
S'class_'
p21
g4
sbsS'load_options'
p22
c__builtin__
set
p23
((lp24
g3
(csqlalchemy.orm.strategy_options
_UnboundLoad
p25
g5
Ntp26
Rp27
(dp28
S'_is_chain_link'
p29
I00
sS'local_opts'
p30
(dp31
sS'path'
p32
(lp33
(g4
S'slices'
p34
tp35
asS'propagate_to_loaders'
p36
I01
sS'_to_bind'
p37
g23
((lp38
g27
atp39
Rp40
sS'strategy'
p41
((S'lazy'
p42
S'subquery'
p43
tp44
tp45
sbatp46
Rp47
sS'modified'
p48
I01
sS'committed_state'
p49
(dp50
S'json_metadata'
p51
V{"filter_immune_slice_fields": {}, "timed_refresh_immune_slices": [], "remote_id": 7, "filter_immune_slices": [], "expanded_slices": {}, "default_filters": "{\u005c"97\u005c":{\u005c"department_name\u005c":[],\u005c"union_name\u005c":[],\u005c"gender\u005c":[]}}", "import_time": 1520396689}
p52
ssS'instance'
p53
g7
sg21
g4
sS'expired_attributes'
p54
g23
((lp55
tp56
Rp57
sS'load_path'
p58
(lp59
(g4
Ntp60
asS'expired'
p61
I00
sS'_pending_mutations'
p62
(dp63
sbsS'description'
p64
Nsg34
g3
(csqlalchemy.orm.collections
InstrumentedList
p65
c__builtin__
list
p66
(lp67
g3
(csuperset.models.core
Slice
p68
g5
Ntp69
Rp70
(dp71
g11
g3
(g12
g5
Ntp72
Rp73
(dp74
g16
g3
(g17
g5
Ntp75
Rp76
(dp77
g21
g68
sbsg22
g23
((lp78
g27
atp79
Rp80
sg48
I00
sg49
(dp81
sg53
g70
sg21
g68
sS'key'
p82
(g68
(I103
tp83
tp84
sg54
g23
((lp85
tp86
Rp87
sg58
(lp88
(g4
g34
tp89
a(g68
Ntp90
asg61
I00
sbsS'datasource_id'
p91
I23
sg64
NsS'slice_name'
p92
VMedlemmer over tid
p93
sS'viz_type'
p94
Varea
p95
sS'perm'
p96
V[cp-aggregated].[dataviz_members_grouped](id:23)
p97
sS'datasource_type'
p98
Vtable
p99
sS'created_by_fk'
p100
I1
sS'created_on'
p101
cdatetime
datetime
p102
(S'\x07\xe2\x03\x07\x05\x182\x01\x1e\x9a'
p103
tp104
Rp105
sS'params'
p106
S'{"remote_id": 103, "resample_fillmethod": null, "show_brush": false, "line_interpolation": "linear", "stacked_style": "stack", "annotation_layers": [], "show_legend": true, "groupby": ["chapter_name"], "database_name": "cp-aggregated", "filters": [], "show_controls": false, "granularity_sqla": "timeperiod", "rolling_type": "None", "viz_type": "area", "order_desc": true, "since": "100 years ago", "rich_tooltip": true, "time_compare": null, "color_scheme": "bnbColors", "until": "now", "schema": "dataviz_members_grouped", "resample_rule": null, "period_ratio_type": "growth", "y_axis_format": ".3s", "x_axis_format": "smart_date", "metrics": ["sum__antal"], "y_axis_bounds": [null, null], "timeseries_limit_metric": null, "slice_id": 103, "time_grain_sqla": "Time Column", "resample_how": null, "having": "", "y_log_scale": false, "limit": 50, "datasource": "23__table", "x_axis_showminmax": true, "datasource_name": "dataviz_members_grouped", "contribution": false, "where": "", "num_period_compare": ""}'
p107
sS'changed_by_fk'
p108
I1
sS'datasource_name'
p109
NsS'cache_timeout'
p110
NsS'id'
p111
I103
sS'changed_on'
p112
g102
(S'\x07\xe2\x03\x07\x056\x1d\x07\x10\xbf'
p113
tp114
Rp115
sbag3
(g68
g5
Ntp116
Rp117
(dp118
g11
g3
(g12
g5
Ntp119
Rp120
(dp121
g16
g3
(g17
g5
Ntp122
Rp123
(dp124
g21
g68
sbsg22
g80
sg48
I00
sg49
(dp125
sg53
g117
sg21
g68
sg82
(g68
(I104
tp126
tp127
sg54
g23
((lp128
tp129
Rp130
sg58
(lp131
(g4
g34
tp132
a(g68
Ntp133
asg61
I00
sbsg91
I23
sg64
Nsg92
VAntal medlemmer
p134
sg94
Vbig_number
p135
sg96
g97
sg98
Vtable
p136
sg100
I1
sg101
g102
(S'\x07\xe2\x03\x07\x05\x182\x01>z'
p137
tp138
Rp139
sg106
S'{"remote_id": 104, "viz_type": "big_number", "slice_id": 104, "time_grain_sqla": "Time Column", "metric": "sum__antal", "since": "100 years ago", "until": "now", "y_axis_format": "d", "datasource": "23__table", "filters": [], "datasource_name": "dataviz_members_grouped", "database_name": "cp-aggregated", "granularity_sqla": "timeperiod", "where": "", "having": "", "schema": "dataviz_members_grouped"}'
p140
sg108
I1
sg109
Nsg110
Nsg111
I104
sg112
g102
(S'\x07\xe2\x03\x07\x056\x1d\x07+5'
p141
tp142
Rp143
sbag3
(g68
g5
Ntp144
Rp145
(dp146
g11
g3
(g12
g5
Ntp147
Rp148
(dp149
g16
g3
(g17
g5
Ntp150
Rp151
(dp152
g21
g68
sbsg22
g80
sg48
I00
sg49
(dp153
sg53
g145
sg21
g68
sg82
(g68
(I105
tp154
tp155
sg54
g23
((lp156
tp157
Rp158
sg58
(lp159
(g4
g34
tp160
a(g68
Ntp161
asg61
I00
sbsg91
I23
sg64
Nsg92
VAldersfordeling, medlemmer
p162
sg94
Vdist_bar
p163
sg96
g97
sg98
Vtable
p164
sg100
I1
sg101
g102
(S'\x07\xe2\x03\x07\x05\x182\x01T\x99'
p165
tp166
Rp167
sg106
S'{"bottom_margin": "auto", "y_axis_label": "", "row_limit": null, "remote_id": 105, "show_legend": true, "filters": [], "show_controls": false, "granularity_sqla": "timeperiod", "viz_type": "dist_bar", "since": "1 months ago", "x_axis_label": "", "order_bars": true, "color_scheme": "d3Category10", "until": "now", "columns": ["gender"], "schema": "dataviz_members_grouped", "show_bar_value": false, "y_axis_format": ".3s", "metrics": ["sum__antal"], "slice_id": 105, "time_grain_sqla": "Time Column", "database_name": "cp-aggregated", "reduce_x_ticks": false, "groupby": ["age"], "datasource": "23__table", "datasource_name": "dataviz_members_grouped", "contribution": false, "where": "", "having": "", "bar_stacked": false}'
p168
sg108
I1
sg109
Nsg110
Nsg111
I105
sg112
g102
(S'\x07\xe2\x03\x07\x056\x1d\x07?\x87'
p169
tp170
Rp171
sbag3
(g68
g5
Ntp172
Rp173
(dp174
g11
g3
(g12
g5
Ntp175
Rp176
(dp177
g16
g3
(g17
g5
Ntp178
Rp179
(dp180
g21
g68
sbsg22
g80
sg48
I00
sg49
(dp181
sg53
g173
sg21
g68
sg82
(g68
(I106
tp182
tp183
sg54
g23
((lp184
tp185
Rp186
sg58
(lp187
(g4
g34
tp188
a(g68
Ntp189
asg61
I00
sbsg91
I23
sg64
Nsg92
VFilter
p190
sg94
Vfilter_box
p191
sg96
g97
sg98
Vtable
p192
sg100
I1
sg101
g102
(S'\x07\xe2\x03\x07\x05\x182\x01jI'
p193
tp194
Rp195
sg106
S'{"schema": "dataviz_members_grouped", "remote_id": 106, "show_sqla_time_granularity": false, "metric": "sum__antal", "filters": [], "show_druid_time_granularity": false, "database_name": "cp-aggregated", "granularity_sqla": "month", "having": "", "viz_type": "filter_box", "slice_id": 106, "where": "", "until": "now", "since": "7 days ago", "groupby": ["union_name", "chapter_name", "gender"], "show_druid_time_origin": false, "datasource": "23__table", "datasource_name": "dataviz_members_grouped", "show_sqla_time_column": false, "time_grain_sqla": "Time Column", "date_filter": false, "instant_filtering": true}'
p196
sg108
I1
sg109
Nsg110
Nsg111
I106
sg112
g102
(S'\x07\xe2\x03\x07\x056\x1d\x07Vb'
p197
tp198
Rp199
sbag3
(g68
g5
Ntp200
Rp201
(dp202
g11
g3
(g12
g5
Ntp203
Rp204
(dp205
g16
g3
(g17
g5
Ntp206
Rp207
(dp208
g21
g68
sbsg22
g80
sg48
I00
sg49
(dp209
sg53
g201
sg21
g68
sg82
(g68
(I107
tp210
tp211
sg54
g23
((lp212
tp213
Rp214
sg58
(lp215
(g4
g34
tp216
a(g68
Ntp217
asg61
I00
sbsg91
I23
sg64
Nsg92
VBopæl, medlemmer
p218
sg94
Vtable
p219
sg96
g97
sg98
Vtable
p220
sg100
I1
sg101
g102
(S'\x07\xe2\x03\x07\x05\x182\x01|\x9d'
p221
tp222
Rp223
sg106
S'{"remote_id": 107, "include_time": false, "row_limit": null, "table_filter": false, "filters": [], "granularity_sqla": "month", "page_length": 0, "all_columns": [], "viz_type": "table", "order_desc": true, "since": "1 months ago", "until": "now", "schema": "dataviz_members_grouped", "metrics": ["sum__antal"], "include_search": false, "timeseries_limit_metric": null, "slice_id": 107, "time_grain_sqla": null, "database_name": "cp-aggregated", "order_by_cols": [], "groupby": ["city"], "datasource": "23__table", "table_timestamp_format": "%Y-%m-%d %H:%M:%S", "datasource_name": "dataviz_members_grouped", "where": "", "having": ""}'
p224
sg108
I1
sg109
Nsg110
Nsg111
I107
sg112
g102
(S'\x07\xe2\x03\x07\x056\x1d\x07j<'
p225
tp226
Rp227
sbag3
(g68
g5
Ntp228
Rp229
(dp230
g11
g3
(g12
g5
Ntp231
Rp232
(dp233
g16
g3
(g17
g5
Ntp234
Rp235
(dp236
g21
g68
sbsg22
g80
sg48
I00
sg49
(dp237
sg53
g229
sg21
g68
sg82
(g68
(I108
tp238
tp239
sg54
g23
((lp240
tp241
Rp242
sg58
(lp243
(g4
g34
tp244
a(g68
Ntp245
asg61
I00
sbsg91
I23
sg64
Nsg92
VGeografisk fordeling
p246
sg94
Vmapbox
p247
sg96
g97
sg98
Vtable
p248
sg100
I1
sg101
g102
(S'\x07\xe2\x03\x07\x05\x182\x01\x8d\xff'
p249
tp250
Rp251
sg106
S'{"remote_id": 108, "mapbox_color": "rgb(0, 122, 135)", "row_limit": null, "pandas_aggfunc": "sum", "all_columns_y": "chapter_latitude", "all_columns_x": "chapter_longitude", "filters": [], "render_while_dragging": true, "clustering_radius": "60", "granularity_sqla": "timeperiod", "point_radius": "Auto", "viz_type": "mapbox", "since": "1 months ago", "point_radius_unit": "Pixels", "until": "now", "schema": "dataviz_members_grouped", "viewport_longitude": 11.949418734807807, "mapbox_label": [], "mapbox_style": "mapbox://styles/mapbox/streets-v9", "viewport_zoom": 5.496584783400914, "slice_id": 108, "global_opacity": 1, "time_grain_sqla": null, "database_name": "cp-aggregated", "viewport_latitude": 56.24366046195016, "groupby": [], "datasource": "23__table", "datasource_name": "dataviz_members_grouped", "where": "", "having": ""}'
p252
sg108
I1
sg109
Nsg110
Nsg111
I108
sg112
g102
(S'\x07\xe2\x03\x07\x056\x1d\x07}\x01'
p253
tp254
Rp255
sbag3
(g68
g5
Ntp256
Rp257
(dp258
g11
g3
(g12
g5
Ntp259
Rp260
(dp261
g16
g3
(g17
g5
Ntp262
Rp263
(dp264
g21
g68
sbsg22
g80
sg48
I00
sg49
(dp265
sg53
g257
sg21
g68
sg82
(g68
(I109
tp266
tp267
sg54
g23
((lp268
tp269
Rp270
sg58
(lp271
(g4
g34
tp272
a(g68
Ntp273
asg61
I00
sbsg91
I23
sg64
Nsg92
VAntal afdelinger
p274
sg94
Vbig_number_total
p275
sg96
g97
sg98
Vtable
p276
sg100
I1
sg101
g102
(S'\x07\xe2\x03\x07\x05\x182\x01\xa8\xed'
p277
tp278
Rp279
sg106
S'{"subheader": "afdelinger", "remote_id": 109, "viz_type": "big_number_total", "slice_id": 109, "time_grain_sqla": "Time Column", "metric": "count_distinct__chapter_name", "since": "1 months ago", "until": "now", "y_axis_format": "d", "datasource": "23__table", "filters": [], "datasource_name": "dataviz_members_grouped", "database_name": "cp-aggregated", "granularity_sqla": "timeperiod", "where": "", "having": "", "schema": "dataviz_members_grouped"}'
p280
sg108
I1
sg109
Nsg110
Nsg111
I109
sg112
g102
(S'\x07\xe2\x03\x07\x056\x1d\x07\x975'
p281
tp282
Rp283
sbag3
(g68
g5
Ntp284
Rp285
(dp286
g11
g3
(g12
g5
Ntp287
Rp288
(dp289
g16
g3
(g17
g5
Ntp290
Rp291
(dp292
g21
g68
sbsg22
g80
sg48
I00
sg49
(dp293
sg53
g285
sg21
g68
sg82
(g68
(I110
tp294
tp295
sg54
g23
((lp296
tp297
Rp298
sg58
(lp299
(g4
g34
tp300
a(g68
Ntp301
asg61
I00
sbsg91
I23
sg64
Nsg92
VMedlemmer per afdeling
p302
sg94
Vdist_bar
p303
sg96
g97
sg98
Vtable
p304
sg100
I1
sg101
g102
(S'\x07\xe2\x03\x07\x05\x182\x01\xc0\xb6'
p305
tp306
Rp307
sg106
S'{"bottom_margin": "auto", "y_axis_label": "", "row_limit": null, "remote_id": 110, "show_legend": true, "filters": [], "show_controls": false, "granularity_sqla": "month", "viz_type": "dist_bar", "since": "1 months ago", "x_axis_label": "", "order_bars": false, "color_scheme": "d3Category10", "until": "now", "columns": ["gender"], "schema": "dataviz_members_grouped", "show_bar_value": true, "y_axis_format": "d", "metrics": ["sum__antal"], "slice_id": 110, "time_grain_sqla": "Time Column", "database_name": "cp-aggregated", "reduce_x_ticks": false, "groupby": ["chapter_name"], "datasource": "23__table", "datasource_name": "dataviz_members_grouped", "contribution": false, "where": "", "having": "", "bar_stacked": false}'
p308
sg108
I1
sg109
Nsg110
Nsg111
I110
sg112
g102
(S'\x07\xe2\x03\x07\x056\x1d\x07\xaa\xec'
p309
tp310
Rp311
sbag3
(g68
g5
Ntp312
Rp313
(dp314
g11
g3
(g12
g5
Ntp315
Rp316
(dp317
g16
g3
(g17
g5
Ntp318
Rp319
(dp320
g21
g68
sbsg22
g80
sg48
I00
sg49
(dp321
sg53
g313
sg21
g68
sg82
(g68
(I111
tp322
tp323
sg54
g23
((lp324
tp325
Rp326
sg58
(lp327
(g4
g34
tp328
a(g68
Ntp329
asg61
I00
sbsg91
I23
sg64
Nsg92
VBreakdown per region
p330
sg94
Vsunburst
p331
sg96
g97
sg98
Vtable
p332
sg100
I1
sg101
g102
(S'\x07\xe2\x03\x07\x05\x182\x01\xd8\x11'
p333
tp334
Rp335
sg106
S'{"time_grain_sqla": "Time Column", "remote_id": 111, "viz_type": "sunburst", "slice_id": 111, "row_limit": null, "metric": "sum__antal", "since": "1 months ago", "groupby": ["region", "union_name"], "database_name": "cp-aggregated", "datasource": "23__table", "filters": [], "secondary_metric": "sum__antal", "datasource_name": "dataviz_members_grouped", "color_scheme": "bnbColors", "granularity_sqla": "timeperiod", "schema": "dataviz_members_grouped", "where": "", "having": "", "until": "now"}'
p336
sg108
I1
sg109
Nsg110
Nsg111
I111
sg112
g102
(S'\x07\xe2\x03\x07\x056\x1d\x07\xc6z'
p337
tp338
Rp339
sbatp340
Rp341
(dp342
S'_sa_adapter'
p343
g3
(csqlalchemy.orm.collections
CollectionAdapter
p344
g5
Ntp345
Rp346
(dp347
S'invalidated'
p348
I00
sS'data'
p349
g341
sS'owner_state'
p350
g14
sS'owner_cls'
p351
g4
sg82
g34
sbsbsS'position_json'
p352
V[{"size_y": 4, "size_x": 4, "col": 3, "slice_id": "103", "row": 3}, {"size_y": 2, "size_x": 2, "col": 1, "slice_id": "104", "row": 2}, {"size_y": 3, "size_x": 4, "col": 3, "slice_id": "105", "row": 0}, {"size_y": 2, "size_x": 2, "col": 1, "slice_id": "106", "row": 0}, {"size_y": 6, "size_x": 2, "col": 11, "slice_id": "107", "row": 0}, {"size_y": 4, "size_x": 4, "col": 7, "slice_id": "108", "row": 0}, {"size_y": 2, "size_x": 2, "col": 1, "slice_id": "109", "row": 4}, {"size_y": 3, "size_x": 4, "col": 7, "slice_id": "110", "row": 4}]
p353
sg101
g102
(S'\x07\xe2\x03\x07\x05\x182\x01\xe8^'
p354
tp355
Rp356
sg51
S'{"filter_immune_slice_fields": {}, "timed_refresh_immune_slices": [], "remote_id": 8, "filter_immune_slices": [], "expanded_slices": {}, "default_filters": "{\\"97\\":{\\"department_name\\":[],\\"union_name\\":[],\\"gender\\":[]}}", "import_time": 1520396689}'
p357
sg112
g102
(S'\x07\xe2\x03\x07\x05(:\x01yV'
p358
tp359
Rp360
sg108
I1
sg111
I8
sg100
I1