forked from J1ahw/PROJECT_4
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Hanwen_viz.twb
1383 lines (1382 loc) · 83.9 KB
/
Hanwen_viz.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 20231.23.0511.1508 -->
<workbook original-version='18.1' source-build='2023.1.2 (20231.23.0511.1508)' source-platform='win' version='18.1' xmlns:user='http://www.tableausoftware.com/xml/user'>
<document-format-change-manifest>
<_.fcp.AnimationOnByDefault.true...AnimationOnByDefault />
<MapboxVectorStylesAndLayers />
<_.fcp.MarkAnimation.true...MarkAnimation />
<_.fcp.ObjectModelEncapsulateLegacy.true...ObjectModelEncapsulateLegacy />
<_.fcp.ObjectModelTableType.true...ObjectModelTableType />
<_.fcp.SchemaViewerObjectModel.true...SchemaViewerObjectModel />
<SheetIdentifierTracking />
<WindowsPersistSimpleIdentifiers />
</document-format-change-manifest>
<preferences>
<preference name='ui.encoding.shelf.height' value='24' />
<preference name='ui.shelf.height' value='26' />
</preferences>
<_.fcp.AnimationOnByDefault.false...style>
<_.fcp.AnimationOnByDefault.false..._.fcp.MarkAnimation.true...style-rule element='animation'>
<_.fcp.AnimationOnByDefault.false...format attr='animation-on' value='ao-on' />
</_.fcp.AnimationOnByDefault.false..._.fcp.MarkAnimation.true...style-rule>
</_.fcp.AnimationOnByDefault.false...style>
<datasources>
<datasource caption='CleanedDataWithLocation' inline='true' name='federated.0uy9fp41lpjrik17kvm30176wfdg' version='18.1'>
<connection class='federated'>
<named-connections>
<named-connection caption='CleanedDataWithLocation' name='textscan.05q7d8m1kg648w122s8og1enhwvw'>
<connection class='textscan' directory='C:/Users/84122/Documents/GitHub/PROJECT_4/DATA_SET' filename='CleanedDataWithLocation.csv' password='' server='' />
</named-connection>
</named-connections>
<_.fcp.ObjectModelEncapsulateLegacy.false...relation connection='textscan.05q7d8m1kg648w122s8og1enhwvw' name='CleanedDataWithLocation.csv' table='[CleanedDataWithLocation#csv]' type='table'>
<columns character-set='UTF-8' header='yes' locale='en_US' separator=','>
<column datatype='integer' name='Marital status' ordinal='0' />
<column datatype='integer' name='Course' ordinal='1' />
<column datatype='integer' name='Daytime/evening attendance' ordinal='2' />
<column datatype='integer' name='Nationality' ordinal='3' />
<column datatype='integer' name='Mother qualification' ordinal='4' />
<column datatype='integer' name='Father qualification' ordinal='5' />
<column datatype='integer' name='Gender' ordinal='6' />
<column datatype='integer' name='Scholarship holder' ordinal='7' />
<column datatype='integer' name='International' ordinal='8' />
<column datatype='integer' name='Age at enrollment' ordinal='9' />
<column datatype='real' name='GDP' ordinal='10' />
<column datatype='string' name='Target' ordinal='11' />
<column datatype='string' name='Country' ordinal='12' />
<column datatype='real' name='Latitude' ordinal='13' />
<column datatype='real' name='Longitude' ordinal='14' />
</columns>
</_.fcp.ObjectModelEncapsulateLegacy.false...relation>
<_.fcp.ObjectModelEncapsulateLegacy.true...relation connection='textscan.05q7d8m1kg648w122s8og1enhwvw' name='CleanedDataWithLocation.csv' table='[CleanedDataWithLocation#csv]' type='table'>
<columns character-set='UTF-8' header='yes' locale='en_US' separator=','>
<column datatype='integer' name='Marital status' ordinal='0' />
<column datatype='integer' name='Course' ordinal='1' />
<column datatype='integer' name='Daytime/evening attendance' ordinal='2' />
<column datatype='integer' name='Nationality' ordinal='3' />
<column datatype='integer' name='Mother qualification' ordinal='4' />
<column datatype='integer' name='Father qualification' ordinal='5' />
<column datatype='integer' name='Gender' ordinal='6' />
<column datatype='integer' name='Scholarship holder' ordinal='7' />
<column datatype='integer' name='International' ordinal='8' />
<column datatype='integer' name='Age at enrollment' ordinal='9' />
<column datatype='real' name='GDP' ordinal='10' />
<column datatype='string' name='Target' ordinal='11' />
<column datatype='string' name='Country' ordinal='12' />
<column datatype='real' name='Latitude' ordinal='13' />
<column datatype='real' name='Longitude' ordinal='14' />
</columns>
</_.fcp.ObjectModelEncapsulateLegacy.true...relation>
<metadata-records>
<metadata-record class='capability'>
<remote-name />
<remote-type>0</remote-type>
<parent-name>[CleanedDataWithLocation.csv]</parent-name>
<remote-alias />
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='string' name='character-set'>"UTF-8"</attribute>
<attribute datatype='string' name='collation'>"en_US"</attribute>
<attribute datatype='string' name='field-delimiter'>","</attribute>
<attribute datatype='string' name='header-row'>"true"</attribute>
<attribute datatype='string' name='locale'>"en_US"</attribute>
<attribute datatype='string' name='single-char'>""</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Marital status</remote-name>
<remote-type>20</remote-type>
<local-name>[Marital status]</local-name>
<parent-name>[CleanedDataWithLocation.csv]</parent-name>
<remote-alias>Marital status</remote-alias>
<ordinal>0</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CleanedDataWithLocation.csv_B1331DB0FD6C4601997C5DA63984C469]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Course</remote-name>
<remote-type>20</remote-type>
<local-name>[Course]</local-name>
<parent-name>[CleanedDataWithLocation.csv]</parent-name>
<remote-alias>Course</remote-alias>
<ordinal>1</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CleanedDataWithLocation.csv_B1331DB0FD6C4601997C5DA63984C469]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Daytime/evening attendance</remote-name>
<remote-type>20</remote-type>
<local-name>[Daytime/evening attendance]</local-name>
<parent-name>[CleanedDataWithLocation.csv]</parent-name>
<remote-alias>Daytime/evening attendance</remote-alias>
<ordinal>2</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CleanedDataWithLocation.csv_B1331DB0FD6C4601997C5DA63984C469]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Nationality</remote-name>
<remote-type>20</remote-type>
<local-name>[Nationality]</local-name>
<parent-name>[CleanedDataWithLocation.csv]</parent-name>
<remote-alias>Nationality</remote-alias>
<ordinal>3</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CleanedDataWithLocation.csv_B1331DB0FD6C4601997C5DA63984C469]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Mother qualification</remote-name>
<remote-type>20</remote-type>
<local-name>[Mother qualification]</local-name>
<parent-name>[CleanedDataWithLocation.csv]</parent-name>
<remote-alias>Mother qualification</remote-alias>
<ordinal>4</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CleanedDataWithLocation.csv_B1331DB0FD6C4601997C5DA63984C469]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Father qualification</remote-name>
<remote-type>20</remote-type>
<local-name>[Father qualification]</local-name>
<parent-name>[CleanedDataWithLocation.csv]</parent-name>
<remote-alias>Father qualification</remote-alias>
<ordinal>5</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CleanedDataWithLocation.csv_B1331DB0FD6C4601997C5DA63984C469]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Gender</remote-name>
<remote-type>20</remote-type>
<local-name>[Gender]</local-name>
<parent-name>[CleanedDataWithLocation.csv]</parent-name>
<remote-alias>Gender</remote-alias>
<ordinal>6</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CleanedDataWithLocation.csv_B1331DB0FD6C4601997C5DA63984C469]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Scholarship holder</remote-name>
<remote-type>20</remote-type>
<local-name>[Scholarship holder]</local-name>
<parent-name>[CleanedDataWithLocation.csv]</parent-name>
<remote-alias>Scholarship holder</remote-alias>
<ordinal>7</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CleanedDataWithLocation.csv_B1331DB0FD6C4601997C5DA63984C469]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>International</remote-name>
<remote-type>20</remote-type>
<local-name>[International]</local-name>
<parent-name>[CleanedDataWithLocation.csv]</parent-name>
<remote-alias>International</remote-alias>
<ordinal>8</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CleanedDataWithLocation.csv_B1331DB0FD6C4601997C5DA63984C469]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Age at enrollment</remote-name>
<remote-type>20</remote-type>
<local-name>[Age at enrollment]</local-name>
<parent-name>[CleanedDataWithLocation.csv]</parent-name>
<remote-alias>Age at enrollment</remote-alias>
<ordinal>9</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CleanedDataWithLocation.csv_B1331DB0FD6C4601997C5DA63984C469]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>GDP</remote-name>
<remote-type>5</remote-type>
<local-name>[GDP]</local-name>
<parent-name>[CleanedDataWithLocation.csv]</parent-name>
<remote-alias>GDP</remote-alias>
<ordinal>10</ordinal>
<local-type>real</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CleanedDataWithLocation.csv_B1331DB0FD6C4601997C5DA63984C469]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Target</remote-name>
<remote-type>129</remote-type>
<local-name>[Target]</local-name>
<parent-name>[CleanedDataWithLocation.csv]</parent-name>
<remote-alias>Target</remote-alias>
<ordinal>11</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<scale>1</scale>
<width>1073741823</width>
<contains-null>true</contains-null>
<collation flag='0' name='LEN_RUS' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CleanedDataWithLocation.csv_B1331DB0FD6C4601997C5DA63984C469]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Country</remote-name>
<remote-type>129</remote-type>
<local-name>[Country]</local-name>
<parent-name>[CleanedDataWithLocation.csv]</parent-name>
<remote-alias>Country</remote-alias>
<ordinal>12</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<scale>1</scale>
<width>1073741823</width>
<contains-null>true</contains-null>
<collation flag='0' name='LEN_RUS' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CleanedDataWithLocation.csv_B1331DB0FD6C4601997C5DA63984C469]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Latitude</remote-name>
<remote-type>5</remote-type>
<local-name>[Latitude]</local-name>
<parent-name>[CleanedDataWithLocation.csv]</parent-name>
<remote-alias>Latitude</remote-alias>
<ordinal>13</ordinal>
<local-type>real</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CleanedDataWithLocation.csv_B1331DB0FD6C4601997C5DA63984C469]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Longitude</remote-name>
<remote-type>5</remote-type>
<local-name>[Longitude]</local-name>
<parent-name>[CleanedDataWithLocation.csv]</parent-name>
<remote-alias>Longitude</remote-alias>
<ordinal>14</ordinal>
<local-type>real</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CleanedDataWithLocation.csv_B1331DB0FD6C4601997C5DA63984C469]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
</metadata-records>
</connection>
<aliases enabled='yes' />
<column datatype='string' name='[Country (group)]' role='dimension' semantic-role='[Country].[ISO3166_2]' type='nominal'>
<calculation class='categorical-bin' column='[Country]' new-bin='true'>
<bin default-name='false' value='"Africa"'>
<value>"Angola"</value>
<value>"Cabo Verde"</value>
<value>"Guinea"</value>
<value>"Mozambique"</value>
<value>"Sao Tome e Principe"</value>
</bin>
<bin default-name='false' value='"America"'>
<value>"Brazil"</value>
<value>"Colombia"</value>
<value>"Cuba"</value>
<value>"Mexico"</value>
</bin>
<bin default-name='false' value='"Europe"'>
<value>"Britain"</value>
<value>"Germany"</value>
<value>"Italy"</value>
<value>"Lithuania"</value>
<value>"Moldova (Republic of)"</value>
<value>"Netherlands"</value>
<value>"Portugal"</value>
<value>"Romania"</value>
<value>"Russia"</value>
<value>"Spain"</value>
<value>"Turkey"</value>
<value>"Ukrainia"</value>
</bin>
</calculation>
</column>
<column datatype='string' name='[Country]' role='dimension' semantic-role='[Country].[ISO3166_2]' type='nominal' />
<column aggregation='Sum' datatype='integer' name='[Gender]' role='dimension' type='ordinal'>
<aliases>
<alias key='0' value='Female' />
<alias key='1' value='Male' />
</aliases>
</column>
<column aggregation='Avg' datatype='real' name='[Latitude]' role='measure' semantic-role='[Geographical].[Latitude]' type='quantitative' />
<column aggregation='Avg' datatype='real' name='[Longitude]' role='measure' semantic-role='[Geographical].[Longitude]' type='quantitative' />
<column aggregation='CountD' datatype='string' default-role='measure' default-type='quantitative' name='[Target]' role='dimension' type='nominal' />
<_.fcp.ObjectModelTableType.true...column caption='CleanedDataWithLocation.csv' datatype='table' name='[__tableau_internal_object_id__].[CleanedDataWithLocation.csv_B1331DB0FD6C4601997C5DA63984C469]' role='measure' type='quantitative' />
<layout _.fcp.SchemaViewerObjectModel.false...dim-percentage='0.5' _.fcp.SchemaViewerObjectModel.false...measure-percentage='0.4' dim-ordering='alphabetic' measure-ordering='alphabetic' show-structure='true' />
<style>
<style-rule element='mark'>
<encoding attr='color' field='[Country (group)]' type='palette'>
<map to='#4e79a7'>
<bucket>"Africa"</bucket>
</map>
<map to='#e15759'>
<bucket>"Europe"</bucket>
</map>
<map to='#f28e2b'>
<bucket>"America"</bucket>
</map>
</encoding>
</style-rule>
</style>
<semantic-values>
<semantic-value key='[Country].[Name]' value='"USA"' />
</semantic-values>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-graph>
<objects>
<object caption='CleanedDataWithLocation.csv' id='CleanedDataWithLocation.csv_B1331DB0FD6C4601997C5DA63984C469'>
<properties context=''>
<relation connection='textscan.05q7d8m1kg648w122s8og1enhwvw' name='CleanedDataWithLocation.csv' table='[CleanedDataWithLocation#csv]' type='table'>
<columns character-set='UTF-8' header='yes' locale='en_US' separator=','>
<column datatype='integer' name='Marital status' ordinal='0' />
<column datatype='integer' name='Course' ordinal='1' />
<column datatype='integer' name='Daytime/evening attendance' ordinal='2' />
<column datatype='integer' name='Nationality' ordinal='3' />
<column datatype='integer' name='Mother qualification' ordinal='4' />
<column datatype='integer' name='Father qualification' ordinal='5' />
<column datatype='integer' name='Gender' ordinal='6' />
<column datatype='integer' name='Scholarship holder' ordinal='7' />
<column datatype='integer' name='International' ordinal='8' />
<column datatype='integer' name='Age at enrollment' ordinal='9' />
<column datatype='real' name='GDP' ordinal='10' />
<column datatype='string' name='Target' ordinal='11' />
<column datatype='string' name='Country' ordinal='12' />
<column datatype='real' name='Latitude' ordinal='13' />
<column datatype='real' name='Longitude' ordinal='14' />
</columns>
</relation>
</properties>
</object>
</objects>
</_.fcp.ObjectModelEncapsulateLegacy.true...object-graph>
</datasource>
</datasources>
<mapsources>
<mapsource name='Tableau' />
</mapsources>
<actions>
<action caption='Highlight 1 (generated)' name='[Action1_C9E3F2C0ADF240149AA938404022DC08]'>
<activation auto-clear='true' type='on-select' />
<source type='sheet' worksheet='MAP' />
<command command='tsc:brush'>
<param name='field-captions' value='Country (group)' />
<param name='target' value='MAP' />
</command>
</action>
</actions>
<worksheets>
<worksheet name='Avg.GDP'>
<table>
<view>
<datasources>
<datasource caption='CleanedDataWithLocation' name='federated.0uy9fp41lpjrik17kvm30176wfdg' />
</datasources>
<datasource-dependencies datasource='federated.0uy9fp41lpjrik17kvm30176wfdg'>
<column datatype='string' name='[Country]' role='dimension' semantic-role='[Country].[ISO3166_2]' type='nominal' />
<column datatype='real' name='[GDP]' role='measure' type='quantitative' />
<column-instance column='[GDP]' derivation='Avg' name='[avg:GDP:qk]' pivot='key' type='quantitative' />
<column-instance column='[Country]' derivation='None' name='[none:Country:nk]' pivot='key' type='nominal' />
</datasource-dependencies>
<filter class='categorical' column='[federated.0uy9fp41lpjrik17kvm30176wfdg].[none:Country:nk]'>
<groupfilter function='except' user:ui-domain='database' user:ui-enumeration='exclusive' user:ui-marker='enumerate'>
<groupfilter function='level-members' level='[none:Country:nk]' />
<groupfilter function='member' level='[none:Country:nk]' member='"Portugal"' />
</groupfilter>
</filter>
<slices>
<column>[federated.0uy9fp41lpjrik17kvm30176wfdg].[none:Country:nk]</column>
</slices>
<aggregation value='true' />
</view>
<style>
<style-rule element='axis'>
<format attr='title' class='0' field='[federated.0uy9fp41lpjrik17kvm30176wfdg].[avg:GDP:qk]' scope='rows' value='GDP' />
</style-rule>
<style-rule element='cell'>
<format attr='width' field='[federated.0uy9fp41lpjrik17kvm30176wfdg].[none:Country:nk]' value='45' />
</style-rule>
<style-rule element='label'>
<format attr='text-orientation' field='[federated.0uy9fp41lpjrik17kvm30176wfdg].[none:Country:nk]' value='-90' />
</style-rule>
<style-rule element='mark'>
<encoding attr='color' field='[federated.0uy9fp41lpjrik17kvm30176wfdg].[avg:GDP:qk]' palette='red_10_0' type='interpolated' />
</style-rule>
</style>
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<encodings>
<color column='[federated.0uy9fp41lpjrik17kvm30176wfdg].[avg:GDP:qk]' />
</encodings>
<style>
<style-rule element='pane'>
<format attr='minwidth' value='-1' />
<format attr='maxwidth' value='-1' />
</style-rule>
</style>
</pane>
</panes>
<rows>[federated.0uy9fp41lpjrik17kvm30176wfdg].[avg:GDP:qk]</rows>
<cols>[federated.0uy9fp41lpjrik17kvm30176wfdg].[none:Country:nk]</cols>
</table>
<simple-id uuid='{7AD1A53B-7CD0-4E7D-830C-8DD4A6E1E745}' />
</worksheet>
<worksheet name='Avg.age'>
<table>
<view>
<datasources>
<datasource caption='CleanedDataWithLocation' name='federated.0uy9fp41lpjrik17kvm30176wfdg' />
</datasources>
<datasource-dependencies datasource='federated.0uy9fp41lpjrik17kvm30176wfdg'>
<column datatype='integer' name='[Age at enrollment]' role='measure' type='quantitative' />
<column aggregation='CountD' datatype='string' default-role='measure' default-type='quantitative' name='[Target]' role='dimension' type='nominal' />
<column-instance column='[Age at enrollment]' derivation='Avg' name='[avg:Age at enrollment:qk]' pivot='key' type='quantitative' />
<column-instance column='[Target]' derivation='None' name='[none:Target:nk]' pivot='key' type='nominal' />
</datasource-dependencies>
<filter class='categorical' column='[federated.0uy9fp41lpjrik17kvm30176wfdg].[:Measure Names]'>
<groupfilter function='level-members' level='[:Measure Names]' />
</filter>
<slices>
<column>[federated.0uy9fp41lpjrik17kvm30176wfdg].[:Measure Names]</column>
</slices>
<aggregation value='true' />
</view>
<style>
<style-rule element='axis'>
<format attr='title' class='0' field='[federated.0uy9fp41lpjrik17kvm30176wfdg].[avg:Age at enrollment:qk]' scope='rows' value='AVG. Age' />
<encoding attr='space' class='0' field='[federated.0uy9fp41lpjrik17kvm30176wfdg].[avg:Age at enrollment:qk]' field-type='quantitative' major-origin='1.0' major-show='false' major-spacing='10.0' max='27.0' min='20.0' range-type='fixed' scale='log' scope='rows' type='space' />
</style-rule>
<style-rule element='cell'>
<format attr='width' field='[federated.0uy9fp41lpjrik17kvm30176wfdg].[none:Target:nk]' value='115' />
</style-rule>
<style-rule element='mark'>
<encoding attr='color' field='[federated.0uy9fp41lpjrik17kvm30176wfdg].[avg:Age at enrollment:qk]' palette='orange_10_0' type='interpolated' />
</style-rule>
<style-rule element='worksheet'>
<format attr='display-field-labels' scope='cols' value='false' />
</style-rule>
</style>
<panes>
<pane id='6' selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<encodings>
<color column='[federated.0uy9fp41lpjrik17kvm30176wfdg].[avg:Age at enrollment:qk]' />
</encodings>
<style>
<style-rule element='mark'>
<format attr='mark-color' value='#f28e2b' />
<format attr='has-stroke' value='true' />
<format attr='stroke-color' value='#ffffff' />
<format attr='mark-transparency' value='226' />
<format attr='mark-labels-show' value='true' />
<format attr='mark-labels-cull' value='true' />
</style-rule>
<style-rule element='pane'>
<format attr='minwidth' value='-1' />
<format attr='maxwidth' value='-1' />
</style-rule>
</style>
</pane>
</panes>
<rows>[federated.0uy9fp41lpjrik17kvm30176wfdg].[avg:Age at enrollment:qk]</rows>
<cols>[federated.0uy9fp41lpjrik17kvm30176wfdg].[none:Target:nk]</cols>
</table>
<simple-id uuid='{BE50B285-2C3E-4912-B2E7-735F96E58336}' />
</worksheet>
<worksheet name='MAP'>
<table>
<view>
<datasources>
<datasource caption='CleanedDataWithLocation' name='federated.0uy9fp41lpjrik17kvm30176wfdg' />
</datasources>
<mapsources>
<mapsource name='Tableau' />
</mapsources>
<datasource-dependencies datasource='federated.0uy9fp41lpjrik17kvm30176wfdg'>
<column datatype='string' name='[Country (group)]' role='dimension' semantic-role='[Country].[ISO3166_2]' type='nominal'>
<calculation class='categorical-bin' column='[Country]' new-bin='true'>
<bin default-name='false' value='"Africa"'>
<value>"Angola"</value>
<value>"Cabo Verde"</value>
<value>"Guinea"</value>
<value>"Mozambique"</value>
<value>"Sao Tome e Principe"</value>
</bin>
<bin default-name='false' value='"America"'>
<value>"Brazil"</value>
<value>"Colombia"</value>
<value>"Cuba"</value>
<value>"Mexico"</value>
</bin>
<bin default-name='false' value='"Europe"'>
<value>"Britain"</value>
<value>"Germany"</value>
<value>"Italy"</value>
<value>"Lithuania"</value>
<value>"Moldova (Republic of)"</value>
<value>"Netherlands"</value>
<value>"Portugal"</value>
<value>"Romania"</value>
<value>"Russia"</value>
<value>"Spain"</value>
<value>"Turkey"</value>
<value>"Ukrainia"</value>
</bin>
</calculation>
</column>
<column datatype='string' name='[Country]' role='dimension' semantic-role='[Country].[ISO3166_2]' type='nominal' />
<column datatype='integer' name='[International]' role='measure' type='quantitative' />
<column aggregation='Avg' datatype='real' name='[Latitude]' role='measure' semantic-role='[Geographical].[Latitude]' type='quantitative' />
<column aggregation='Avg' datatype='real' name='[Longitude]' role='measure' semantic-role='[Geographical].[Longitude]' type='quantitative' />
<column datatype='integer' name='[Scholarship holder]' role='measure' type='quantitative' />
<column-instance column='[Country]' derivation='Attribute' name='[attr:Country:nk]' pivot='key' type='nominal' />
<column-instance column='[International]' derivation='None' name='[none:International:qk]' pivot='key' type='quantitative' />
<column-instance column='[Latitude]' derivation='None' name='[none:Latitude:qk]' pivot='key' type='quantitative' />
<column-instance column='[Longitude]' derivation='None' name='[none:Longitude:qk]' pivot='key' type='quantitative' />
<column-instance column='[International]' derivation='Sum' name='[sum:International:qk]' pivot='key' type='quantitative' />
<column-instance column='[Scholarship holder]' derivation='Sum' name='[sum:Scholarship holder:qk]' pivot='key' type='quantitative' />
</datasource-dependencies>
<filter class='categorical' column='[federated.0uy9fp41lpjrik17kvm30176wfdg].[Country (group)]'>
<groupfilter function='level-members' level='[Country (group)]' user:ui-enumeration='all' user:ui-marker='enumerate' />
</filter>
<filter class='quantitative' column='[federated.0uy9fp41lpjrik17kvm30176wfdg].[none:International:qk]' included-values='in-range'>
<min>1</min>
<max>1</max>
</filter>
<slices>
<column>[federated.0uy9fp41lpjrik17kvm30176wfdg].[Country (group)]</column>
<column>[federated.0uy9fp41lpjrik17kvm30176wfdg].[none:International:qk]</column>
</slices>
<aggregation value='true' />
</view>
<style>
<style-rule element='axis'>
<encoding attr='space' class='0' field='[federated.0uy9fp41lpjrik17kvm30176wfdg].[none:Longitude:qk]' field-type='quantitative' max='7121277.545753859' min='-12532883.023359694' projection='EPSG:3857' range-type='fixed' scope='cols' type='space' />
<encoding attr='space' class='0' field='[federated.0uy9fp41lpjrik17kvm30176wfdg].[none:Latitude:qk]' field-type='quantitative' max='8194629.8998922221' min='-2921130.2862197869' projection='EPSG:3857' range-type='fixed' scope='rows' type='space' />
</style-rule>
<style-rule element='legend'>
<format attr='font-size' value='15' />
</style-rule>
<style-rule element='legend-title'>
<format attr='font-size' value='36' />
</style-rule>
<style-rule element='map'>
<format attr='washout' value='0.0' />
</style-rule>
<style-rule element='quick-filter'>
<format attr='font-size' value='16' />
</style-rule>
<style-rule element='quick-filter-title'>
<format attr='font-size' value='15' />
</style-rule>
</style>
<panes>
<pane id='2' selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<mark-sizing mark-sizing-setting='marks-scaling-off' />
<encodings>
<color column='[federated.0uy9fp41lpjrik17kvm30176wfdg].[Country (group)]' />
<size column='[federated.0uy9fp41lpjrik17kvm30176wfdg].[sum:International:qk]' />
<tooltip column='[federated.0uy9fp41lpjrik17kvm30176wfdg].[attr:Country:nk]' />
<tooltip column='[federated.0uy9fp41lpjrik17kvm30176wfdg].[sum:Scholarship holder:qk]' />
</encodings>
<customized-tooltip>
<formatted-text>
<run bold='true' fontcolor='#000000' fontsize='12'>Continent:</run>
<run bold='true' fontcolor='#787878' fontsize='12'>Æ	</run>
<run bold='true' fontsize='12'><![CDATA[<[federated.0uy9fp41lpjrik17kvm30176wfdg].[Country (group)]>]]></run>
<run>Æ </run>
<run bold='true' fontcolor='#000000' fontsize='12'>Country:</run>
<run fontcolor='#787878' fontsize='12'>Æ	</run>
<run bold='true' fontsize='12'><![CDATA[<[federated.0uy9fp41lpjrik17kvm30176wfdg].[attr:Country:nk]>]]></run>
<run>Æ </run>
<run bold='true' fontcolor='#000000' fontsize='12'>Student Amount:</run>
<run fontcolor='#787878' fontsize='12'>Æ	</run>
<run bold='true' fontsize='12'><![CDATA[<[federated.0uy9fp41lpjrik17kvm30176wfdg].[sum:International:qk]>]]></run>
<run>Æ </run>
<run bold='true' fontsize='12'><![CDATA[Scholarship holders: <[federated.0uy9fp41lpjrik17kvm30176wfdg].[sum:Scholarship holder:qk]>]]></run>
<run>Æ </run>
</formatted-text>
</customized-tooltip>
<style>
<style-rule element='mark'>
<format attr='size' value='2.1546962261199951' />
<format attr='mark-labels-show' value='true' />
<format attr='mark-labels-cull' value='true' />
</style-rule>
</style>
</pane>
</panes>
<rows>[federated.0uy9fp41lpjrik17kvm30176wfdg].[none:Latitude:qk]</rows>
<cols>[federated.0uy9fp41lpjrik17kvm30176wfdg].[none:Longitude:qk]</cols>
</table>
<simple-id uuid='{866EF8E4-E8DC-41A9-84E2-3431F5EF439B}' />
</worksheet>
<worksheet name='Sheet 4'>
<table>
<view>
<datasources>
<datasource caption='CleanedDataWithLocation' name='federated.0uy9fp41lpjrik17kvm30176wfdg' />
</datasources>
<datasource-dependencies datasource='federated.0uy9fp41lpjrik17kvm30176wfdg'>
<column aggregation='Sum' datatype='integer' name='[Gender]' role='dimension' type='ordinal'>
<aliases>
<alias key='0' value='Female' />
<alias key='1' value='Male' />
</aliases>
</column>
<column aggregation='CountD' datatype='string' default-role='measure' default-type='quantitative' name='[Target]' role='dimension' type='nominal' />
<column-instance column='[Gender]' derivation='None' name='[none:Gender:ok]' pivot='key' type='ordinal' />
<column-instance column='[Target]' derivation='None' name='[none:Target:nk]' pivot='key' type='nominal' />
<column-instance column='[Target]' derivation='Count' name='[pcto:cnt:Target:qk]' pivot='key' type='quantitative'>
<table-calc ordering-type='Rows' type='PctTotal' />
</column-instance>
</datasource-dependencies>
<filter class='categorical' column='[federated.0uy9fp41lpjrik17kvm30176wfdg].[:Measure Names]'>
<groupfilter function='level-members' level='[:Measure Names]' />
</filter>
<slices>
<column>[federated.0uy9fp41lpjrik17kvm30176wfdg].[:Measure Names]</column>
</slices>
<aggregation value='true' />
</view>
<style>
<style-rule element='axis'>
<format attr='title' class='0' field='[federated.0uy9fp41lpjrik17kvm30176wfdg].[pcto:cnt:Target:qk]' scope='rows' value='Count of Students' />
</style-rule>
<style-rule element='cell'>
<format attr='width' field='[federated.0uy9fp41lpjrik17kvm30176wfdg].[none:Gender:ok]' value='77' />
</style-rule>
<style-rule element='worksheet'>
<format attr='display-field-labels' scope='cols' value='false' />
</style-rule>
</style>
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<encodings>
<color column='[federated.0uy9fp41lpjrik17kvm30176wfdg].[none:Gender:ok]' />
</encodings>
<style>
<style-rule element='mark'>
<format attr='mark-labels-show' value='true' />
<format attr='mark-labels-cull' value='true' />
</style-rule>
<style-rule element='pane'>
<format attr='minwidth' value='-1' />
<format attr='maxwidth' value='-1' />
</style-rule>
</style>
</pane>
</panes>
<rows>[federated.0uy9fp41lpjrik17kvm30176wfdg].[pcto:cnt:Target:qk]</rows>
<cols>([federated.0uy9fp41lpjrik17kvm30176wfdg].[none:Target:nk] / [federated.0uy9fp41lpjrik17kvm30176wfdg].[none:Gender:ok])</cols>
</table>
<simple-id uuid='{5638F58A-70DE-4901-BBC4-AE69CBAB6C90}' />
</worksheet>
<worksheet name='Sheet 5'>
<table>
<view>
<datasources />
<aggregation value='true' />
</view>
<style />
<panes>
<pane selection-relaxation-option='selection-relaxation-allow'>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
</pane>
</panes>
<rows />
<cols />
</table>
<simple-id uuid='{B85B5AD8-71BC-4A32-99A7-997658A58C81}' />
</worksheet>
</worksheets>
<windows source-height='30'>
<window class='worksheet' name='MAP'>
<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 param='[federated.0uy9fp41lpjrik17kvm30176wfdg].[Country (group)]' size='83' type='filter' />
<card pane-specification-id='2' param='[federated.0uy9fp41lpjrik17kvm30176wfdg].[Country (group)]' size='61' type='color' />
</strip>
</edge>
</cards>
<viewpoint>
<highlight>
<color-one-way>
<field>[federated.0uy9fp41lpjrik17kvm30176wfdg].[none:Country:nk]</field>
<field>[federated.0uy9fp41lpjrik17kvm30176wfdg].[none:International:qk]</field>
<field>[federated.0uy9fp41lpjrik17kvm30176wfdg].[none:Latitude:qk]</field>
<field>[federated.0uy9fp41lpjrik17kvm30176wfdg].[none:Longitude:qk]</field>
</color-one-way>
</highlight>
<default-map-tool-selection tool='1' />
</viewpoint>
<simple-id uuid='{A6FD78BA-C8F1-47CD-8B5F-28CE4738F2F1}' />
</window>
<window class='worksheet' maximized='true' name='Avg.GDP'>
<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.0uy9fp41lpjrik17kvm30176wfdg].[avg:GDP:qk]' type='color' />
</strip>
</edge>
</cards>
<viewpoint>
<highlight>
<color-one-way>
<field>[federated.0uy9fp41lpjrik17kvm30176wfdg].[avg:GDP:qk]</field>
<field>[federated.0uy9fp41lpjrik17kvm30176wfdg].[none:Country:nk]</field>
</color-one-way>
</highlight>
</viewpoint>
<simple-id uuid='{2E97D166-8981-4EC0-81AE-72099EB596FD}' />
</window>
<window class='worksheet' name='Avg.age'>
<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='6' param='[federated.0uy9fp41lpjrik17kvm30176wfdg].[avg:Age at enrollment:qk]' type='color' />
</strip>
</edge>
</cards>
<viewpoint>
<highlight>
<color-one-way>
<field>[federated.0uy9fp41lpjrik17kvm30176wfdg].[avg:Age at enrollment:qk]</field>
<field>[federated.0uy9fp41lpjrik17kvm30176wfdg].[none:Country:nk]</field>
<field>[federated.0uy9fp41lpjrik17kvm30176wfdg].[none:Target:nk]</field>
</color-one-way>
</highlight>
</viewpoint>
<simple-id uuid='{5DD62AC0-7D78-4E4A-BB00-0BE5245ED430}' />
</window>
<window class='worksheet' name='Sheet 4'>
<cards>
<edge name='left'>
<strip size='300'>
<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='300'>
<card pane-specification-id='0' param='[federated.0uy9fp41lpjrik17kvm30176wfdg].[none:Gender:ok]' type='color' />
</strip>
</edge>
</cards>
<viewpoint>
<highlight>
<color-one-way>
<field>[federated.0uy9fp41lpjrik17kvm30176wfdg].[none:Gender:ok]</field>
<field>[federated.0uy9fp41lpjrik17kvm30176wfdg].[none:Gender:qk]</field>
<field>[federated.0uy9fp41lpjrik17kvm30176wfdg].[none:Target:nk]</field>
</color-one-way>
</highlight>
</viewpoint>
<simple-id uuid='{9D82B4F6-D8F5-492C-992A-64E1BDBDEFDB}' />
</window>
<window class='worksheet' name='Sheet 5'>
<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>
<simple-id uuid='{21E6A370-13F2-44CD-A4F7-72BFFA726435}' />
</window>
</windows>
<thumbnails>
<thumbnail height='192' name='Avg.GDP' width='192'>
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
</thumbnail>
<thumbnail height='192' name='Avg.age' width='192'>
iVBORw0KGgoAAAANSUhEUgAAAMAAAADACAYAAABS3GwHAAAACXBIWXMAAA7DAAAOwwHHb6hk
AAAHHElEQVR4nO3dX2yVdx3H8c9z/rQ0pTvjUNqO/rGzpxVdMCzZurj+oZB4QSDQBN10w5OZ
CXczhAvv/LN4YUzI4riSGw0xrAFiAMkUWqajSXEMUWtnLY2txp7TdRSBHtpz2p1z+nilXpE+
Op7n0H7fr+uT9vMkfff5PacnqeO6rivAIMdxnFCpRwClRAAwLfAAXNcVpy48KgIPoFAoBP0t
gQfiCATTCACmEQBMIwCYRgAwjQBgGgHANAKAaQQA0wgAphEATCMAmEYAMI0AYBoBwDQCgGkE
ANMIAKYRAEwjAJhGADCNAGAaAcA0AoBpBADTCACmEQBMIwCYRgAwjQBgGgHANAKAaQQA0yKl
HvD/KhaLunTpkoaHh9Xe3q729nadOHFC0WhUyWRSFRUVmpub08mTJxUKhZRMJjU6OqqBgQF1