-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyoutube.twb
5885 lines (5884 loc) · 360 KB
/
youtube.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.0623.1502 -->
<workbook original-version='18.1' source-build='2023.1.3 (20231.23.0623.1502)' source-platform='mac' version='18.1' xml:base='https://public.tableau.com' xmlns:user='http://www.tableausoftware.com/xml/user'>
<document-format-change-manifest>
<_.fcp.AccessibleZoneTabOrder.true...AccessibleZoneTabOrder />
<_.fcp.AnimationOnByDefault.true...AnimationOnByDefault />
<AutoCreateAndUpdateDSDPhoneLayouts />
<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 />
<SortTagCleanup />
<_.fcp.VConnDownstreamExtractsWithWarnings.true...VConnDownstreamExtractsWithWarnings />
<WindowsPersistSimpleIdentifiers />
<WorksheetBackgroundTransparency />
</document-format-change-manifest>
<repository-location id='YouTubeTop50VideostheWeekof84' path='/workbooks' revision='1.0' />
<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='youtube_data (youtube_data_db)' inline='true' name='federated.1h3r5h0022oyoe18bbk4i0ai0f8d' version='18.1'>
<connection class='federated'>
<named-connections>
<named-connection caption='localhost' name='postgres.16f1qkz067qqmf1dt5j7m0noe0oe'>
<connection authentication='username-password' class='postgres' dbname='youtube_data_db' one-time-sql='' port='5433' server='localhost' username='postgres' workgroup-auth-mode='as-is' />
</named-connection>
</named-connections>
<_.fcp.ObjectModelEncapsulateLegacy.false...relation connection='postgres.16f1qkz067qqmf1dt5j7m0noe0oe' name='youtube_data' table='[public].[youtube_data]' type='table' />
<_.fcp.ObjectModelEncapsulateLegacy.true...relation connection='postgres.16f1qkz067qqmf1dt5j7m0noe0oe' name='youtube_data' table='[public].[youtube_data]' type='table' />
<refresh increment-key='' incremental-updates='false' />
<metadata-records>
<metadata-record class='column'>
<remote-name>date_of_extraction</remote-name>
<remote-type>129</remote-type>
<local-name>[date_of_extraction]</local-name>
<parent-name>[youtube_data]</parent-name>
<remote-alias>date_of_extraction</remote-alias>
<ordinal>1</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<width>2147483647</width>
<contains-null>true</contains-null>
<cast-to-local-type>true</cast-to-local-type>
<collation flag='0' name='binary' />
<attributes>
<attribute datatype='string' name='TypeIsVarchar'>"true"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[youtube_data_24F56959163149D88DEDB735D402FCEA]</_.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>[youtube_data]</parent-name>
<remote-alias>country</remote-alias>
<ordinal>2</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<width>2147483647</width>
<contains-null>true</contains-null>
<cast-to-local-type>true</cast-to-local-type>
<collation flag='0' name='binary' />
<attributes>
<attribute datatype='string' name='TypeIsVarchar'>"true"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[youtube_data_24F56959163149D88DEDB735D402FCEA]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>id</remote-name>
<remote-type>129</remote-type>
<local-name>[id]</local-name>
<parent-name>[youtube_data]</parent-name>
<remote-alias>id</remote-alias>
<ordinal>3</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<width>2147483647</width>
<contains-null>true</contains-null>
<cast-to-local-type>true</cast-to-local-type>
<collation flag='0' name='binary' />
<attributes>
<attribute datatype='string' name='TypeIsVarchar'>"true"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[youtube_data_24F56959163149D88DEDB735D402FCEA]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>title</remote-name>
<remote-type>129</remote-type>
<local-name>[title]</local-name>
<parent-name>[youtube_data]</parent-name>
<remote-alias>title</remote-alias>
<ordinal>4</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<width>2147483647</width>
<contains-null>true</contains-null>
<cast-to-local-type>true</cast-to-local-type>
<collation flag='0' name='binary' />
<attributes>
<attribute datatype='string' name='TypeIsVarchar'>"true"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[youtube_data_24F56959163149D88DEDB735D402FCEA]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>channelId</remote-name>
<remote-type>129</remote-type>
<local-name>[channelId]</local-name>
<parent-name>[youtube_data]</parent-name>
<remote-alias>channelId</remote-alias>
<ordinal>5</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<width>2147483647</width>
<contains-null>true</contains-null>
<cast-to-local-type>true</cast-to-local-type>
<collation flag='0' name='binary' />
<attributes>
<attribute datatype='string' name='TypeIsVarchar'>"true"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[youtube_data_24F56959163149D88DEDB735D402FCEA]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>channelTitle</remote-name>
<remote-type>129</remote-type>
<local-name>[channelTitle]</local-name>
<parent-name>[youtube_data]</parent-name>
<remote-alias>channelTitle</remote-alias>
<ordinal>6</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<width>2147483647</width>
<contains-null>true</contains-null>
<cast-to-local-type>true</cast-to-local-type>
<collation flag='0' name='binary' />
<attributes>
<attribute datatype='string' name='TypeIsVarchar'>"true"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[youtube_data_24F56959163149D88DEDB735D402FCEA]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>category</remote-name>
<remote-type>129</remote-type>
<local-name>[category]</local-name>
<parent-name>[youtube_data]</parent-name>
<remote-alias>category</remote-alias>
<ordinal>7</ordinal>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<width>2147483647</width>
<contains-null>true</contains-null>
<cast-to-local-type>true</cast-to-local-type>
<collation flag='0' name='binary' />
<attributes>
<attribute datatype='string' name='TypeIsVarchar'>"true"</attribute>
</attributes>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[youtube_data_24F56959163149D88DEDB735D402FCEA]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>viewCount</remote-name>
<remote-type>20</remote-type>
<local-name>[viewCount]</local-name>
<parent-name>[youtube_data]</parent-name>
<remote-alias>viewCount</remote-alias>
<ordinal>8</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<precision>19</precision>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[youtube_data_24F56959163149D88DEDB735D402FCEA]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>likeCount</remote-name>
<remote-type>20</remote-type>
<local-name>[likeCount]</local-name>
<parent-name>[youtube_data]</parent-name>
<remote-alias>likeCount</remote-alias>
<ordinal>9</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<precision>19</precision>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[youtube_data_24F56959163149D88DEDB735D402FCEA]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>commentCount</remote-name>
<remote-type>20</remote-type>
<local-name>[commentCount]</local-name>
<parent-name>[youtube_data]</parent-name>
<remote-alias>commentCount</remote-alias>
<ordinal>10</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<precision>19</precision>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[youtube_data_24F56959163149D88DEDB735D402FCEA]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
</metadata-records>
</connection>
<aliases enabled='yes' />
<column datatype='string' name='[:Measure Names]' role='dimension' type='nominal'>
<aliases>
<alias key='"[federated.1h3r5h0022oyoe18bbk4i0ai0f8d].[ctd:title:qk]"' value='# of Videos Captured' />
</aliases>
</column>
<column caption='Engagment %' datatype='real' name='[Calculation_919438067563126785]' role='measure' type='quantitative'>
<calculation class='tableau' formula='(SUM([likeCount])+SUM([commentCount]))/SUM([viewCount])*100' />
</column>
<column caption='% of total views captured' datatype='real' name='[Calculation_919438067570642947]' role='measure' type='quantitative'>
<calculation class='tableau' formula='SUM([viewCount]) / TOTAL(SUM([viewCount])) * 100'>
<table-calc ordering-type='Rows' />
</calculation>
</column>
<_.fcp.ObjectModelTableType.true...column caption='youtube_data' datatype='table' name='[__tableau_internal_object_id__].[youtube_data_24F56959163149D88DEDB735D402FCEA]' role='measure' type='quantitative' />
<column caption='Category' datatype='string' name='[category]' role='dimension' type='nominal' />
<column caption='Channel Id' datatype='string' name='[channelId]' role='dimension' type='nominal' />
<column caption='Channel Title' datatype='string' name='[channelTitle]' role='dimension' type='nominal' />
<column caption='Comment Count' datatype='integer' name='[commentCount]' role='measure' type='quantitative' />
<column caption='Country' datatype='string' name='[country]' role='dimension' semantic-role='[Country].[ISO3166_2]' type='nominal' />
<column caption='Date Of Extraction' datatype='string' name='[date_of_extraction]' role='dimension' type='nominal' />
<column caption='Id' datatype='string' name='[id]' role='dimension' type='nominal' />
<column caption='Like Count' datatype='integer' name='[likeCount]' role='measure' type='quantitative' />
<column caption='Title' datatype='string' name='[title]' role='dimension' type='nominal' />
<column caption='View Count' datatype='integer' name='[viewCount]' role='measure' type='quantitative' />
<column-instance column='[title]' derivation='CountD' name='[ctd:title:qk]' pivot='key' type='quantitative' />
<column-instance column='[category]' derivation='None' name='[none:category:nk]' pivot='key' type='nominal' />
<column-instance column='[channelTitle]' derivation='None' name='[none:channelTitle:nk]' pivot='key' type='nominal' />
<column-instance column='[country]' derivation='None' name='[none:country:nk]' pivot='key' type='nominal' />
<column-instance column='[likeCount]' derivation='Sum' name='[sum:likeCount:qk]' pivot='key' type='quantitative' />
<column-instance column='[viewCount]' derivation='Sum' name='[sum:viewCount:qk]' pivot='key' type='quantitative' />
<extract _.fcp.ObjectModelExtractV2.true...object-id='' _.fcp.VConnDownstreamExtractsWithWarnings.true...user-specific='false' count='-1' enabled='true' units='records'>
<connection access_mode='readonly' authentication='auth-none' author-locale='en_US' class='hyper' dbname='/Users/laceymorgan/Documents/My Tableau Repository/Datasources/youtube_data (youtube_data_db).hyper' default-settings='yes' schema='Extract' sslmode='' tablename='Extract' update-time='08/08/2023 02:54:00 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='youtube_data (youtube_data_db)' increment-value='%null%' refresh-type='create' rows-inserted='1762' timestamp-start='2023-08-08 14:54:00.329' />
</refresh>
<metadata-records>
<metadata-record class='column'>
<remote-name>date_of_extraction</remote-name>
<remote-type>129</remote-type>
<local-name>[date_of_extraction]</local-name>
<parent-name>[Extract]</parent-name>
<remote-alias>date_of_extraction</remote-alias>
<ordinal>0</ordinal>
<family>youtube_data</family>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<approx-count>5</approx-count>
<contains-null>true</contains-null>
<collation flag='0' name='binary' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[youtube_data_24F56959163149D88DEDB735D402FCEA]</_.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>[Extract]</parent-name>
<remote-alias>country</remote-alias>
<ordinal>1</ordinal>
<family>youtube_data</family>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<approx-count>6</approx-count>
<contains-null>true</contains-null>
<collation flag='0' name='binary' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[youtube_data_24F56959163149D88DEDB735D402FCEA]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>id</remote-name>
<remote-type>129</remote-type>
<local-name>[id]</local-name>
<parent-name>[Extract]</parent-name>
<remote-alias>id</remote-alias>
<ordinal>2</ordinal>
<family>youtube_data</family>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<approx-count>708</approx-count>
<contains-null>true</contains-null>
<collation flag='0' name='binary' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[youtube_data_24F56959163149D88DEDB735D402FCEA]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>title</remote-name>
<remote-type>129</remote-type>
<local-name>[title]</local-name>
<parent-name>[Extract]</parent-name>
<remote-alias>title</remote-alias>
<ordinal>3</ordinal>
<family>youtube_data</family>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<approx-count>713</approx-count>
<contains-null>true</contains-null>
<collation flag='0' name='binary' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[youtube_data_24F56959163149D88DEDB735D402FCEA]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>channelId</remote-name>
<remote-type>129</remote-type>
<local-name>[channelId]</local-name>
<parent-name>[Extract]</parent-name>
<remote-alias>channelId</remote-alias>
<ordinal>4</ordinal>
<family>youtube_data</family>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<approx-count>621</approx-count>
<contains-null>true</contains-null>
<collation flag='0' name='binary' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[youtube_data_24F56959163149D88DEDB735D402FCEA]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>channelTitle</remote-name>
<remote-type>129</remote-type>
<local-name>[channelTitle]</local-name>
<parent-name>[Extract]</parent-name>
<remote-alias>channelTitle</remote-alias>
<ordinal>5</ordinal>
<family>youtube_data</family>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<approx-count>621</approx-count>
<contains-null>true</contains-null>
<collation flag='0' name='binary' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[youtube_data_24F56959163149D88DEDB735D402FCEA]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>category</remote-name>
<remote-type>129</remote-type>
<local-name>[category]</local-name>
<parent-name>[Extract]</parent-name>
<remote-alias>category</remote-alias>
<ordinal>6</ordinal>
<family>youtube_data</family>
<local-type>string</local-type>
<aggregation>Count</aggregation>
<approx-count>15</approx-count>
<contains-null>true</contains-null>
<collation flag='0' name='binary' />
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[youtube_data_24F56959163149D88DEDB735D402FCEA]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>viewCount</remote-name>
<remote-type>20</remote-type>
<local-name>[viewCount]</local-name>
<parent-name>[Extract]</parent-name>
<remote-alias>viewCount</remote-alias>
<ordinal>7</ordinal>
<family>youtube_data</family>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<approx-count>1151</approx-count>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[youtube_data_24F56959163149D88DEDB735D402FCEA]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>likeCount</remote-name>
<remote-type>20</remote-type>
<local-name>[likeCount]</local-name>
<parent-name>[Extract]</parent-name>
<remote-alias>likeCount</remote-alias>
<ordinal>8</ordinal>
<family>youtube_data</family>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<approx-count>1256</approx-count>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[youtube_data_24F56959163149D88DEDB735D402FCEA]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
<metadata-record class='column'>
<remote-name>commentCount</remote-name>
<remote-type>20</remote-type>
<local-name>[commentCount]</local-name>
<parent-name>[Extract]</parent-name>
<remote-alias>commentCount</remote-alias>
<ordinal>9</ordinal>
<family>youtube_data</family>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<approx-count>965</approx-count>
<contains-null>true</contains-null>
<_.fcp.ObjectModelEncapsulateLegacy.true...object-id>[youtube_data_24F56959163149D88DEDB735D402FCEA]</_.fcp.ObjectModelEncapsulateLegacy.true...object-id>
</metadata-record>
</metadata-records>
</connection>
</extract>
<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='[:Measure Names]' type='palette'>
<map to='#4e79a7'>
<bucket>"[federated.1h3r5h0022oyoe18bbk4i0ai0f8d].[ctd:title:qk]"</bucket>
</map>
<map to='#e15759'>
<bucket>"[federated.1h3r5h0022oyoe18bbk4i0ai0f8d].[none:category:nk]"</bucket>
</map>
<map to='#e15759'>
<bucket>"[federated.1h3r5h0022oyoe18bbk4i0ai0f8d].[sum:viewCount:qk]"</bucket>
</map>
<map to='#f28e2b'>
<bucket>"[federated.1h3r5h0022oyoe18bbk4i0ai0f8d].[sum:likeCount:qk]"</bucket>
</map>
</encoding>
<encoding attr='color' field='[none:channelTitle:nk]' type='palette'>
<map to='#499894'>
<bucket>"Anny May Day"</bucket>
</map>
<map to='#499894'>
<bucket>"Bizante"</bucket>
</map>
<map to='#499894'>
<bucket>"CiaraVEVO"</bucket>
</map>
<map to='#499894'>
<bucket>"Dil Raju"</bucket>
</map>
<map to='#499894'>
<bucket>"ESPN FC"</bucket>
</map>
<map to='#499894'>
<bucket>"Gabe Follower"</bucket>
</map>
<map to='#499894'>
<bucket>"Hanna"</bucket>
</map>
<map to='#499894'>
<bucket>"IKITERU【イキテル】"</bucket>
</map>
<map to='#499894'>
<bucket>"Jorge & Mateus Oficial"</bucket>
</map>
<map to='#499894'>
<bucket>"Knarfy"</bucket>
</map>
<map to='#499894'>
<bucket>"Live Insaan"</bucket>
</map>
<map to='#499894'>
<bucket>"Matemática para Concurso"</bucket>
</map>
<map to='#499894'>
<bucket>"Motoren Zimmer"</bucket>
</map>
<map to='#499894'>
<bucket>"Nick vlogs"</bucket>
</map>
<map to='#499894'>
<bucket>"Pocket FM India"</bucket>
</map>
<map to='#499894'>
<bucket>"Renzo"</bucket>
</map>
<map to='#499894'>
<bucket>"SAWAYAN CHANNEL / サワヤン チャンネル"</bucket>
</map>
<map to='#499894'>
<bucket>"Sourav Joshi Vlogs"</bucket>
</map>
<map to='#499894'>
<bucket>"T-Series Tamil"</bucket>
</map>
<map to='#499894'>
<bucket>"TheMacLife"</bucket>
</map>
<map to='#499894'>
<bucket>"Werder Bremen"</bucket>
</map>
<map to='#499894'>
<bucket>"acoolfifa"</bucket>
</map>
<map to='#499894'>
<bucket>"varlamov"</bucket>
</map>
<map to='#499894'>
<bucket>"Алексей Навальный"</bucket>
</map>
<map to='#499894'>
<bucket>"ЕвгенБро"</bucket>
</map>
<map to='#499894'>
<bucket>"ОХ"</bucket>
</map>
<map to='#499894'>
<bucket>"めざましテレビチャンネル"</bucket>
</map>
<map to='#499894'>
<bucket>"エガちゃんねる 〜替えのパンツ〜"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"1. FC Union Berlin"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"AlineBarrosVEVO"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Ayush More"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Cash"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Das schaffst du nie!"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Elli Di"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Flowers Comedy"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Grupo Frontera"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"HomeAnimations - Мультики про танки"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Jesser"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"KAYCEE WONDERLAND"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Léo e Raphael"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Manalo Mana Maata"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"MinuteTech"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Nate Diaz"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Paty"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Rainimator"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Ryguyrocky"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Summer Cem"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"The Emirates FA Cup"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Unico Online"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Viwa Food World"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"ZÉ DA ROÇA E SUA TURMA"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"smotraTV"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Денис Кукояка"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Маруся Черничкина"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"Ульяна Столярова"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"デニスの怖いYouTube"</bucket>
</map>
<map to='#4e79a7'>
<bucket>"日常組"</bucket>
</map>
<map to='#59a14f'>
<bucket>"A4"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Amit Tandon"</bucket>
</map>
<map to='#59a14f'>
<bucket>"BangerChannel"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Cem TV"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Der Held"</bucket>
</map>
<map to='#59a14f'>
<bucket>"England & Wales Cricket Board"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Freshtorge"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Halle77 Dortmund"</bucket>
</map>
<map to='#59a14f'>
<bucket>"How Ridiculous"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Joe Speen"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Kesley Jade"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Lidy Almeida"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Marcio Guerra Canto"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Moinus Vlogs"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Nesk Only"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Pen Movies"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Salvador da Rima"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Sony SAB"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Suresh Artist"</bucket>
</map>
<map to='#59a14f'>
<bucket>"The Rock"</bucket>
</map>
<map to='#59a14f'>
<bucket>"VALORANT Esports BR"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Wave Music"</bucket>
</map>
<map to='#59a14f'>
<bucket>"rbb Doku"</bucket>
</map>
<map to='#59a14f'>
<bucket>"zpsanek"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Дмитрий Гордон"</bucket>
</map>
<map to='#59a14f'>
<bucket>"Мир Танков. Официальный видеоканал"</bucket>
</map>
<map to='#59a14f'>
<bucket>"バンカラジオ / Bankaradio"</bucket>
</map>
<map to='#59a14f'>
<bucket>"進撃のノア shingeki noa"</bucket>
</map>
<map to='#59a14f'>
<bucket>"소맥거핀"</bucket>
</map>
<map to='#79706e'>
<bucket>"ARTE Concert"</bucket>
</map>
<map to='#79706e'>
<bucket>"Affe auf Bike"</bucket>
</map>
<map to='#79706e'>
<bucket>"Borussia Mönchengladbach"</bucket>
</map>
<map to='#79706e'>
<bucket>"CORiiNGA"</bucket>
</map>
<map to='#79706e'>
<bucket>"DoktorWeigl"</bucket>
</map>
<map to='#79706e'>
<bucket>"FC Bayern München"</bucket>
</map>
<map to='#79706e'>
<bucket>"GameStar"</bucket>
</map>
<map to='#79706e'>
<bucket>"Henrique Carvalho"</bucket>
</map>
<map to='#79706e'>
<bucket>"Ishaani Krishna"</bucket>
</map>
<map to='#79706e'>
<bucket>"KREOSAN "</bucket>
</map>
<map to='#79706e'>
<bucket>"LUAR LA L"</bucket>
</map>
<map to='#79706e'>
<bucket>"Mazhavil Manorama"</bucket>
</map>
<map to='#79706e'>
<bucket>"MrWissen2go"</bucket>
</map>
<map to='#79706e'>
<bucket>"O Primo Rico"</bucket>
</map>
<map to='#79706e'>
<bucket>"Rezende 2"</bucket>
</map>
<map to='#79706e'>
<bucket>"SSundee"</bucket>
</map>
<map to='#79706e'>
<bucket>"Settled"</bucket>
</map>
<map to='#79706e'>
<bucket>"TBS公式 YouTuboo"</bucket>
</map>
<map to='#79706e'>
<bucket>"Tonigon"</bucket>
</map>
<map to='#79706e'>
<bucket>"Viacom18 Studios"</bucket>
</map>
<map to='#79706e'>
<bucket>"Wunba"</bucket>
</map>
<map to='#79706e'>
<bucket>"jun channel"</bucket>
</map>
<map to='#79706e'>
<bucket>"pressnews tv"</bucket>
</map>
<map to='#79706e'>
<bucket>"К-Media"</bucket>
</map>
<map to='#79706e'>
<bucket>"Роблером"</bucket>
</map>
<map to='#79706e'>
<bucket>"апвоут"</bucket>
</map>
<map to='#79706e'>
<bucket>"くれいじーまぐねっと CrazyMagnet"</bucket>
</map>
<map to='#79706e'>
<bucket>"乃木坂配信中"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Adeline Camargo"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Apex Legends"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Blaulichtreport&Stormchasing"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Clash Royale"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Dimple Malhan Vlogs"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Eva Morozova"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Gabriel Henrique"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Hansa-TV"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Jovem Pan Esportes"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Knossi"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"LOVECARS!TV!"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Matthias Malmedie"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"MrBeast"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"POD DELAS"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Scott The Woz"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"SpaceX"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Tael Family"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Thugesh Unfiltered"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"VarzishTV"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Wichtiger"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"iling show"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"niklas on fire"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"reporter"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Андрей Скутерец"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Жизнь Других"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"Паша Осадчий"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"れじぇくん"</bucket>
</map>
<map to='#86bcb6'>
<bucket>"カチョックTV・ティナちゃんねる"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"Abirz Kitchen"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"Anand Audio"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"BAROLO VÍDEOS"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"Chael Sonnen"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"Dhruv Rathee Vlogs"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"ENO"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"Fritz Meinecke - Live"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"HUM TV"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"HalleVEVO"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"JONATHAN GAMING"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"Liebscher & Bracht | Die Schmerzspezialisten"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"Marco Kaschuba"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"Montana & Ryan"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"Netflix India"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"Play Sports"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"Redação Ninho"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"Sam O'Nella Academy"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"SonyMusicSouthVEVO"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"Suryan FM"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"The Slow Mo Guys"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"VANDELEY"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"We 3"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"Zubeda Ali"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"kevingatesTV"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"МЯТНЫЙ"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"доктор Евдокименко"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"アニメ『おでかけ子ザメ』チャンネル"</bucket>
</map>
<map to='#8cd17d'>
<bucket>"フブキCh。白上フブキ"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Alexandra Posnova"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Avine"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Carter Sharer"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Czarsk"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Flamingo"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Gomathi's Kitchen"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Holdik Live"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Jason Derulo"</bucket>
</map>
<map to='#9d7660'>
<bucket>"KATJA KRASAVICE MUSIC"</bucket>
</map>
<map to='#9d7660'>
<bucket>"LeKoopa"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Major League Soccer"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Milano Official"</bucket>
</map>
<map to='#9d7660'>
<bucket>"MySpass Stand-up"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Paramount+ Brasil"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Quantum Games"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Ruchi and Piyush"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Slayy Point"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Suhana Basheer"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Thanga Nari"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Turbo-Gockel"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Vinny Piano"</bucket>
</map>
<map to='#9d7660'>
<bucket>"YourMovieSucksDOTorg"</bucket>
</map>
<map to='#9d7660'>
<bucket>"eldeno"</bucket>
</map>
<map to='#9d7660'>
<bucket>"Гаражные Махинаторы"</bucket>