-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvaccine_journey_dashboard.twb
8230 lines (8229 loc) · 552 KB
/
vaccine_journey_dashboard.twb
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
<?xml version='1.0' encoding='utf-8' ?>
<!-- build 20194.20.0119.2058 -->
<workbook original-version='18.1' source-build='2019.4.2 (20194.20.0119.2058)' source-platform='mac' version='18.1' xmlns:user='http://www.tableausoftware.com/xml/user'>
<document-format-change-manifest>
<AutoCreateAndUpdateDSDPhoneLayouts ignorable='true' predowngraded='true' />
<SheetIdentifierTracking ignorable='true' predowngraded='true' />
<SortTagCleanup />
<WindowsPersistSimpleIdentifiers />
<WorksheetBackgroundTransparency />
<ZoneBackgroundTransparency />
</document-format-change-manifest>
<preferences>
<preference name='ui.encoding.shelf.height' value='24' />
<preference name='ui.shelf.height' value='26' />
</preferences>
<datasources>
<datasource hasconnection='false' inline='true' name='Parameters' version='18.1'>
<aliases enabled='yes' />
<column caption='Choose Vaccine' datatype='string' name='[Parameter 1]' param-domain-type='list' role='measure' type='nominal' value='"VAR"'>
<calculation class='tableau' formula='"VAR"' />
<members>
<member value='"HepB"' />
<member value='"RV"' />
<member value='"DTaP"' />
<member value='"Hib"' />
<member value='"PCV13"' />
<member value='"IPV"' />
<member value='"MMR"' />
<member value='"VAR"' />
<member value='"HepA"' />
<member value='"MenACWY-D"' />
</members>
</column>
</datasource>
<datasource caption='Sheet1 (Project_1_data1)' inline='true' name='federated.1703cgn1pt8d381dlcakf1o14fxu' version='18.1'>
<connection class='federated'>
<named-connections>
<named-connection caption='Project_1_data1' name='excel-direct.12yonxb0m5i9za1derefj1itgqqd'>
<connection class='excel-direct' cleaning='no' compat='no' dataRefreshTime='' filename='/Users/catherine/Downloads/Group3_PROJECT1_INFO215_DataTable.xlsx' interpretationMode='0' password='' server='' validate='no' />
</named-connection>
</named-connections>
<relation connection='excel-direct.12yonxb0m5i9za1derefj1itgqqd' name='Sheet1' table='[Sheet1$]' type='table'>
<columns gridOrigin='A1:K51:no:A1:K51:0' header='yes' outcome='2'>
<column datatype='string' name='Patient Name' ordinal='0' />
<column datatype='date' name='BirthDate' ordinal='1' />
<column datatype='string' name='Gender' ordinal='2' />
<column datatype='string' name='Vaccine Interrupted' ordinal='3' />
<column datatype='string' name='Interruption Reason' ordinal='4' />
<column datatype='integer' name='Year of Interrruption' ordinal='5' />
<column datatype='string' name='Pediatrician' ordinal='6' />
<column datatype='string' name='Missed Vaccine' ordinal='7' />
<column datatype='string' name='Follow-up Schedule' ordinal='8' />
<column datatype='string' name='Weekly Appointment' ordinal='9' />
<column datatype='integer' name='Vaccination Stock' ordinal='10' />
</columns>
</relation>
<metadata-records>
<metadata-record class='column'>
<remote-name>Patient Name</remote-name>
<remote-type>130</remote-type>
<local-name>[Patient Name]</local-name>
<parent-name>[Sheet1]</parent-name>
<remote-alias>Patient Name</remote-alias>
<ordinal>0</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>BirthDate</remote-name>
<remote-type>7</remote-type>
<local-name>[BirthDate]</local-name>
<parent-name>[Sheet1]</parent-name>
<remote-alias>BirthDate</remote-alias>
<ordinal>1</ordinal>
<local-type>date</local-type>
<aggregation>Year</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"DATE"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Gender</remote-name>
<remote-type>130</remote-type>
<local-name>[Gender]</local-name>
<parent-name>[Sheet1]</parent-name>
<remote-alias>Gender</remote-alias>
<ordinal>2</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Vaccine Interrupted</remote-name>
<remote-type>130</remote-type>
<local-name>[Vaccine Interrupted]</local-name>
<parent-name>[Sheet1]</parent-name>
<remote-alias>Vaccine Interrupted</remote-alias>
<ordinal>3</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Interruption Reason</remote-name>
<remote-type>130</remote-type>
<local-name>[Interruption Reason]</local-name>
<parent-name>[Sheet1]</parent-name>
<remote-alias>Interruption Reason</remote-alias>
<ordinal>4</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Year of Interrruption</remote-name>
<remote-type>20</remote-type>
<local-name>[Year of Interrruption]</local-name>
<parent-name>[Sheet1]</parent-name>
<remote-alias>Year of Interrruption</remote-alias>
<ordinal>5</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"I8"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Pediatrician</remote-name>
<remote-type>130</remote-type>
<local-name>[Pediatrician]</local-name>
<parent-name>[Sheet1]</parent-name>
<remote-alias>Pediatrician</remote-alias>
<ordinal>6</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Missed Vaccine</remote-name>
<remote-type>130</remote-type>
<local-name>[Missed Vaccine]</local-name>
<parent-name>[Sheet1]</parent-name>
<remote-alias>Missed Vaccine</remote-alias>
<ordinal>7</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Follow-up Schedule</remote-name>
<remote-type>130</remote-type>
<local-name>[Follow-up Schedule]</local-name>
<parent-name>[Sheet1]</parent-name>
<remote-alias>Follow-up Schedule</remote-alias>
<ordinal>8</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Weekly Appointment</remote-name>
<remote-type>130</remote-type>
<local-name>[Weekly Appointment]</local-name>
<parent-name>[Sheet1]</parent-name>
<remote-alias>Weekly Appointment</remote-alias>
<ordinal>9</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"WSTR"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Vaccination Stock</remote-name>
<remote-type>20</remote-type>
<local-name>[Vaccination Stock]</local-name>
<parent-name>[Sheet1]</parent-name>
<remote-alias>Vaccination Stock</remote-alias>
<ordinal>10</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"I8"</attribute>
</attributes>
</metadata-record>
<metadata-record class='capability'>
<remote-name />
<remote-type>0</remote-type>
<parent-name>[Sheet1]</parent-name>
<remote-alias />
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='integer' name='context'>1</attribute>
<attribute datatype='string' name='gridOrigin'>"A1:K51:no:A1:K51:0"</attribute>
<attribute datatype='boolean' name='header'>true</attribute>
<attribute datatype='integer' name='outcome'>2</attribute>
</attributes>
</metadata-record>
</metadata-records>
</connection>
<aliases enabled='yes' />
<column caption='Birth Date' datatype='date' name='[BirthDate]' role='dimension' type='ordinal' />
<column caption='Today' datatype='date' name='[Calculation_1125618461130928134]' role='dimension' type='ordinal'>
<calculation class='tableau' formula='TODAY()' />
</column>
<column caption='Age in months' datatype='integer' name='[Calculation_1125618461134524423]' role='measure' type='quantitative'>
<calculation class='tableau' formula='DATEDIFF('month',[BirthDate],TODAY())' />
</column>
<column caption='Vaccine Name' datatype='string' name='[Calculation_1125618461134794760]' role='dimension' type='nominal'>
<calculation class='tableau' formula='IF [Calculation_1125618461134524423] = 0 THEN "HepB-1 of 3" ELSEIF [Calculation_1125618461134524423] = 1 THEN "HepB-2 of 3" ELSEIF [Calculation_1125618461134524423] = 2 THEN "HepB-2 of 3,DTaP-1 of 5,RV-1 of 2,PCV13-1 of 4,Hib-1 of 3,IPV-1 of 4" ELSEIF [Calculation_1125618461134524423] = 4 THEN "DTaP-2 of 5,RV-2 of 2,PCV13-2 of 4,Hib-2 of 3,IPV-2 of 4" ELSEIF [Calculation_1125618461134524423] = 6 THEN "DTaP-3 of 5,RV-2 of 2,PCV13-3 of 4" ELSEIF [Calculation_1125618461134524423] = 9 THEN "HepB-3 of 3" ELSEIF [Calculation_1125618461134524423] = 12 THEN "HepB-3 of 3,PCV13-4 of 4,Hib-3 of 3,IPV-3 of 4,MMR-1 of 2,VAR-1 of 2,HepA" ELSEIF [Calculation_1125618461134524423] = 15 THEN "HepB-3 of 3,DTaP-4 of 5,PCV13-4 of 4,Hib-3 of 3,IPV-3 of 4,MMR-1 of 2,VAR-1 of 2,HepA" ELSEIF [Calculation_1125618461134524423] = 18 THEN "HepB-3 of 3,DTaP-4 of 5,IPV-3 of 4,HepA" ELSEIF [Calculation_1125618461134524423] > 47 AND [Calculation_1125618461134524423] < 73 THEN "DTaP-5 of 5,IPV-4 of 5,MMR-2 of 2,VAR-2 of 2" ELSEIF [Calculation_1125618461134524423] > 133 ANd [Calculation_1125618461134524423] < 144 THEN "MenACWY-D-1 of 2" ELSEIF [Calculation_1125618461134524423] = 192 THEN "MenACWY-D-2 of 2" END' />
</column>
<column caption='Filter on Vaccine' datatype='boolean' name='[Calculation_1125618461135015945]' role='dimension' type='nominal'>
<calculation class='tableau' formula='CONTAINS([Calculation_1125618461134794760],[Parameters].[Parameter 1])' />
</column>
<column datatype='string' name='[Follow-up Schedule]' role='dimension' type='nominal' />
<column datatype='string' name='[Gender]' role='dimension' type='nominal' />
<column datatype='string' name='[Interruption Reason]' role='dimension' type='nominal' />
<column datatype='string' name='[Missed Vaccine]' role='dimension' type='nominal' />
<column datatype='integer' name='[Number of Records]' role='measure' type='quantitative' user:auto-column='numrec'>
<calculation class='tableau' formula='1' />
</column>
<column datatype='string' name='[Patient Name]' role='dimension' type='nominal' />
<column datatype='string' name='[Pediatrician]' role='dimension' type='nominal' />
<column datatype='string' name='[Vaccine Interrupted]' role='dimension' type='nominal' />
<column datatype='string' name='[Weekly Appointment]' role='dimension' type='nominal' />
<column-instance column='[Patient Name]' derivation='Max' name='[max:Patient Name:nk]' pivot='key' type='nominal' />
<column-instance column='[Calculation_1125618461130928134]' derivation='MDY' name='[md:Calculation_1125618461130928134:ok]' pivot='key' type='ordinal' />
<column-instance column='[Follow-up Schedule]' derivation='None' name='[none:Follow-up Schedule:nk]' pivot='key' type='nominal' />
<column-instance column='[Gender]' derivation='None' name='[none:Gender:nk]' pivot='key' type='nominal' />
<column-instance column='[Interruption Reason]' derivation='None' name='[none:Interruption Reason:nk]' pivot='key' type='nominal' />
<column-instance column='[Missed Vaccine]' derivation='None' name='[none:Missed Vaccine:nk]' pivot='key' type='nominal' />
<column-instance column='[Patient Name]' derivation='None' name='[none:Patient Name:nk]' pivot='key' type='nominal' />
<column-instance column='[Pediatrician]' derivation='None' name='[none:Pediatrician:nk]' pivot='key' type='nominal' />
<column-instance column='[BirthDate]' derivation='Year' name='[yr:BirthDate:ok]' pivot='key' type='ordinal' />
<group caption='Action (2020 Vaccine Interrupted,Interruption Reason)' hidden='true' name='[Action (2020 Vaccine Interrupted,Interruption Reason)]' name-style='unqualified' user:auto-column='sheet_link'>
<groupfilter function='crossjoin'>
<groupfilter function='level-members' level='[2020 Vaccine Interrupted]' />
<groupfilter function='level-members' level='[Interruption Reason]' />
</groupfilter>
</group>
<group caption='Action (Follow-up Schedule,Interruption Reason,Missed Vaccine,Patient Name)' hidden='true' name='[Action (Follow-up Schedule,Interruption Reason,Missed Vaccine,Patient Name)]' name-style='unqualified' user:auto-column='sheet_link'>
<groupfilter function='crossjoin'>
<groupfilter function='level-members' level='[Follow-up Schedule]' />
<groupfilter function='level-members' level='[Interruption Reason]' />
<groupfilter function='level-members' level='[Missed Vaccine]' />
<groupfilter function='level-members' level='[Patient Name]' />
</groupfilter>
</group>
<group caption='Action (Follow-up Schedule,Patient Name)' hidden='true' name='[Action (Follow-up Schedule,Patient Name)]' name-style='unqualified' user:auto-column='sheet_link'>
<groupfilter function='crossjoin'>
<groupfilter function='level-members' level='[Follow-up Schedule]' />
<groupfilter function='level-members' level='[Patient Name]' />
</groupfilter>
</group>
<group caption='Action (Gender)' hidden='true' name='[Action (Gender)]' name-style='unqualified' user:auto-column='sheet_link'>
<groupfilter function='crossjoin'>
<groupfilter function='level-members' level='[Gender]' />
</groupfilter>
</group>
<group caption='Action (Interruption Reason,Vaccine Interrupted)' hidden='true' name='[Action (Interruption Reason,Vaccine Interrupted)]' name-style='unqualified' user:auto-column='sheet_link'>
<groupfilter function='crossjoin'>
<groupfilter function='level-members' level='[Interruption Reason]' />
<groupfilter function='level-members' level='[Vaccine Interrupted]' />
</groupfilter>
</group>
<group caption='Action (MDY(Today))' hidden='true' name='[Action (MDY(Today))]' name-style='unqualified' user:auto-column='sheet_link'>
<groupfilter function='crossjoin'>
<groupfilter function='level-members' level='[md:Calculation_1125618461130928134:ok]' />
</groupfilter>
</group>
<group caption='Action (Missed Vaccine)' hidden='true' name='[Action (Missed Vaccine)]' name-style='unqualified' user:auto-column='sheet_link'>
<groupfilter function='crossjoin'>
<groupfilter function='level-members' level='[Missed Vaccine]' />
</groupfilter>
</group>
<group caption='Action (Patient Name)' hidden='true' name='[Action (Patient Name)]' name-style='unqualified' user:auto-column='sheet_link'>
<groupfilter function='crossjoin'>
<groupfilter function='level-members' level='[Patient Name]' />
</groupfilter>
</group>
<group caption='Action (Patient Name,Weekly Appointment)' hidden='true' name='[Action (Patient Name,Weekly Appointment)]' name-style='unqualified' user:auto-column='sheet_link'>
<groupfilter function='crossjoin'>
<groupfilter function='level-members' level='[Patient Name]' />
<groupfilter function='level-members' level='[Weekly Appointment]' />
</groupfilter>
</group>
<group caption='Action (Pediatrician)' hidden='true' name='[Action (Pediatrician)]' name-style='unqualified' user:auto-column='sheet_link'>
<groupfilter function='crossjoin'>
<groupfilter function='level-members' level='[Pediatrician]' />
</groupfilter>
</group>
<group caption='Action (YEAR(Birth Date),Follow-up Schedule,Gender,Interruption Reason,Missed Vaccine,Patient Name,Pediatrician,Vaccine Interrupted,Weekly Appointment)' hidden='true' name='[Action (YEAR(Birth Date),Follow-up Schedule,Gender,Interruption Reason,Missed Vaccine,Patient Name,Pediatrician,Vaccine Interrupted,Weekly Appointment)]' name-style='unqualified' user:auto-column='sheet_link'>
<groupfilter function='crossjoin'>
<groupfilter function='level-members' level='[yr:BirthDate:ok]' />
<groupfilter function='level-members' level='[Follow-up Schedule]' />
<groupfilter function='level-members' level='[Gender]' />
<groupfilter function='level-members' level='[Interruption Reason]' />
<groupfilter function='level-members' level='[Missed Vaccine]' />
<groupfilter function='level-members' level='[Patient Name]' />
<groupfilter function='level-members' level='[Pediatrician]' />
<groupfilter function='level-members' level='[Vaccine Interrupted]' />
<groupfilter function='level-members' level='[Weekly Appointment]' />
</groupfilter>
</group>
<group hidden='true' name='[Exclusions (2020 Vaccine Interrupted,Interruption Reason)]' name-style='unqualified' user:auto-column='exclude'>
<groupfilter function='crossjoin'>
<groupfilter function='level-members' level='[none:2020 Vaccine Interrupted:nk]' />
<groupfilter function='level-members' level='[none:Interruption Reason:nk]' />
</groupfilter>
</group>
<layout dim-ordering='alphabetic' dim-percentage='0.435323' measure-ordering='alphabetic' measure-percentage='0.312189' parameter-percentage='0.252488' show-structure='true' />
<style>
<style-rule element='mark'>
<encoding attr='color' field='[none:Follow-up Schedule:nk]' type='palette'>
<map to='#4e79a7'>
<bucket>%null%</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Mar 15th"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Jun"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Jun 10th"</bucket>
</map>
<map to='#76b7b2'>
<bucket>"May"</bucket>
</map>
<map to='#9c755f'>
<bucket>"Jul 3rd"</bucket>
</map>
<map to='#b07aa1'>
<bucket>"Apr 2nd"</bucket>
</map>
<map to='#bab0ac'>
<bucket>"Jul 15th"</bucket>
</map>
<map to='#e15759'>
<bucket>"Apr"</bucket>
</map>
<map to='#e15759'>
<bucket>"May 5th"</bucket>
</map>
<map to='#edc948'>
<bucket>"Jul"</bucket>
</map>
<map to='#edc948'>
<bucket>"Jun 20th"</bucket>
</map>
<map to='#f28e2b'>
<bucket>"Mar"</bucket>
</map>
<map to='#f28e2b'>
<bucket>"Mar 20th"</bucket>
</map>
<map to='#ff9da7'>
<bucket>"Apr 21th"</bucket>
</map>
</encoding>
<encoding attr='color' field='[max:Patient Name:nk]' type='palette'>
<map to='#499894'>
<bucket>"Catherin Gutirrez"</bucket>
</map>
<map to='#499894'>
<bucket>"Nathanial Riera"</bucket>
</map>
<map to='#499894'>
<bucket>"Yung Kennedy"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Abe Province"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Jeanie Gresham"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Tisha Toller"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Ardis Lewellyn"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Lenore Sweeny"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Vannessa Feaster"</bucket>
</map>
<map to='#79706e'>
<bucket>"Consuela Saxon"</bucket>
</map>
<map to='#79706e'>
<bucket>"Rina Rahimi"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Celena Jelinek"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Peter Whitis"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Zita Pedroza"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"Beth Sheedy"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"Leta Cohan"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"Vicky Demuth"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Freida Frank"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Tiffaney Peel"</bucket>
</map>
<map to='#a0cbe8'>
<bucket>"Alden Schueler"</bucket>
</map>
<map to='#a0cbe8'>
<bucket>"Kisha Charters"</bucket>
</map>
<map to='#a0cbe8'>
<bucket>"Tobias Argento"</bucket>
</map>
<map to='#b07aa1'>
<bucket>"Eilene Cid"</bucket>
</map>
<map to='#b07aa1'>
<bucket>"Sharie Schow"</bucket>
</map>
<map to='#b6992d'>
<bucket>"Camille Kost"</bucket>
</map>
<map to='#b6992d'>
<bucket>"Marinda Lauzon"</bucket>
</map>
<map to='#b6992d'>
<bucket>"Virgina Ehmann"</bucket>
</map>
<map to='#bab0ac'>
<bucket>"Cristen Crompton"</bucket>
</map>
<map to='#bab0ac'>
<bucket>"Robt Herren"</bucket>
</map>
<map to='#d37295'>
<bucket>"Donn Canavan"</bucket>
</map>
<map to='#d37295'>
<bucket>"Rudolf Pelley"</bucket>
</map>
<map to='#d4a6c8'>
<bucket>"Emmy Wenrich"</bucket>
</map>
<map to='#d4a6c8'>
<bucket>"Tamra Mabry"</bucket>
</map>
<map to='#d7b5a6'>
<bucket>"Ignacio Deleeuw"</bucket>
</map>
<map to='#d7b5a6'>
<bucket>"Tijuana Follmer"</bucket>
</map>
<map to='#e15759'>
<bucket>"Chelsey Lieu"</bucket>
</map>
<map to='#e15759'>
<bucket>"Randolph Signorelli"</bucket>
</map>
<map to='#f1ce63'>
<bucket>"Carlee Rachel"</bucket>
</map>
<map to='#f1ce63'>
<bucket>"Mohammad Hucks"</bucket>
</map>
<map to='#f1ce63'>
<bucket>"Yuko Benning"</bucket>
</map>
<map to='#f28e2b'>
<bucket>"Angie Puzo"</bucket>
</map>
<map to='#f28e2b'>
<bucket>"Latoyia Crunk"</bucket>
</map>
<map to='#f28e2b'>
<bucket>"Toshiko Raasch"</bucket>
</map>
<map to='#fabfd2'>
<bucket>"Earleen Desilva"</bucket>
</map>
<map to='#fabfd2'>
<bucket>"Sally Seelye"</bucket>
</map>
<map to='#ff9d9a'>
<bucket>"Claretta Bonavita"</bucket>
</map>
<map to='#ff9d9a'>
<bucket>"Reatha Sasso"</bucket>
</map>
<map to='#ffbe7d'>
<bucket>"Anh Chenoweth"</bucket>
</map>
<map to='#ffbe7d'>
<bucket>"Latrice Edgington"</bucket>
</map>
<map to='#ffbe7d'>
<bucket>"Tressie Heslop"</bucket>
</map>
</encoding>
<encoding attr='color' field='[none:Pediatrician:nk]' palette='nuriel_stone_10_0' type='palette'>
<map to='#6fb899'>
<bucket>"Dr. Prasad"</bucket>
</map>
<map to='#8175aa'>
<bucket>"Dr. Cho"</bucket>
</map>
<map to='#e15759'>
<bucket>"Dr. Raja"</bucket>
</map>
</encoding>
<encoding attr='color' field='[none:Gender:nk]' type='palette'>
<map to='#4e79a7'>
<bucket>"Female"</bucket>
</map>
<map to='#f28e2b'>
<bucket>"Male"</bucket>
</map>
</encoding>
<encoding attr='color' field='[none:Interruption Reason:nk]' palette='gray_10_0' type='palette'>
<map to='#49525e'>
<bucket>"Stomach Flu"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Not Available"</bucket>
</map>
<map to='#66717b'>
<bucket>"Measles"</bucket>
</map>
<map to='#889296'>
<bucket>"Genetic Predisposition"</bucket>
</map>
<map to='#aeb2b3'>
<bucket>"Chicken Pox"</bucket>
</map>
<map to='#d5d5d5'>
<bucket>"Birth Control"</bucket>
</map>
</encoding>
<encoding attr='color' field='[none:Missed Vaccine:nk]' palette='blue_10_0' type='palette'>
<map to='#4e79a7'>
<bucket>"DTaP"</bucket>
</map>
<map to='#b07aa1'>
<bucket>"RV"</bucket>
</map>
<map to='#bab0ac'>
<bucket>%null%</bucket>
</map>
<map to='#e15759'>
<bucket>"Hib"</bucket>
</map>
<map to='#edc948'>
<bucket>"Influenza"</bucket>
</map>
<map to='#edc948'>
<bucket>"MenACWY-D"</bucket>
</map>
<map to='#f28e2b'>
<bucket>"HepB"</bucket>
</map>
<map to='#ff9da7'>
<bucket>"VAR"</bucket>
</map>
</encoding>
<encoding attr='color' field='[none:Patient Name:nk]' palette='blue_10_0' type='palette'>
<map to='#2a5783'>
<bucket>"Zita Pedroza"</bucket>
</map>
<map to='#2c5985'>
<bucket>"Yung Kennedy"</bucket>
</map>
<map to='#2f5c88'>
<bucket>"Yuko Benning"</bucket>
</map>
<map to='#315e8b'>
<bucket>"Virgina Ehmann"</bucket>
</map>
<map to='#34618e'>
<bucket>"Vicky Demuth"</bucket>
</map>
<map to='#376491'>
<bucket>"Vannessa Feaster"</bucket>
</map>
<map to='#396693'>
<bucket>"Tressie Heslop"</bucket>
</map>
<map to='#3b6996'>
<bucket>"Toshiko Raasch"</bucket>
</map>
<map to='#3d6b99'>
<bucket>"Tobias Argento"</bucket>
</map>
<map to='#406e9b'>
<bucket>"Tisha Toller"</bucket>
</map>
<map to='#42709e'>
<bucket>"Tijuana Follmer"</bucket>
</map>
<map to='#4473a1'>
<bucket>"Tiffaney Peel"</bucket>
</map>
<map to='#4675a3'>
<bucket>"Tamra Mabry"</bucket>
</map>
<map to='#4878a6'>
<bucket>"Sharie Schow"</bucket>
</map>
<map to='#4a7ba9'>
<bucket>"Sally Seelye"</bucket>
</map>
<map to='#4c7dab'>
<bucket>"Rudolf Pelley"</bucket>
</map>
<map to='#4f80ad'>
<bucket>"Robt Herren"</bucket>
</map>
<map to='#5283b0'>
<bucket>"Rina Rahimi"</bucket>
</map>
<map to='#5485b2'>
<bucket>"Reatha Sasso"</bucket>
</map>
<map to='#5788b4'>
<bucket>"Randolph Signorelli"</bucket>
</map>
<map to='#5a8bb6'>
<bucket>"Peter Whitis"</bucket>
</map>
<map to='#5d8eb9'>
<bucket>"Nathanial Riera"</bucket>
</map>
<map to='#5f90bb'>
<bucket>"Mohammad Hucks"</bucket>
</map>
<map to='#6293bd'>
<bucket>"Marinda Lauzon"</bucket>
</map>
<map to='#6596bf'>
<bucket>"Leta Cohan"</bucket>
</map>
<map to='#6899c2'>
<bucket>"Lenore Sweeny"</bucket>
</map>
<map to='#6b9cc4'>
<bucket>"Latrice Edgington"</bucket>
</map>
<map to='#6e9fc6'>
<bucket>"Latoyia Crunk"</bucket>
</map>
<map to='#71a2c8'>
<bucket>"Kisha Charters"</bucket>
</map>
<map to='#73a4cb'>
<bucket>"Jeanie Gresham"</bucket>
</map>
<map to='#76a7cd'>
<bucket>"Ignacio Deleeuw"</bucket>
</map>
<map to='#79aacf'>
<bucket>"Freida Frank"</bucket>
</map>
<map to='#7cacd1'>
<bucket>"Emmy Wenrich"</bucket>
</map>
<map to='#7fafd4'>
<bucket>"Eilene Cid"</bucket>
</map>
<map to='#82b2d6'>
<bucket>"Earleen Desilva"</bucket>
</map>
<map to='#85b5d8'>
<bucket>"Donn Canavan"</bucket>
</map>
<map to='#88b8da'>
<bucket>"Cristen Crompton"</bucket>
</map>
<map to='#8cbbdc'>
<bucket>"Consuela Saxon"</bucket>
</map>
<map to='#8fbede'>
<bucket>"Claretta Bonavita"</bucket>
</map>
<map to='#93c1e0'>
<bucket>"Chelsey Lieu"</bucket>
</map>
<map to='#96c4e2'>
<bucket>"Celena Jelinek"</bucket>
</map>
<map to='#9ac7e4'>
<bucket>"Catherin Gutirrez"</bucket>
</map>
<map to='#9ecae6'>
<bucket>"Carlee Rachel"</bucket>
</map>
<map to='#a1cce7'>
<bucket>"Camille Kost"</bucket>
</map>
<map to='#a5cfe9'>
<bucket>"Beth Sheedy"</bucket>
</map>
<map to='#a9d2eb'>
<bucket>"Ardis Lewellyn"</bucket>
</map>
<map to='#add5ec'>
<bucket>"Anh Chenoweth"</bucket>
</map>
<map to='#b1d7ee'>
<bucket>"Angie Puzo"</bucket>
</map>
<map to='#b5daef'>
<bucket>"Alden Schueler"</bucket>
</map>
<map to='#b9ddf1'>
<bucket>"Abe Province"</bucket>
</map>
</encoding>
</style-rule>
</style>
<semantic-values>
<semantic-value key='[Country].[Name]' value='"United States"' />
</semantic-values>
<datasource-dependencies datasource='Parameters'>
<column caption='Choose Vaccine' datatype='string' name='[Parameter 1]' param-domain-type='list' role='measure' type='nominal' value='"VAR"'>
<calculation class='tableau' formula='"VAR"' />
</column>
</datasource-dependencies>
</datasource>
</datasources>
<actions>
<action caption='Filter1 1' name='[Action3]'>
<activation auto-clear='true' type='on-select' />
<source dashboard='Vaccine Journey Dash (2)' type='sheet' />
<command command='tsc:tsl-filter'>
<param name='single-select' value='' />
<param name='special-fields' value='all' />
<param name='target' value='Drill Down Dash' />
</command>
</action>
</actions>
<worksheets>
<worksheet name='Drill Down'>
<table>
<view>
<datasources>
<datasource caption='Sheet1 (Project_1_data1)' name='federated.1703cgn1pt8d381dlcakf1o14fxu' />
</datasources>
<datasource-dependencies datasource='federated.1703cgn1pt8d381dlcakf1o14fxu'>
<column caption='Birth Date' datatype='date' name='[BirthDate]' role='dimension' type='ordinal' />
<column caption='Today' datatype='date' name='[Calculation_1125618461130928134]' role='dimension' type='ordinal'>
<calculation class='tableau' formula='TODAY()' />
</column>
<column datatype='string' name='[Follow-up Schedule]' role='dimension' type='nominal' />
<column datatype='string' name='[Gender]' role='dimension' type='nominal' />
<column datatype='string' name='[Interruption Reason]' role='dimension' type='nominal' />
<column datatype='string' name='[Missed Vaccine]' role='dimension' type='nominal' />
<column datatype='string' name='[Patient Name]' role='dimension' type='nominal' />
<column datatype='string' name='[Pediatrician]' role='dimension' type='nominal' />
<column datatype='integer' name='[Vaccination Stock]' role='measure' type='quantitative' />
<column datatype='string' name='[Vaccine Interrupted]' role='dimension' type='nominal' />
<column datatype='string' name='[Weekly Appointment]' role='dimension' type='nominal' />
<column datatype='integer' name='[Year of Interrruption]' role='measure' type='quantitative' />
<column-instance column='[Calculation_1125618461130928134]' derivation='MDY' name='[md:Calculation_1125618461130928134:ok]' pivot='key' type='ordinal' />
<column-instance column='[BirthDate]' derivation='None' name='[none:BirthDate:ok]' pivot='key' type='ordinal' />
<column-instance column='[Follow-up Schedule]' derivation='None' name='[none:Follow-up Schedule:nk]' pivot='key' type='nominal' />
<column-instance column='[Gender]' derivation='None' name='[none:Gender:nk]' pivot='key' type='nominal' />
<column-instance column='[Interruption Reason]' derivation='None' name='[none:Interruption Reason:nk]' pivot='key' type='nominal' />
<column-instance column='[Missed Vaccine]' derivation='None' name='[none:Missed Vaccine:nk]' pivot='key' type='nominal' />
<column-instance column='[Patient Name]' derivation='None' name='[none:Patient Name:nk]' pivot='key' type='nominal' />
<column-instance column='[Pediatrician]' derivation='None' name='[none:Pediatrician:nk]' pivot='key' type='nominal' />
<column-instance column='[Vaccine Interrupted]' derivation='None' name='[none:Vaccine Interrupted:nk]' pivot='key' type='nominal' />
<column-instance column='[Weekly Appointment]' derivation='None' name='[none:Weekly Appointment:nk]' pivot='key' type='nominal' />
<column-instance column='[Vaccination Stock]' derivation='Sum' name='[sum:Vaccination Stock:ok]' pivot='key' type='ordinal' />
<column-instance column='[Year of Interrruption]' derivation='Sum' name='[sum:Year of Interrruption:ok]' pivot='key' type='ordinal' />
</datasource-dependencies>
<filter class='categorical' column='[federated.1703cgn1pt8d381dlcakf1o14fxu].[Action (Follow-up Schedule,Interruption Reason,Missed Vaccine,Patient Name)]'>
<groupfilter function='crossjoin' user:ui-action-filter='[Action1]' user:ui-enumeration='all' user:ui-marker='enumerate'>
<groupfilter function='level-members' level='[Follow-up Schedule]' />
<groupfilter function='level-members' level='[Interruption Reason]' />
<groupfilter function='level-members' level='[Missed Vaccine]' />
<groupfilter function='level-members' level='[Patient Name]' />
</groupfilter>
</filter>
<filter class='categorical' column='[federated.1703cgn1pt8d381dlcakf1o14fxu].[Action (Follow-up Schedule,Patient Name)]'>
<groupfilter function='crossjoin' user:ui-action-filter='[Action1]' user:ui-enumeration='all' user:ui-marker='enumerate'>
<groupfilter function='level-members' level='[Follow-up Schedule]' />
<groupfilter function='level-members' level='[Patient Name]' />
</groupfilter>
</filter>
<filter class='categorical' column='[federated.1703cgn1pt8d381dlcakf1o14fxu].[Action (Interruption Reason,Vaccine Interrupted)]'>
<groupfilter function='crossjoin' user:ui-action-filter='[Action1]' user:ui-enumeration='all' user:ui-marker='enumerate'>
<groupfilter function='level-members' level='[Interruption Reason]' />
<groupfilter function='level-members' level='[Vaccine Interrupted]' />
</groupfilter>
</filter>
<filter class='categorical' column='[federated.1703cgn1pt8d381dlcakf1o14fxu].[Action (MDY(Today))]'>
<groupfilter function='level-members' level='[md:Calculation_1125618461130928134:ok]' user:ui-action-filter='[Action1]' user:ui-enumeration='all' user:ui-marker='enumerate' />
</filter>
<filter class='categorical' column='[federated.1703cgn1pt8d381dlcakf1o14fxu].[Action (Missed Vaccine)]'>
<groupfilter function='level-members' level='[Missed Vaccine]' user:ui-action-filter='[Action1]' user:ui-enumeration='all' user:ui-marker='enumerate' />
</filter>
<filter class='categorical' column='[federated.1703cgn1pt8d381dlcakf1o14fxu].[Action (Patient Name)]'>
<groupfilter function='level-members' level='[Patient Name]' user:ui-action-filter='[Action1]' user:ui-enumeration='all' user:ui-marker='enumerate' />
</filter>
<filter class='categorical' column='[federated.1703cgn1pt8d381dlcakf1o14fxu].[Action (Patient Name,Weekly Appointment)]'>
<groupfilter function='crossjoin' user:ui-action-filter='[Action3]' user:ui-enumeration='all' user:ui-marker='enumerate'>
<groupfilter function='level-members' level='[Patient Name]' />
<groupfilter function='level-members' level='[Weekly Appointment]' />
</groupfilter>
</filter>
<filter class='categorical' column='[federated.1703cgn1pt8d381dlcakf1o14fxu].[none:Vaccine Interrupted:nk]'>
<groupfilter function='level-members' level='[none:Vaccine Interrupted:nk]' user:ui-enumeration='all' user:ui-marker='enumerate' />
</filter>
<slices>
<column>[federated.1703cgn1pt8d381dlcakf1o14fxu].[Action (Missed Vaccine)]</column>
<column>[federated.1703cgn1pt8d381dlcakf1o14fxu].[none:Vaccine Interrupted:nk]</column>
<column>[federated.1703cgn1pt8d381dlcakf1o14fxu].[Action (Follow-up Schedule,Patient Name)]</column>
<column>[federated.1703cgn1pt8d381dlcakf1o14fxu].[Action (Follow-up Schedule,Interruption Reason,Missed Vaccine,Patient Name)]</column>
<column>[federated.1703cgn1pt8d381dlcakf1o14fxu].[Action (Patient Name)]</column>
<column>[federated.1703cgn1pt8d381dlcakf1o14fxu].[Action (MDY(Today))]</column>
<column>[federated.1703cgn1pt8d381dlcakf1o14fxu].[Action (Interruption Reason,Vaccine Interrupted)]</column>
<column>[federated.1703cgn1pt8d381dlcakf1o14fxu].[Action (Patient Name,Weekly Appointment)]</column>
</slices>
<aggregation value='true' />
</view>
<style>
<style-rule element='axis'>
<format attr='border-color' value='#b0b0b0' />
<format attr='border-width' value='1' />
</style-rule>
<style-rule element='cell'>
<format attr='width' value='5' />
</style-rule>
<style-rule element='header'>
<format attr='width' field='[federated.1703cgn1pt8d381dlcakf1o14fxu].[none:Interruption Reason:nk]' value='156' />
<format attr='width' field='[federated.1703cgn1pt8d381dlcakf1o14fxu].[none:Patient Name:nk]' value='164' />
</style-rule>
<style-rule element='label'>
<format attr='text-align' value='center' />
</style-rule>
<style-rule element='table'>
<format attr='row-levels' value='16' />
<format attr='row-horiz-levels' value='16' />
<format attr='col-levels' value='16' />
</style-rule>
</style>
<panes>
<pane id='1' selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<style>
<style-rule element='pane'>
<format attr='minwidth' value='-1' />
<format attr='maxwidth' value='-1' />
<format attr='aspect' value='1' />
<format attr='minwidth' value='-1' />
<format attr='maxwidth' value='-1' />
<format attr='aspect' value='1' />
</style-rule>
</style>
</pane>
</panes>
<rows>([federated.1703cgn1pt8d381dlcakf1o14fxu].[none:Patient Name:nk] / ([federated.1703cgn1pt8d381dlcakf1o14fxu].[none:BirthDate:ok] / ([federated.1703cgn1pt8d381dlcakf1o14fxu].[none:Gender:nk] / ([federated.1703cgn1pt8d381dlcakf1o14fxu].[none:Vaccine Interrupted:nk] / ([federated.1703cgn1pt8d381dlcakf1o14fxu].[sum:Year of Interrruption:ok] / ([federated.1703cgn1pt8d381dlcakf1o14fxu].[none:Interruption Reason:nk] / ([federated.1703cgn1pt8d381dlcakf1o14fxu].[none:Pediatrician:nk] / ([federated.1703cgn1pt8d381dlcakf1o14fxu].[none:Missed Vaccine:nk] / ([federated.1703cgn1pt8d381dlcakf1o14fxu].[none:Follow-up Schedule:nk] / ([federated.1703cgn1pt8d381dlcakf1o14fxu].[none:Weekly Appointment:nk] / [federated.1703cgn1pt8d381dlcakf1o14fxu].[sum:Vaccination Stock:ok]))))))))))</rows>
<cols />
</table>
<simple-id uuid='{2C7EE975-35F2-4F0E-9B9C-E3CE7FFFD8CE}' />
</worksheet>
<worksheet name='Follow up Schedule'>
<layout-options>
<title>
<formatted-text>
<run bold='true' fontalignment='1' fontsize='16'>Follow-up Appointments</run>
</formatted-text>
</title>
</layout-options>
<table>
<view>
<datasources>
<datasource caption='Sheet1 (Project_1_data1)' name='federated.1703cgn1pt8d381dlcakf1o14fxu' />
</datasources>
<datasource-dependencies datasource='federated.1703cgn1pt8d381dlcakf1o14fxu'>
<column datatype='string' name='[Follow-up Schedule]' role='dimension' type='nominal' />
<column datatype='string' name='[Interruption Reason]' role='dimension' type='nominal' />
<column datatype='string' name='[Missed Vaccine]' role='dimension' type='nominal' />
<column datatype='string' name='[Patient Name]' role='dimension' type='nominal' />
<column-instance column='[Follow-up Schedule]' derivation='None' name='[none:Follow-up Schedule:nk]' pivot='key' type='nominal' />
<column-instance column='[Interruption Reason]' derivation='None' name='[none:Interruption Reason:nk]' pivot='key' type='nominal' />
<column-instance column='[Missed Vaccine]' derivation='None' name='[none:Missed Vaccine:nk]' pivot='key' type='nominal' />
<column-instance column='[Patient Name]' derivation='None' name='[none:Patient Name:nk]' pivot='key' type='nominal' />
</datasource-dependencies>
<filter class='categorical' column='[federated.1703cgn1pt8d381dlcakf1o14fxu].[none:Follow-up Schedule:nk]'>
<groupfilter from='"3/15/2020 @ 18:00PM"' function='range' level='[none:Follow-up Schedule:nk]' to='"6/12/2020 @ 18:00PM"' user:ui-domain='relevant' user:ui-enumeration='inclusive' user:ui-marker='enumerate' />
</filter>
<filter class='categorical' column='[federated.1703cgn1pt8d381dlcakf1o14fxu].[none:Interruption Reason:nk]'>
<groupfilter function='union' user:ui-domain='relevant' user:ui-enumeration='inclusive' user:ui-marker='enumerate'>
<groupfilter function='member' level='[none:Interruption Reason:nk]' member='"Birth Control"' />
<groupfilter function='member' level='[none:Interruption Reason:nk]' member='"Chicken Pox"' />
<groupfilter function='member' level='[none:Interruption Reason:nk]' member='"Measles"' />
<groupfilter function='member' level='[none:Interruption Reason:nk]' member='"Stomach Flu"' />
</groupfilter>
</filter>
<slices>
<column>[federated.1703cgn1pt8d381dlcakf1o14fxu].[none:Follow-up Schedule:nk]</column>
<column>[federated.1703cgn1pt8d381dlcakf1o14fxu].[none:Interruption Reason:nk]</column>
</slices>
<aggregation value='true' />
</view>
<style>
<style-rule element='header'>
<format attr='width' field='[federated.1703cgn1pt8d381dlcakf1o14fxu].[none:Interruption Reason:nk]' value='128' />
<format attr='width' field='[federated.1703cgn1pt8d381dlcakf1o14fxu].[none:Missed Vaccine:nk]' value='100' />
<format attr='width' field='[federated.1703cgn1pt8d381dlcakf1o14fxu].[none:Follow-up Schedule:nk]' value='136' />
<format attr='width' field='[federated.1703cgn1pt8d381dlcakf1o14fxu].[none:Patient Name:nk]' value='112' />
<format attr='background-color' data-class='subtotal' scope='rows' value='#00000000' />
</style-rule>
<style-rule element='field-labels'>
<format attr='font-weight' value='bold' />
<format attr='font-size' value='10' />
</style-rule>
<style-rule element='label'>
<format attr='text-align' field='[federated.1703cgn1pt8d381dlcakf1o14fxu].[none:Missed Vaccine:nk]' value='center' />
<format attr='text-align' field='[federated.1703cgn1pt8d381dlcakf1o14fxu].[none:Interruption Reason:nk]' value='center' />
<format attr='text-align' field='[federated.1703cgn1pt8d381dlcakf1o14fxu].[none:Follow-up Schedule:nk]' value='center' />
<format attr='text-align' field='[federated.1703cgn1pt8d381dlcakf1o14fxu].[none:Patient Name:nk]' value='center' />
</style-rule>
</style>
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Square' />
<style>
<style-rule element='mark'>
<format attr='mark-labels-cull' value='true' />
<format attr='mark-labels-line-first' value='true' />
<format attr='mark-labels-line-last' value='true' />
<format attr='mark-labels-range-min' value='true' />
<format attr='mark-labels-range-max' value='true' />
<format attr='mark-labels-mode' value='all' />
<format attr='mark-labels-range-scope' value='pane' />
<format attr='mark-labels-range-field' value='' />
<format attr='mark-labels-show' value='false' />
<format attr='has-stroke' value='false' />
<format attr='mark-transparency' value='255' />
</style-rule>
<style-rule element='pane'>
<format attr='minwidth' value='-1' />
<format attr='maxwidth' value='-1' />
</style-rule>