-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTableau_Dashboard.twb
5506 lines (5505 loc) · 398 KB
/
Tableau_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 20211.21.1217.2241 -->
<workbook original-version='18.1' source-build='2021.1.10 (20211.21.1217.2241)' source-platform='mac' version='18.1' xml:base='https://public.tableau.com' xmlns:user='http://www.tableausoftware.com/xml/user'>
<document-format-change-manifest>
<IntuitiveSorting />
<IntuitiveSorting_SP2 />
<MapboxVectorStylesAndLayers />
<_.fcp.MarkAnimation.true...MarkAnimation />
<_.fcp.ObjectModelEncapsulateLegacy.true...ObjectModelEncapsulateLegacy />
<_.fcp.ObjectModelExtractV2.true...ObjectModelExtractV2 />
<_.fcp.ObjectModelTableType.true...ObjectModelTableType />
<_.fcp.SchemaViewerObjectModel.true...SchemaViewerObjectModel />
<SetMembershipControl />
<SheetIdentifierTracking />
<WindowsPersistSimpleIdentifiers />
<WorksheetBackgroundTransparency />
<ZoneBackgroundTransparency />
</document-format-change-manifest>
<repository-location id='Dashboard_16238602964290' path='/workbooks' revision='1.3' />
<preferences>
<preference name='ui.encoding.shelf.height' value='24' />
<preference name='ui.shelf.height' value='26' />
</preferences>
<datasources>
<datasource caption='CHANGE 2012-2019 (EIS2020_database)' inline='true' name='federated.09afubu04znh5h11rwb811560m1b' version='18.1'>
<connection class='federated'>
<named-connections>
<named-connection caption='EIS2020_database' name='excel-direct.09fgn5q02ruwi81effadx0biqdhv'>
<connection class='excel-direct' cleaning='no' compat='no' dataRefreshTime='' filename='/Users/robertfonod/Google Drive/WORK/UIUC/2dv/Assignments/Assignment 1 - Dashboard in Tableu/tableau-visualization/EIS2020_database.xlsx' interpretationMode='0' password='' server='' validate='no' workgroup-auth-mode='as-is' />
</named-connection>
</named-connections>
<_.fcp.ObjectModelEncapsulateLegacy.false...relation name='Pivot' type='pivot'>
<columns>
<column datatype='string' name='Pivot Field Names' />
<column datatype='real' name='Pivot Field Values' />
</columns>
<tag name='Pivot Field Names'>
<value name='[New doctorate graduates]' />
<value name='[International scientific co-publications]' />
<value name='[Scientific publications among top 10% most cited]' />
<value name='[Foreign doctorate students]' />
</tag>
<groups>
<group name='Pivot Field Values'>
<field name='[CHANGE 2012-2019].[1.1.1 New doctorate graduates]' />
<field name='[CHANGE 2012-2019].[1.2.1 International scientific co-publications]' />
<field name='[CHANGE 2012-2019].[1.2.2 Scientific publications among top 10% most cited]' />
<field name='[CHANGE 2012-2019].[1.2.3 Foreign doctorate students]' />
</group>
</groups>
<relation connection='excel-direct.09fgn5q02ruwi81effadx0biqdhv' name='CHANGE 2012-2019' table='['CHANGE 2012-2019$']' type='table'>
<columns gridOrigin='A1:AN40:no:A1:AN40:0' header='yes' outcome='2'>
<column datatype='string' name='F1' ordinal='0' />
<column datatype='string' name='F2' ordinal='1' />
<column datatype='real' name='Summary Innovation Index' ordinal='2' />
<column datatype='real' name='Human resources' ordinal='3' />
<column datatype='real' name='Research systems' ordinal='4' />
<column datatype='real' name='Innovation-friendly environment' ordinal='5' />
<column datatype='real' name='Finance and support' ordinal='6' />
<column datatype='real' name='Firm investments' ordinal='7' />
<column datatype='real' name='Innovators' ordinal='8' />
<column datatype='real' name='Linkages' ordinal='9' />
<column datatype='real' name='Intellectual assets' ordinal='10' />
<column datatype='real' name='Employment impacts' ordinal='11' />
<column datatype='real' name='Sales impacts' ordinal='12' />
<column datatype='real' name='1.1.1 New doctorate graduates' ordinal='13' />
<column datatype='string' name='1.1.2 Population completed tertiary education' ordinal='14' />
<column datatype='string' name='1.1.3 Lifelong learning' ordinal='15' />
<column datatype='real' name='1.2.1 International scientific co-publications' ordinal='16' />
<column datatype='real' name='1.2.2 Scientific publications among top 10% most cited' ordinal='17' />
<column datatype='real' name='1.2.3 Foreign doctorate students' ordinal='18' />
<column datatype='string' name='1.3.1 Broadband penetration' ordinal='19' />
<column datatype='string' name='1.3.2 Opportunity-driven entrepreneurship' ordinal='20' />
<column datatype='real' name='2.1.1 R&D expenditure in the public sector' ordinal='21' />
<column datatype='string' name='2.1.2 Venture capital investments' ordinal='22' />
<column datatype='real' name='2.2.1 R&D expenditure in the business sector' ordinal='23' />
<column datatype='string' name='2.2.2 Non-R&D innovation expenditure' ordinal='24' />
<column datatype='string' name='2.2.3 Enterprises providing ICT training' ordinal='25' />
<column datatype='real' name='3.1.1 SMEs with product or process innovations' ordinal='26' />
<column datatype='real' name='3.1.2 SMEs with marketing or organisational innovations' ordinal='27' />
<column datatype='string' name='3.1.3 SMEs innovating in-house' ordinal='28' />
<column datatype='real' name='3.2.1 Innovative SMEs collaborating with others' ordinal='29' />
<column datatype='real' name='3.2.2 Public-private co-publications' ordinal='30' />
<column datatype='string' name='3.2.3 Private co-funding of public R&D expenditures' ordinal='31' />
<column datatype='real' name='3.3.1 PCT patent applications' ordinal='32' />
<column datatype='real' name='3.3.2 Trademark applications' ordinal='33' />
<column datatype='real' name='3.3.3 Design applications' ordinal='34' />
<column datatype='real' name='4.1.1 Employment in knowledge-intensive activities' ordinal='35' />
<column datatype='string' name='4.1.2 Employment fast-growing firms innovative sectors' ordinal='36' />
<column datatype='real' name='4.2.1 Medium & high tech product exports' ordinal='37' />
<column datatype='real' name='4.2.2 Knowledge-intensive services exports' ordinal='38' />
<column datatype='real' name='4.2.3 Sales of new-to-market and new-to-firm innovations' ordinal='39' />
</columns>
</relation>
</_.fcp.ObjectModelEncapsulateLegacy.false...relation>
<_.fcp.ObjectModelEncapsulateLegacy.true...relation name='Pivot' type='pivot'>
<columns>
<column datatype='string' name='Pivot Field Names' />
<column datatype='real' name='Pivot Field Values' />
</columns>
<tag name='Pivot Field Names'>
<value name='[New doctorate graduates]' />
<value name='[International scientific co-publications]' />
<value name='[Scientific publications among top 10% most cited]' />
<value name='[Foreign doctorate students]' />
</tag>
<groups>
<group name='Pivot Field Values'>
<field name='[CHANGE 2012-2019].[1.1.1 New doctorate graduates]' />
<field name='[CHANGE 2012-2019].[1.2.1 International scientific co-publications]' />
<field name='[CHANGE 2012-2019].[1.2.2 Scientific publications among top 10% most cited]' />
<field name='[CHANGE 2012-2019].[1.2.3 Foreign doctorate students]' />
</group>
</groups>
<relation connection='excel-direct.09fgn5q02ruwi81effadx0biqdhv' name='CHANGE 2012-2019' table='['CHANGE 2012-2019$']' type='table'>
<columns gridOrigin='A1:AN40:no:A1:AN40:0' header='yes' outcome='2'>
<column datatype='string' name='F1' ordinal='0' />
<column datatype='string' name='F2' ordinal='1' />
<column datatype='real' name='Summary Innovation Index' ordinal='2' />
<column datatype='real' name='Human resources' ordinal='3' />
<column datatype='real' name='Research systems' ordinal='4' />
<column datatype='real' name='Innovation-friendly environment' ordinal='5' />
<column datatype='real' name='Finance and support' ordinal='6' />
<column datatype='real' name='Firm investments' ordinal='7' />
<column datatype='real' name='Innovators' ordinal='8' />
<column datatype='real' name='Linkages' ordinal='9' />
<column datatype='real' name='Intellectual assets' ordinal='10' />
<column datatype='real' name='Employment impacts' ordinal='11' />
<column datatype='real' name='Sales impacts' ordinal='12' />
<column datatype='real' name='1.1.1 New doctorate graduates' ordinal='13' />
<column datatype='string' name='1.1.2 Population completed tertiary education' ordinal='14' />
<column datatype='string' name='1.1.3 Lifelong learning' ordinal='15' />
<column datatype='real' name='1.2.1 International scientific co-publications' ordinal='16' />
<column datatype='real' name='1.2.2 Scientific publications among top 10% most cited' ordinal='17' />
<column datatype='real' name='1.2.3 Foreign doctorate students' ordinal='18' />
<column datatype='string' name='1.3.1 Broadband penetration' ordinal='19' />
<column datatype='string' name='1.3.2 Opportunity-driven entrepreneurship' ordinal='20' />
<column datatype='real' name='2.1.1 R&D expenditure in the public sector' ordinal='21' />
<column datatype='string' name='2.1.2 Venture capital investments' ordinal='22' />
<column datatype='real' name='2.2.1 R&D expenditure in the business sector' ordinal='23' />
<column datatype='string' name='2.2.2 Non-R&D innovation expenditure' ordinal='24' />
<column datatype='string' name='2.2.3 Enterprises providing ICT training' ordinal='25' />
<column datatype='real' name='3.1.1 SMEs with product or process innovations' ordinal='26' />
<column datatype='real' name='3.1.2 SMEs with marketing or organisational innovations' ordinal='27' />
<column datatype='string' name='3.1.3 SMEs innovating in-house' ordinal='28' />
<column datatype='real' name='3.2.1 Innovative SMEs collaborating with others' ordinal='29' />
<column datatype='real' name='3.2.2 Public-private co-publications' ordinal='30' />
<column datatype='string' name='3.2.3 Private co-funding of public R&D expenditures' ordinal='31' />
<column datatype='real' name='3.3.1 PCT patent applications' ordinal='32' />
<column datatype='real' name='3.3.2 Trademark applications' ordinal='33' />
<column datatype='real' name='3.3.3 Design applications' ordinal='34' />
<column datatype='real' name='4.1.1 Employment in knowledge-intensive activities' ordinal='35' />
<column datatype='string' name='4.1.2 Employment fast-growing firms innovative sectors' ordinal='36' />
<column datatype='real' name='4.2.1 Medium & high tech product exports' ordinal='37' />
<column datatype='real' name='4.2.2 Knowledge-intensive services exports' ordinal='38' />
<column datatype='real' name='4.2.3 Sales of new-to-market and new-to-firm innovations' ordinal='39' />
</columns>
</relation>
</_.fcp.ObjectModelEncapsulateLegacy.true...relation>
<refresh increment-key='' incremental-updates='false' />
<metadata-records>
<metadata-record class='capability'>
<remote-name />
<remote-type>0</remote-type>
<parent-name>[CHANGE 2012-2019]</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:AN40:no:A1:AN40:0"</attribute>
<attribute datatype='boolean' name='header'>true</attribute>
<attribute datatype='integer' name='outcome'>2</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>F1</remote-name>
<remote-type>130</remote-type>
<local-name>[F1]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>F1</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>F2</remote-name>
<remote-type>130</remote-type>
<local-name>[F2]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>F2</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Summary Innovation Index</remote-name>
<remote-type>5</remote-type>
<local-name>[Summary Innovation Index]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>Summary Innovation Index</remote-alias>
<ordinal>2</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Human resources</remote-name>
<remote-type>5</remote-type>
<local-name>[Human resources]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>Human resources</remote-alias>
<ordinal>3</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Research systems</remote-name>
<remote-type>5</remote-type>
<local-name>[Research systems]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>Research systems</remote-alias>
<ordinal>4</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Innovation-friendly environment</remote-name>
<remote-type>5</remote-type>
<local-name>[Innovation-friendly environment]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>Innovation-friendly environment</remote-alias>
<ordinal>5</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Finance and support</remote-name>
<remote-type>5</remote-type>
<local-name>[Finance and support]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>Finance and support</remote-alias>
<ordinal>6</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Firm investments</remote-name>
<remote-type>5</remote-type>
<local-name>[Firm investments]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>Firm investments</remote-alias>
<ordinal>7</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Innovators</remote-name>
<remote-type>5</remote-type>
<local-name>[Innovators]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>Innovators</remote-alias>
<ordinal>8</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Linkages</remote-name>
<remote-type>5</remote-type>
<local-name>[Linkages]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>Linkages</remote-alias>
<ordinal>9</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Intellectual assets</remote-name>
<remote-type>5</remote-type>
<local-name>[Intellectual assets]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>Intellectual assets</remote-alias>
<ordinal>10</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Employment impacts</remote-name>
<remote-type>5</remote-type>
<local-name>[Employment impacts]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>Employment impacts</remote-alias>
<ordinal>11</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Sales impacts</remote-name>
<remote-type>5</remote-type>
<local-name>[Sales impacts]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>Sales impacts</remote-alias>
<ordinal>12</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>1.1.2 Population completed tertiary education</remote-name>
<remote-type>130</remote-type>
<local-name>[1.1.2 Population completed tertiary education]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>1.1.2 Population completed tertiary education</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>1.1.3 Lifelong learning</remote-name>
<remote-type>130</remote-type>
<local-name>[1.1.3 Lifelong learning]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>1.1.3 Lifelong learning</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>1.3.1 Broadband penetration</remote-name>
<remote-type>130</remote-type>
<local-name>[1.3.1 Broadband penetration]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>1.3.1 Broadband penetration</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>1.3.2 Opportunity-driven entrepreneurship</remote-name>
<remote-type>130</remote-type>
<local-name>[1.3.2 Opportunity-driven entrepreneurship]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>1.3.2 Opportunity-driven entrepreneurship</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>2.1.1 R&D expenditure in the public sector</remote-name>
<remote-type>5</remote-type>
<local-name>[2.1.1 R&D expenditure in the public sector]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>2.1.1 R&D expenditure in the public sector</remote-alias>
<ordinal>17</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>2.1.2 Venture capital investments</remote-name>
<remote-type>130</remote-type>
<local-name>[2.1.2 Venture capital investments]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>2.1.2 Venture capital investments</remote-alias>
<ordinal>18</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>2.2.1 R&D expenditure in the business sector</remote-name>
<remote-type>5</remote-type>
<local-name>[2.2.1 R&D expenditure in the business sector]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>2.2.1 R&D expenditure in the business sector</remote-alias>
<ordinal>19</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>2.2.2 Non-R&D innovation expenditure</remote-name>
<remote-type>130</remote-type>
<local-name>[2.2.2 Non-R&D innovation expenditure]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>2.2.2 Non-R&D innovation expenditure</remote-alias>
<ordinal>20</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>2.2.3 Enterprises providing ICT training</remote-name>
<remote-type>130</remote-type>
<local-name>[2.2.3 Enterprises providing ICT training]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>2.2.3 Enterprises providing ICT training</remote-alias>
<ordinal>21</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>3.1.1 SMEs with product or process innovations</remote-name>
<remote-type>5</remote-type>
<local-name>[3.1.1 SMEs with product or process innovations]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>3.1.1 SMEs with product or process innovations</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>3.1.2 SMEs with marketing or organisational innovations</remote-name>
<remote-type>5</remote-type>
<local-name>[3.1.2 SMEs with marketing or organisational innovations]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>3.1.2 SMEs with marketing or organisational innovations</remote-alias>
<ordinal>23</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>3.1.3 SMEs innovating in-house</remote-name>
<remote-type>130</remote-type>
<local-name>[3.1.3 SMEs innovating in-house]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>3.1.3 SMEs innovating in-house</remote-alias>
<ordinal>24</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>3.2.1 Innovative SMEs collaborating with others</remote-name>
<remote-type>5</remote-type>
<local-name>[3.2.1 Innovative SMEs collaborating with others]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>3.2.1 Innovative SMEs collaborating with others</remote-alias>
<ordinal>25</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>3.2.2 Public-private co-publications</remote-name>
<remote-type>5</remote-type>
<local-name>[3.2.2 Public-private co-publications]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>3.2.2 Public-private co-publications</remote-alias>
<ordinal>26</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>3.2.3 Private co-funding of public R&D expenditures</remote-name>
<remote-type>130</remote-type>
<local-name>[3.2.3 Private co-funding of public R&D expenditures]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>3.2.3 Private co-funding of public R&D expenditures</remote-alias>
<ordinal>27</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>3.3.1 PCT patent applications</remote-name>
<remote-type>5</remote-type>
<local-name>[3.3.1 PCT patent applications]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>3.3.1 PCT patent applications</remote-alias>
<ordinal>28</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>3.3.2 Trademark applications</remote-name>
<remote-type>5</remote-type>
<local-name>[3.3.2 Trademark applications]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>3.3.2 Trademark applications</remote-alias>
<ordinal>29</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>3.3.3 Design applications</remote-name>
<remote-type>5</remote-type>
<local-name>[3.3.3 Design applications]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>3.3.3 Design applications</remote-alias>
<ordinal>30</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>4.1.1 Employment in knowledge-intensive activities</remote-name>
<remote-type>5</remote-type>
<local-name>[4.1.1 Employment in knowledge-intensive activities]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>4.1.1 Employment in knowledge-intensive activities</remote-alias>
<ordinal>31</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>4.1.2 Employment fast-growing firms innovative sectors</remote-name>
<remote-type>130</remote-type>
<local-name>[4.1.2 Employment fast-growing firms innovative sectors]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>4.1.2 Employment fast-growing firms innovative sectors</remote-alias>
<ordinal>32</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>4.2.1 Medium & high tech product exports</remote-name>
<remote-type>5</remote-type>
<local-name>[4.2.1 Medium & high tech product exports]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>4.2.1 Medium & high tech product exports</remote-alias>
<ordinal>33</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>4.2.2 Knowledge-intensive services exports</remote-name>
<remote-type>5</remote-type>
<local-name>[4.2.2 Knowledge-intensive services exports]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>4.2.2 Knowledge-intensive services exports</remote-alias>
<ordinal>34</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>4.2.3 Sales of new-to-market and new-to-firm innovations</remote-name>
<remote-type>5</remote-type>
<local-name>[4.2.3 Sales of new-to-market and new-to-firm innovations]</local-name>
<parent-name>[CHANGE 2012-2019]</parent-name>
<remote-alias>4.2.3 Sales of new-to-market and new-to-firm innovations</remote-alias>
<ordinal>35</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>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Pivot Field Names</remote-name>
<remote-type>129</remote-type>
<local-name>[Pivot Field Names]</local-name>
<parent-name>[Pivot]</parent-name>
<remote-alias>Pivot Field Names</remote-alias>
<ordinal>36</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Pivot Field Values</remote-name>
<remote-type>5</remote-type>
<local-name>[Pivot Field Values]</local-name>
<parent-name>[Pivot]</parent-name>
<remote-alias>Pivot Field Values</remote-alias>
<ordinal>37</ordinal>
<local-type>real</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
</metadata-records>
</connection>
<aliases enabled='yes' />
<column caption='Population completed tertiary education' datatype='string' hidden='true' name='[1.1.2 Population completed tertiary education]' role='dimension' type='nominal' />
<column datatype='string' hidden='true' name='[1.1.3 Lifelong learning]' role='dimension' type='nominal' />
<column datatype='string' hidden='true' name='[1.3.1 Broadband penetration]' role='dimension' type='nominal' />
<column datatype='string' hidden='true' name='[1.3.2 Opportunity-driven entrepreneurship]' role='dimension' type='nominal' />
<column datatype='real' hidden='true' name='[2.1.1 R&D expenditure in the public sector]' role='measure' type='quantitative' />
<column datatype='string' hidden='true' name='[2.1.2 Venture capital investments]' role='dimension' type='nominal' />
<column datatype='real' hidden='true' name='[2.2.1 R&D expenditure in the business sector]' role='measure' type='quantitative' />
<column datatype='string' hidden='true' name='[2.2.2 Non-R&D innovation expenditure]' role='dimension' type='nominal' />
<column datatype='string' hidden='true' name='[2.2.3 Enterprises providing ICT training]' role='dimension' type='nominal' />
<column datatype='real' hidden='true' name='[3.1.1 SMEs with product or process innovations]' role='measure' type='quantitative' />
<column datatype='real' hidden='true' name='[3.1.2 SMEs with marketing or organisational innovations]' role='measure' type='quantitative' />
<column datatype='string' hidden='true' name='[3.1.3 SMEs innovating in-house]' role='dimension' type='nominal' />
<column datatype='real' hidden='true' name='[3.2.1 Innovative SMEs collaborating with others]' role='measure' type='quantitative' />
<column datatype='real' hidden='true' name='[3.2.2 Public-private co-publications]' role='measure' type='quantitative' />
<column datatype='string' hidden='true' name='[3.2.3 Private co-funding of public R&D expenditures]' role='dimension' type='nominal' />
<column datatype='real' hidden='true' name='[3.3.1 PCT patent applications]' role='measure' type='quantitative' />
<column datatype='real' hidden='true' name='[3.3.2 Trademark applications]' role='measure' type='quantitative' />
<column datatype='real' hidden='true' name='[3.3.3 Design applications]' role='measure' type='quantitative' />
<column datatype='real' hidden='true' name='[4.1.1 Employment in knowledge-intensive activities]' role='measure' type='quantitative' />
<column datatype='string' hidden='true' name='[4.1.2 Employment fast-growing firms innovative sectors]' role='dimension' type='nominal' />
<column datatype='real' hidden='true' name='[4.2.1 Medium & high tech product exports]' role='measure' type='quantitative' />
<column datatype='real' hidden='true' name='[4.2.2 Knowledge-intensive services exports]' role='measure' type='quantitative' />
<column datatype='real' hidden='true' name='[4.2.3 Sales of new-to-market and new-to-firm innovations]' role='measure' type='quantitative' />
<column datatype='string' name='[:Measure Names]' role='dimension' type='nominal'>
<aliases>
<alias key='"[federated.09afubu04znh5h11rwb811560m1b].[attr:Summary Innovation Index:qk]"' value='SII change 2012 vs 2019 (%)' />
<alias key='"[federated.09afubu04znh5h11rwb811560m1b].[sum:Pivot Field Values:qk]"' value='Sum of the selected trend changes 2012 vs 2019 (%)' />
</aliases>
</column>
<column datatype='real' hidden='true' name='[Employment impacts]' role='measure' type='quantitative' />
<column caption='Country' datatype='string' name='[F1]' role='dimension' semantic-role='[Country].[Name]' type='nominal' />
<column caption='Country Code' datatype='string' name='[F2]' role='dimension' semantic-role='[Country].[ISO3166_2]' type='nominal' />
<column datatype='real' hidden='true' name='[Finance and support]' role='measure' type='quantitative' />
<column datatype='real' hidden='true' name='[Firm investments]' role='measure' type='quantitative' />
<column datatype='real' hidden='true' name='[Human resources]' role='measure' type='quantitative' />
<column datatype='real' hidden='true' name='[Innovation-friendly environment]' role='measure' type='quantitative' />
<column datatype='real' hidden='true' name='[Innovators]' role='measure' type='quantitative' />
<column datatype='real' hidden='true' name='[Intellectual assets]' role='measure' type='quantitative' />
<column datatype='real' hidden='true' name='[Linkages]' role='measure' type='quantitative' />
<column caption='Research Aspect' datatype='string' name='[Pivot Field Names]' role='dimension' type='nominal' />
<column caption='Sum of the Selected Research Aspect Change 2012 vs 2019 (%)' datatype='real' name='[Pivot Field Values]' role='measure' type='quantitative' />
<column datatype='real' hidden='true' name='[Research systems]' role='measure' type='quantitative' />
<column datatype='real' hidden='true' name='[Sales impacts]' role='measure' type='quantitative' />
<column caption='Innovation Index Change 2012 vs 2019 (%)' datatype='real' name='[Summary Innovation Index]' role='measure' type='quantitative' />
<_.fcp.ObjectModelTableType.true...column caption='CHANGE 2012-2019' datatype='table' hidden='true' name='[__tableau_internal_object_id__].[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]' role='measure' type='quantitative' />
<column-instance column='[__tableau_internal_object_id__].[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]' derivation='Count' name='[__tableau_internal_object_id__].[cnt:CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85:qk]' pivot='key' type='quantitative' />
<column-instance column='[Pivot Field Values]' derivation='Attribute' name='[attr:Pivot Field Values:qk]' pivot='key' type='quantitative' />
<column-instance column='[Summary Innovation Index]' derivation='Attribute' name='[attr:Summary Innovation Index:qk]' pivot='key' type='quantitative' />
<column-instance column='[Pivot Field Values]' derivation='Avg' name='[avg:Pivot Field Values:qk]' pivot='key' type='quantitative' />
<column-instance column='[Summary Innovation Index]' derivation='Avg' name='[avg:Summary Innovation Index:qk]' pivot='key' type='quantitative' />
<column-instance column='[Pivot Field Names]' derivation='None' name='[none:Pivot Field Names:nk]' pivot='key' type='nominal' />
<column-instance column='[Pivot Field Values]' derivation='None' name='[none:Pivot Field Values:qk]' pivot='key' type='quantitative' />
<column-instance column='[Summary Innovation Index]' derivation='None' name='[none:Summary Innovation Index:qk]' pivot='key' type='quantitative' />
<column-instance column='[Pivot Field Values]' derivation='Sum' name='[sum:Pivot Field Values:qk]' pivot='key' type='quantitative' />
<column-instance column='[Summary Innovation Index]' derivation='Sum' name='[sum:Summary Innovation Index:qk]' pivot='key' type='quantitative' />
<group caption='Action (Country,Country Code,Research Aspect)' hidden='true' name='[Action (Country,Country Code,Research Aspect)]' name-style='unqualified' user:auto-column='sheet_link'>
<groupfilter function='crossjoin'>
<groupfilter function='level-members' level='[F1]' />
<groupfilter function='level-members' level='[F2]' />
<groupfilter function='level-members' level='[Pivot Field Names]' />
</groupfilter>
</group>
<group caption='Action (Research Aspect)' hidden='true' name='[Action (Research Aspect)]' name-style='unqualified' user:auto-column='sheet_link'>
<groupfilter function='crossjoin'>
<groupfilter function='level-members' level='[Pivot Field Names]' />
</groupfilter>
</group>
<extract _.fcp.ObjectModelExtractV2.true...object-id='' count='-1' enabled='true' units='records'>
<connection access_mode='readonly' authentication='auth-none' author-locale='en_US' class='hyper' dbname='/Users/robertfonod/Google Drive/WORK/UIUC/2dv/Assignments/Assignment 1 - Dashboard in Tableu/tableau-visualization/CHANGE 2012-2019 (EIS2020_database).hyper' default-settings='yes' schema='Extract' sslmode='' tablename='Extract' update-time='06/16/2021 04:17:57 PM' username='tableau_internal_user'>
<_.fcp.ObjectModelEncapsulateLegacy.false...relation name='Extract' table='[Extract].[Extract]' type='table' />
<_.fcp.ObjectModelEncapsulateLegacy.true...relation name='Extract' table='[Extract].[Extract]' type='table' />
<refresh increment-key='' incremental-updates='false'>
<refresh-event add-from-file-path='CHANGE 2012-2019 (EIS2020_database)' increment-value='%null%' refresh-type='create' rows-inserted='156' timestamp-start='2021-06-16 16:17:57.825' />
</refresh>
<metadata-records>
<metadata-record class='column'>
<remote-name>F1</remote-name>
<remote-type>129</remote-type>
<local-name>[F1]</local-name>
<parent-name>[Extract]</parent-name>
<remote-alias>F1</remote-alias>
<ordinal>0</ordinal>
<family>CHANGE 2012-2019</family>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<approx-count>39</approx-count>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>F2</remote-name>
<remote-type>129</remote-type>
<local-name>[F2]</local-name>
<parent-name>[Extract]</parent-name>
<remote-alias>F2</remote-alias>
<ordinal>1</ordinal>
<family>CHANGE 2012-2019</family>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<approx-count>39</approx-count>
<contains-null>true</contains-null>
<collation flag='1' name='LEN_RUS_S2' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Summary Innovation Index</remote-name>
<remote-type>5</remote-type>
<local-name>[Summary Innovation Index]</local-name>
<parent-name>[Extract]</parent-name>
<remote-alias>Summary Innovation Index</remote-alias>
<ordinal>2</ordinal>
<family>CHANGE 2012-2019</family>
<local-type>real</local-type>
<aggregation>Sum</aggregation>
<approx-count>39</approx-count>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Pivot Field Names</remote-name>
<remote-type>129</remote-type>
<local-name>[Pivot Field Names]</local-name>
<parent-name>[Extract]</parent-name>
<remote-alias>Pivot Field Names</remote-alias>
<ordinal>3</ordinal>
<family>Pivot</family>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<approx-count>4</approx-count>
<contains-null>true</contains-null>
<collation flag='0' name='binary' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>Pivot Field Values</remote-name>
<remote-type>5</remote-type>
<local-name>[Pivot Field Values]</local-name>
<parent-name>[Extract]</parent-name>
<remote-alias>Pivot Field Values</remote-alias>
<ordinal>4</ordinal>
<family>Pivot</family>
<local-type>real</local-type>
<aggregation>Sum</aggregation>
<approx-count>153</approx-count>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
</metadata-records>
</connection>
<filter class='categorical' column='[none:Pivot Field Names:nk]'>
<groupfilter function='level-members' level='[none:Pivot Field Names:nk]' user:ui-enumeration='all' user:ui-marker='enumerate' />
</filter>
</extract>
<layout _.fcp.SchemaViewerObjectModel.false...dim-percentage='0.5' _.fcp.SchemaViewerObjectModel.false...measure-percentage='0.4' dim-ordering='alphabetic' measure-ordering='alphabetic' show-structure='false' />
<style>
<style-rule element='mark'>
<encoding attr='shape' field='[:Measure Names]' type='shape'>
<map to='asterisk'>
<bucket>"[federated.09afubu04znh5h11rwb811560m1b].[__tableau_internal_object_id__].[cnt:CHANGE 2012-2019_D1BB44EC973F41ECB6365A80488B2A85:qk]"</bucket>
</map>
<map to='circle'>
<bucket>"[federated.09afubu04znh5h11rwb811560m1b].[sum:1.2.3 Foreign doctorate students:qk]"</bucket>
</map>
<map to='diamond'>
<bucket>"[federated.09afubu04znh5h11rwb811560m1b].[attr:Pivot Field Values:qk]"</bucket>
</map>
<map to='diamond'>
<bucket>"[federated.09afubu04znh5h11rwb811560m1b].[attr:Summary Innovation Index:qk]"</bucket>
</map>
<map to='diamond'>
<bucket>"[federated.09afubu04znh5h11rwb811560m1b].[avg:Summary Innovation Index:qk]"</bucket>
</map>
<map to='diamond'>
<bucket>"[federated.09afubu04znh5h11rwb811560m1b].[none:Pivot Field Values:qk]"</bucket>
</map>
<map to='diamond'>
<bucket>"[federated.09afubu04znh5h11rwb811560m1b].[none:Summary Innovation Index:qk]"</bucket>
</map>
<map to='diamond'>
<bucket>"[federated.09afubu04znh5h11rwb811560m1b].[sum:Pivot Field Values:qk]"</bucket>
</map>
<map to='diamond'>
<bucket>"[federated.09afubu04znh5h11rwb811560m1b].[sum:Summary Innovation Index:qk]"</bucket>
</map>
<map to='plus'>
<bucket>"[federated.09afubu04znh5h11rwb811560m1b].[sum:1.1.1 New doctorate graduates:qk]"</bucket>
</map>
<map to='square'>
<bucket>"[federated.09afubu04znh5h11rwb811560m1b].[sum:1.2.1 International scientific co-publications:qk]"</bucket>
</map>
<map to='times'>
<bucket>"[federated.09afubu04znh5h11rwb811560m1b].[sum:1.2.2 Scientific publications among top 10\% most cited:qk]"</bucket>
</map>
</encoding>
<encoding attr='shape' field='[none:Pivot Field Names:nk]' palette=':default' type='shape'>
<map to='circle'>
<bucket>"Foreign doctorate students"</bucket>
</map>
<map to='plus'>
<bucket>"New doctorate graduates"</bucket>
</map>
<map to='square'>
<bucket>"International scientific co-publications"</bucket>
</map>
<map to='times'>
<bucket>"Scientific publications among top 10\% most cited"</bucket>
</map>
</encoding>
<encoding attr='color' field='[none:Pivot Field Names:nk]' type='palette'>
<map to='#4e79a7'>
<bucket>"Foreign doctorate students"</bucket>
</map>
<map to='#76b7b2'>
<bucket>"Scientific publications among top 10\% most cited"</bucket>
</map>
<map to='#e15759'>
<bucket>"New doctorate graduates"</bucket>
</map>
<map to='#f28e2b'>
<bucket>"International scientific co-publications"</bucket>