-
Notifications
You must be signed in to change notification settings - Fork 0
/
Mission 4 Map Chart, Bar Chart, Interactive Dashboard.twb
1697 lines (1696 loc) · 103 KB
/
Mission 4 Map Chart, Bar Chart, Interactive 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.19.1211.1636 -->
<workbook original-version='18.1' source-build='2019.4.1 (20194.19.1211.1636)' source-platform='win' version='18.1' xmlns:user='http://www.tableausoftware.com/xml/user'>
<document-format-change-manifest>
<AutoCreateAndUpdateDSDPhoneLayouts ignorable='true' predowngraded='true' />
<IntuitiveSorting />
<IntuitiveSorting_SP2 />
<MapboxVectorStylesAndLayers />
<SheetIdentifierTracking ignorable='true' predowngraded='true' />
<WindowsPersistSimpleIdentifiers />
</document-format-change-manifest>
<preferences>
<preference name='ui.encoding.shelf.height' value='24' />
<preference name='ui.shelf.height' value='26' />
</preferences>
<datasources>
<datasource caption='Orders (Mission 4 Dataset for Global Super Store)' inline='true' name='federated.0tffrnm0gz71p11469d1v1hxv0s1' version='18.1'>
<connection class='federated'>
<named-connections>
<named-connection caption='Mission 4 Dataset for Global Super Store' name='excel-direct.1rbhihe0er1v0u14fv4l11v5pzs6'>
<connection class='excel-direct' cleaning='no' compat='no' dataRefreshTime='' filename='C:/Users/Violet/Documents/DATA MODELLING/Mission 4 Dataset for Global Super Store.xlsx' interpretationMode='0' password='' server='' validate='no' />
</named-connection>
</named-connections>
<relation connection='excel-direct.1rbhihe0er1v0u14fv4l11v5pzs6' name='Orders' table='[Orders$]' type='table'>
<columns gridOrigin='A1:X10001:no:A1:X10001:0' header='yes' outcome='6'>
<column datatype='integer' name='Row ID' ordinal='0' />
<column datatype='string' name='Order ID' ordinal='1' />
<column datatype='date' date-parse-format='dd-MM-yyyy' name='Order Date' ordinal='2' />
<column datatype='date' date-parse-format='dd-MM-yyyy' name='Ship Date' ordinal='3' />
<column datatype='string' name='Ship Mode' ordinal='4' />
<column datatype='string' name='Customer ID' ordinal='5' />
<column datatype='string' name='Customer Name' ordinal='6' />
<column datatype='string' name='Segment' ordinal='7' />
<column datatype='string' name='City' ordinal='8' />
<column datatype='string' name='State' ordinal='9' />
<column datatype='string' name='Country' ordinal='10' />
<column datatype='integer' name='Postal Code' ordinal='11' />
<column datatype='string' name='Market' ordinal='12' />
<column datatype='string' name='Region' ordinal='13' />
<column datatype='string' name='Product ID' ordinal='14' />
<column datatype='string' name='Category' ordinal='15' />
<column datatype='string' name='Sub-Category' ordinal='16' />
<column datatype='string' name='Product Name' ordinal='17' />
<column datatype='real' name='Sales' ordinal='18' />
<column datatype='integer' name='Quantity' ordinal='19' />
<column datatype='real' name='Discount' ordinal='20' />
<column datatype='real' name='Profit' ordinal='21' />
<column datatype='real' name='Shipping Cost' ordinal='22' />
<column datatype='string' name='Order Priority' ordinal='23' />
</columns>
</relation>
<metadata-records>
<metadata-record class='capability'>
<remote-name />
<remote-type>0</remote-type>
<parent-name>[Orders]</parent-name>
<remote-alias />
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='integer' name='context'>0</attribute>
<attribute datatype='string' name='gridOrigin'>"A1:X10001:no:A1:X10001:0"</attribute>
<attribute datatype='boolean' name='header'>true</attribute>
<attribute datatype='integer' name='outcome'>6</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Row ID</remote-name>
<remote-type>20</remote-type>
<local-name>[Row ID]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Row ID</remote-alias>
<ordinal>0</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>Order ID</remote-name>
<remote-type>130</remote-type>
<local-name>[Order ID]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Order ID</remote-alias>
<ordinal>1</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>Order Date</remote-name>
<remote-type>7</remote-type>
<local-name>[Order Date]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Order Date</remote-alias>
<ordinal>2</ordinal>
<local-type>date</local-type>
<aggregation>Year</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
</metadata-record>
<metadata-record class='column'>
<remote-name>Ship Date</remote-name>
<remote-type>7</remote-type>
<local-name>[Ship Date]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Ship Date</remote-alias>
<ordinal>3</ordinal>
<local-type>date</local-type>
<aggregation>Year</aggregation>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
</metadata-record>
<metadata-record class='column'>
<remote-name>Ship Mode</remote-name>
<remote-type>130</remote-type>
<local-name>[Ship Mode]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Ship Mode</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>Customer ID</remote-name>
<remote-type>130</remote-type>
<local-name>[Customer ID]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Customer ID</remote-alias>
<ordinal>5</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>Customer Name</remote-name>
<remote-type>130</remote-type>
<local-name>[Customer Name]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Customer Name</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>Segment</remote-name>
<remote-type>130</remote-type>
<local-name>[Segment]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Segment</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>City</remote-name>
<remote-type>130</remote-type>
<local-name>[City]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>City</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>State</remote-name>
<remote-type>130</remote-type>
<local-name>[State]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>State</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>Country</remote-name>
<remote-type>130</remote-type>
<local-name>[Country]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Country</remote-alias>
<ordinal>10</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>Postal Code</remote-name>
<remote-type>20</remote-type>
<local-name>[Postal Code]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Postal Code</remote-alias>
<ordinal>11</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>Market</remote-name>
<remote-type>130</remote-type>
<local-name>[Market]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Market</remote-alias>
<ordinal>12</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>Region</remote-name>
<remote-type>130</remote-type>
<local-name>[Region]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Region</remote-alias>
<ordinal>13</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>Product ID</remote-name>
<remote-type>130</remote-type>
<local-name>[Product ID]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Product ID</remote-alias>
<ordinal>14</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>Category</remote-name>
<remote-type>130</remote-type>
<local-name>[Category]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Category</remote-alias>
<ordinal>15</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>Sub-Category</remote-name>
<remote-type>130</remote-type>
<local-name>[Sub-Category]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Sub-Category</remote-alias>
<ordinal>16</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>Product Name</remote-name>
<remote-type>130</remote-type>
<local-name>[Product Name]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Product Name</remote-alias>
<ordinal>17</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>Sales</remote-name>
<remote-type>5</remote-type>
<local-name>[Sales]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Sales</remote-alias>
<ordinal>18</ordinal>
<local-type>real</local-type>
<aggregation>Sum</aggregation>
<precision>15</precision>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"R8"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Quantity</remote-name>
<remote-type>20</remote-type>
<local-name>[Quantity]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Quantity</remote-alias>
<ordinal>19</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>Discount</remote-name>
<remote-type>5</remote-type>
<local-name>[Discount]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Discount</remote-alias>
<ordinal>20</ordinal>
<local-type>real</local-type>
<aggregation>Sum</aggregation>
<precision>15</precision>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"R8"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Profit</remote-name>
<remote-type>5</remote-type>
<local-name>[Profit]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Profit</remote-alias>
<ordinal>21</ordinal>
<local-type>real</local-type>
<aggregation>Sum</aggregation>
<precision>15</precision>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"R8"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Shipping Cost</remote-name>
<remote-type>5</remote-type>
<local-name>[Shipping Cost]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Shipping Cost</remote-alias>
<ordinal>22</ordinal>
<local-type>real</local-type>
<aggregation>Sum</aggregation>
<precision>15</precision>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='DebugRemoteType'>"R8"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Order Priority</remote-name>
<remote-type>130</remote-type>
<local-name>[Order Priority]</local-name>
<parent-name>[Orders]</parent-name>
<remote-alias>Order Priority</remote-alias>
<ordinal>23</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-records>
</connection>
<column aggregation='None' datatype='string' name='[City]' role='dimension' semantic-role='[City].[Name]' type='nominal' />
<column aggregation='None' datatype='string' name='[Country]' role='dimension' semantic-role='[Country].[ISO3166_2]' type='nominal' />
<column datatype='integer' name='[Number of Records]' role='measure' type='quantitative' user:auto-column='numrec'>
<calculation class='tableau' formula='1' />
</column>
<column aggregation='None' datatype='integer' default-format='*00000' name='[Postal Code]' role='dimension' semantic-role='[ZipCode].[Name]' type='ordinal' />
<column datatype='integer' name='[Row ID]' role='dimension' type='ordinal' />
<column aggregation='None' datatype='string' name='[State]' role='dimension' semantic-role='[State].[Name]' type='nominal' />
<column-instance column='[Country]' derivation='None' name='[none:Country:nk]' pivot='key' type='nominal' />
<group caption='Action (Country)' hidden='true' name='[Action (Country)]' name-style='unqualified' user:auto-column='sheet_link'>
<groupfilter function='crossjoin'>
<groupfilter function='level-members' level='[Country]' />
</groupfilter>
</group>
<layout dim-ordering='alphabetic' dim-percentage='0.609959' measure-ordering='alphabetic' measure-percentage='0.390042' show-structure='true' />
<style>
<style-rule element='mark'>
<encoding attr='color' field='[none:Country:nk]' type='palette'>
<map to='#499894'>
<bucket>"Democratic Republic of the Congo"</bucket>
</map>
<map to='#499894'>
<bucket>"Niger"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Algeria"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Liberia"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Togo"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Cameroon"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Mauritania"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Zimbabwe"</bucket>
</map>
<map to='#79706e'>
<bucket>"Eritrea"</bucket>
</map>
<map to='#79706e'>
<bucket>"Senegal"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Djibouti"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Nigeria"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"Central African Republic"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"Morocco"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Kenya"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Swaziland"</bucket>
</map>
<map to='#a0cbe8'>
<bucket>"Angola"</bucket>
</map>
<map to='#a0cbe8'>
<bucket>"Libya"</bucket>
</map>
<map to='#a0cbe8'>
<bucket>"Tunisia"</bucket>
</map>
<map to='#b07aa1'>
<bucket>"Guinea"</bucket>
</map>
<map to='#b07aa1'>
<bucket>"South Sudan"</bucket>
</map>
<map to='#b6992d'>
<bucket>"Chad"</bucket>
</map>
<map to='#b6992d'>
<bucket>"Mozambique"</bucket>
</map>
<map to='#bab0ac'>
<bucket>"Ethiopia"</bucket>
</map>
<map to='#bab0ac'>
<bucket>"Sierra Leone"</bucket>
</map>
<map to='#d37295'>
<bucket>"Gabon"</bucket>
</map>
<map to='#d37295'>
<bucket>"Somalia"</bucket>
</map>
<map to='#d4a6c8'>
<bucket>"Guinea-Bissau"</bucket>
</map>
<map to='#d4a6c8'>
<bucket>"Sudan"</bucket>
</map>
<map to='#d7b5a6'>
<bucket>"Lesotho"</bucket>
</map>
<map to='#d7b5a6'>
<bucket>"Tanzania"</bucket>
</map>
<map to='#e15759'>
<bucket>"Egypt"</bucket>
</map>
<map to='#e15759'>
<bucket>"Republic of the Congo"</bucket>
</map>
<map to='#f1ce63'>
<bucket>"Cote d'Ivoire"</bucket>
</map>
<map to='#f1ce63'>
<bucket>"Namibia"</bucket>
</map>
<map to='#f28e2b'>
<bucket>"Benin"</bucket>
</map>
<map to='#f28e2b'>
<bucket>"Madagascar"</bucket>
</map>
<map to='#f28e2b'>
<bucket>"Uganda"</bucket>
</map>
<map to='#fabfd2'>
<bucket>"Ghana"</bucket>
</map>
<map to='#fabfd2'>
<bucket>"South Africa"</bucket>
</map>
<map to='#ff9d9a'>
<bucket>"Equatorial Guinea"</bucket>
</map>
<map to='#ff9d9a'>
<bucket>"Rwanda"</bucket>
</map>
<map to='#ffbe7d'>
<bucket>"Burundi"</bucket>
</map>
<map to='#ffbe7d'>
<bucket>"Mali"</bucket>
</map>
<map to='#ffbe7d'>
<bucket>"Zambia"</bucket>
</map>
</encoding>
</style-rule>
</style>
<semantic-values>
<semantic-value key='[Country].[Name]' value='"Kenya"' />
</semantic-values>
<date-options start-of-week='monday' />
</datasource>
</datasources>
<mapsources>
<mapsource name='Tableau' />
</mapsources>
<worksheets>
<worksheet name='Profits in Africa'>
<layout-options>
<title>
<formatted-text>
<run bold='true' fontcolor='#005500' fontname='Trebuchet MS'>GLOBAL SUPER STORE PROFITS IN AFRICA</run>
</formatted-text>
</title>
</layout-options>
<table>
<view>
<datasources>
<datasource caption='Orders (Mission 4 Dataset for Global Super Store)' name='federated.0tffrnm0gz71p11469d1v1hxv0s1' />
</datasources>
<datasource-dependencies datasource='federated.0tffrnm0gz71p11469d1v1hxv0s1'>
<column aggregation='None' datatype='string' name='[Country]' role='dimension' semantic-role='[Country].[ISO3166_2]' type='nominal' />
<column datatype='real' name='[Profit]' role='measure' type='quantitative' />
<column datatype='string' name='[Region]' role='dimension' type='nominal' />
<column datatype='real' name='[Shipping Cost]' role='measure' type='quantitative' />
<column-instance column='[Country]' derivation='None' name='[none:Country:nk]' pivot='key' type='nominal' />
<column-instance column='[Region]' derivation='None' name='[none:Region:nk]' pivot='key' type='nominal' />
<column-instance column='[Profit]' derivation='Sum' name='[sum:Profit:qk]' pivot='key' type='quantitative' />
<column-instance column='[Shipping Cost]' derivation='Sum' name='[sum:Shipping Cost:qk]' pivot='key' type='quantitative' />
</datasource-dependencies>
<filter class='categorical' column='[federated.0tffrnm0gz71p11469d1v1hxv0s1].[none:Region:nk]'>
<groupfilter function='member' level='[none:Region:nk]' member='"Africa"' user:ui-domain='relevant' user:ui-enumeration='inclusive' user:ui-marker='enumerate' />
</filter>
<filter class='quantitative' column='[federated.0tffrnm0gz71p11469d1v1hxv0s1].[sum:Profit:qk]' included-values='in-range'>
<min>500.0</min>
</filter>
<shelf-sorts>
<shelf-sort-v2 dimension-to-sort='[federated.0tffrnm0gz71p11469d1v1hxv0s1].[none:Country:nk]' direction='DESC' is-on-innermost-dimension='true' measure-to-sort-by='[federated.0tffrnm0gz71p11469d1v1hxv0s1].[sum:Profit:qk]' shelf='rows' />
</shelf-sorts>
<slices>
<column>[federated.0tffrnm0gz71p11469d1v1hxv0s1].[none:Region:nk]</column>
<column>[federated.0tffrnm0gz71p11469d1v1hxv0s1].[sum:Profit:qk]</column>
</slices>
<aggregation value='true' />
</view>
<style />
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<encodings>
<color column='[federated.0tffrnm0gz71p11469d1v1hxv0s1].[none:Country:nk]' />
<lod column='[federated.0tffrnm0gz71p11469d1v1hxv0s1].[sum:Shipping Cost:qk]' />
<text column='[federated.0tffrnm0gz71p11469d1v1hxv0s1].[sum:Profit:qk]' />
</encodings>
<style>
<style-rule element='mark'>
<format attr='mark-labels-show' value='true' />
<format attr='mark-labels-cull' value='true' />
</style-rule>
</style>
</pane>
</panes>
<rows>[federated.0tffrnm0gz71p11469d1v1hxv0s1].[none:Country:nk]</rows>
<cols>[federated.0tffrnm0gz71p11469d1v1hxv0s1].[sum:Profit:qk]</cols>
</table>
<simple-id uuid='{8279AE63-2305-404B-8F9D-35A96E7200C6}' />
</worksheet>
<worksheet name='Sales in Africa'>
<layout-options>
<title>
<formatted-text>
<run bold='true' fontcolor='#005500' fontname='Trebuchet MS'>GLOBAL SUPER STORE SALES IN AFRICA</run>
</formatted-text>
</title>
</layout-options>
<table>
<view>
<datasources>
<datasource caption='Orders (Mission 4 Dataset for Global Super Store)' name='federated.0tffrnm0gz71p11469d1v1hxv0s1' />
</datasources>
<mapsources>
<mapsource name='Tableau' />
</mapsources>
<datasource-dependencies datasource='federated.0tffrnm0gz71p11469d1v1hxv0s1'>
<column aggregation='None' datatype='string' name='[Country]' role='dimension' semantic-role='[Country].[ISO3166_2]' type='nominal' />
<column datatype='integer' name='[Quantity]' role='measure' type='quantitative' />
<column datatype='string' name='[Region]' role='dimension' type='nominal' />
<column datatype='real' name='[Sales]' role='measure' type='quantitative' />
<column-instance column='[Country]' derivation='None' name='[none:Country:nk]' pivot='key' type='nominal' />
<column-instance column='[Region]' derivation='None' name='[none:Region:nk]' pivot='key' type='nominal' />
<column-instance column='[Quantity]' derivation='Sum' name='[sum:Quantity:qk]' pivot='key' type='quantitative' />
<column-instance column='[Sales]' derivation='Sum' name='[sum:Sales:qk]' pivot='key' type='quantitative' />
</datasource-dependencies>
<filter class='categorical' column='[federated.0tffrnm0gz71p11469d1v1hxv0s1].[none:Region:nk]'>
<groupfilter function='member' level='[none:Region:nk]' member='"Africa"' user:ui-domain='relevant' user:ui-enumeration='inclusive' user:ui-marker='enumerate' />
</filter>
<slices>
<column>[federated.0tffrnm0gz71p11469d1v1hxv0s1].[none:Region:nk]</column>
</slices>
<aggregation value='true' />
</view>
<style>
<style-rule element='map'>
<format attr='washout' value='0.0' />
</style-rule>
</style>
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<encodings>
<color column='[federated.0tffrnm0gz71p11469d1v1hxv0s1].[none:Country:nk]' />
<size column='[federated.0tffrnm0gz71p11469d1v1hxv0s1].[sum:Sales:qk]' />
<lod column='[federated.0tffrnm0gz71p11469d1v1hxv0s1].[none:Country:nk]' />
<lod column='[federated.0tffrnm0gz71p11469d1v1hxv0s1].[sum:Quantity:qk]' />
</encodings>
</pane>
</panes>
<rows>[federated.0tffrnm0gz71p11469d1v1hxv0s1].[Latitude (generated)]</rows>
<cols>[federated.0tffrnm0gz71p11469d1v1hxv0s1].[Longitude (generated)]</cols>
</table>
<simple-id uuid='{4C8C506E-39B0-45B3-8955-A406840043F0}' />
</worksheet>
</worksheets>
<dashboards>
<dashboard name='Sales & Profit in Africa DashBoard'>
<layout-options>
<title>
<formatted-text>
<run bold='true' fontcolor='#59a14f' fontname='Trebuchet MS'>GLOBAL SUPER STORE SALES IN AFRICA DASHBOARD</run>
</formatted-text>
</title>
</layout-options>
<style />
<size maxheight='800' maxwidth='1000' minheight='800' minwidth='1000' />
<zones>
<zone h='100000' id='4' type='layout-basic' w='100000' x='0' y='0'>
<zone h='98000' id='11' param='vert' type='layout-flow' w='98400' x='800' y='1000'>
<zone h='4500' id='12' type='title' w='98400' x='800' y='1000'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
</zone-style>
</zone>
<zone h='93500' id='7' param='horz' type='layout-flow' w='98400' x='800' y='5500'>
<zone h='93500' id='5' type='layout-basic' w='98400' x='800' y='5500'>
<zone h='46751' id='3' name='Profits in Africa' w='98400' x='800' y='52249'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
</zone-style>
</zone>
<zone h='46749' id='9' name='Sales in Africa' w='98400' x='800' y='5500'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
</zone-style>
</zone>
</zone>
</zone>
</zone>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='8' />
</zone-style>
</zone>
</zones>
<devicelayouts>
<devicelayout auto-generated='true' name='Phone'>
<layout-options>
<title>
<formatted-text>
<run bold='true' fontcolor='#59a14f' fontname='Trebuchet MS'>GLOBAL SUPER STORE SALES IN AFRICA DASHBOARD</run>
</formatted-text>
</title>
</layout-options>
<size maxheight='700' minheight='700' sizing-mode='vscroll' />
<zones>
<zone h='100000' id='20' type='layout-basic' w='100000' x='0' y='0'>
<zone h='98000' id='19' param='vert' type='layout-flow' w='98400' x='800' y='1000'>
<zone h='4500' id='12' type='title' w='98400' x='800' y='1000'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
<format attr='padding' value='0' />
</zone-style>
</zone>
<zone fixed-size='280' h='46749' id='9' is-fixed='true' name='Sales in Africa' w='98400' x='800' y='5500'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
<format attr='padding' value='0' />
</zone-style>
</zone>
<zone fixed-size='280' h='46751' id='3' is-fixed='true' name='Profits in Africa' w='98400' x='800' y='52249'>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='4' />
<format attr='padding' value='0' />
</zone-style>
</zone>
</zone>
<zone-style>
<format attr='border-color' value='#000000' />
<format attr='border-style' value='none' />
<format attr='border-width' value='0' />
<format attr='margin' value='8' />
</zone-style>
</zone>
</zones>
</devicelayout>
</devicelayouts>
<simple-id uuid='{A9DE4599-6398-46FD-AB24-457B91C36C5B}' />
</dashboard>
</dashboards>
<windows source-height='30'>
<window class='worksheet' name='Sales in Africa'>
<cards>
<edge name='left'>
<strip size='160'>
<card type='pages' />
<card type='filters' />
<card type='marks' />
</strip>
</edge>
<edge name='top'>
<strip size='2147483647'>
<card type='columns' />
</strip>
<strip size='2147483647'>
<card type='rows' />
</strip>
<strip size='31'>
<card type='title' />
</strip>
</edge>
</cards>
<viewpoint>
<highlight>
<color-one-way>
<field>[federated.0tffrnm0gz71p11469d1v1hxv0s1].[none:Country:nk]</field>
<field>[federated.0tffrnm0gz71p11469d1v1hxv0s1].[none:Region:nk]</field>
</color-one-way>
</highlight>
</viewpoint>
<simple-id uuid='{2A44B145-AA76-4926-B564-A67DD6E9F74A}' />
</window>
<window class='worksheet' name='Profits in Africa'>
<cards>
<edge name='left'>
<strip size='160'>
<card type='pages' />
<card type='filters' />
<card type='marks' />
</strip>
</edge>
<edge name='top'>
<strip size='2147483647'>
<card type='columns' />
</strip>
<strip size='2147483647'>
<card type='rows' />
</strip>
<strip size='31'>
<card type='title' />
</strip>
</edge>
<edge name='right'>
<strip size='160'>
<card pane-specification-id='0' param='[federated.0tffrnm0gz71p11469d1v1hxv0s1].[none:Country:nk]' type='color' />
</strip>
</edge>
</cards>
<viewpoint>
<highlight>
<color-one-way>
<field>[federated.0tffrnm0gz71p11469d1v1hxv0s1].[none:Country:nk]</field>
<field>[federated.0tffrnm0gz71p11469d1v1hxv0s1].[none:Region:nk]</field>
</color-one-way>
</highlight>
</viewpoint>
<simple-id uuid='{99F54E4A-8D60-43DA-8851-417AB4B61217}' />
</window>
<window class='dashboard' maximized='true' name='Sales & Profit in Africa DashBoard'>
<viewpoints>
<viewpoint name='Profits in Africa' />
<viewpoint name='Sales in Africa'>
<zoom type='entire-view' />
<default-map-tool-selection tool='1' />
</viewpoint>
</viewpoints>
<active id='9' />
<simple-id uuid='{CA122AAF-C571-4599-80E8-7F7F44795700}' />
</window>
</windows>
<thumbnails>
<thumbnail height='192' name='Profits in Africa' width='192'>
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