-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWorkbook.twb
1461 lines (1460 loc) · 86.4 KB
/
Workbook.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' ?>
<workbook source-platform='win' version='9.0' xmlns:user='http://www.tableausoftware.com/xml/user'>
<!-- build 9000.15.0527.1215 -->
<preferences>
<preference name='ui.encoding.shelf.height' value='24' />
<preference name='ui.shelf.height' value='26' />
</preferences>
<datasources>
<datasource caption='output' inline='true' name='textscan.42190.815830578700' version='9.0'>
<connection class='textscan' directory='//VBOXSVR/metnum-tp2' filename='output.txt' password='' server=''>
<relation name='output#txt' table='[output#txt]' type='table'>
<columns character-set='UTF-8' header='yes' locale='en_US' separator=','>
<column datatype='integer' name='Decompose Timer' ordinal='0' />
<column datatype='string' name='Deflation Timer' ordinal='1' />
<column datatype='integer' name='Filter Dataset Timer' ordinal='2' />
<column datatype='integer' name='PCA Covariance' ordinal='3' />
<column datatype='integer' name='PCA Covariance CV' ordinal='4' />
<column datatype='integer' name='PCA Mean' ordinal='5' />
<column datatype='integer' name='PCA Mean CV' ordinal='6' />
<column datatype='integer' name='PCA Normalize CV' ordinal='7' />
<column datatype='integer' name='PCA Normalize Testing' ordinal='8' />
<column datatype='integer' name='PCA Normalize Testing CV' ordinal='9' />
<column datatype='integer' name='PCA Normalize Training' ordinal='10' />
<column datatype='string' name='Power Iteration Iteration Counter' ordinal='11' />
<column datatype='string' name='Power Iteration Timer' ordinal='12' />
<column datatype='integer' name='alpha' ordinal='13' />
<column datatype='integer' name='k' ordinal='14' />
<column datatype='integer' name='kNN Hit CV' ordinal='15' />
<column datatype='integer' name='kNN Miss CV' ordinal='16' />
<column datatype='integer' name='kNN Partition Timer' ordinal='17' />
<column datatype='integer' name='kNN Partition Timer CV' ordinal='18' />
<column datatype='integer' name='kNN Testing Timer' ordinal='19' />
<column datatype='string' name='kNN Timer' ordinal='20' />
<column datatype='integer' name='kNN Total' ordinal='21' />
<column datatype='integer' name='kNN Total CV' ordinal='22' />
<column datatype='string' name='method' ordinal='23' />
<column datatype='string' name='name' ordinal='24' />
<column datatype='integer' name='run' ordinal='25' />
</columns>
</relation>
<metadata-records>
<metadata-record class='column'>
<remote-name>Decompose Timer</remote-name>
<remote-type>20</remote-type>
<local-name>[Decompose Timer]</local-name>
<parent-name>[output#txt]</parent-name>
<remote-alias>Decompose Timer</remote-alias>
<ordinal>0</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='integer' name='DebugRemoteMetadata (size)'>8</attribute>
<attribute datatype='string' name='DebugRemoteType'>"sint64"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Deflation Timer</remote-name>
<remote-type>129</remote-type>
<local-name>[Deflation Timer]</local-name>
<parent-name>[output#txt]</parent-name>
<remote-alias>Deflation Timer</remote-alias>
<ordinal>1</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' />
<attributes>
<attribute datatype='string' name='DebugRemoteCollation'>"en_US"</attribute>
<attribute datatype='string' name='DebugRemoteMetadata (compression)'>"heap"</attribute>
<attribute datatype='integer' name='DebugRemoteMetadata (size)'>4294967292</attribute>
<attribute datatype='integer' name='DebugRemoteMetadata (storagewidth)'>8</attribute>
<attribute datatype='string' name='DebugRemoteType'>"str"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Filter Dataset Timer</remote-name>
<remote-type>20</remote-type>
<local-name>[Filter Dataset Timer]</local-name>
<parent-name>[output#txt]</parent-name>
<remote-alias>Filter Dataset Timer</remote-alias>
<ordinal>2</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='integer' name='DebugRemoteMetadata (size)'>8</attribute>
<attribute datatype='string' name='DebugRemoteType'>"sint64"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>PCA Covariance</remote-name>
<remote-type>20</remote-type>
<local-name>[PCA Covariance]</local-name>
<parent-name>[output#txt]</parent-name>
<remote-alias>PCA Covariance</remote-alias>
<ordinal>3</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='integer' name='DebugRemoteMetadata (size)'>8</attribute>
<attribute datatype='string' name='DebugRemoteType'>"sint64"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>PCA Covariance CV</remote-name>
<remote-type>20</remote-type>
<local-name>[PCA Covariance CV]</local-name>
<parent-name>[output#txt]</parent-name>
<remote-alias>PCA Covariance CV</remote-alias>
<ordinal>4</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='integer' name='DebugRemoteMetadata (size)'>8</attribute>
<attribute datatype='string' name='DebugRemoteType'>"sint64"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>PCA Mean</remote-name>
<remote-type>20</remote-type>
<local-name>[PCA Mean]</local-name>
<parent-name>[output#txt]</parent-name>
<remote-alias>PCA Mean</remote-alias>
<ordinal>5</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='integer' name='DebugRemoteMetadata (size)'>8</attribute>
<attribute datatype='string' name='DebugRemoteType'>"sint64"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>PCA Mean CV</remote-name>
<remote-type>20</remote-type>
<local-name>[PCA Mean CV]</local-name>
<parent-name>[output#txt]</parent-name>
<remote-alias>PCA Mean CV</remote-alias>
<ordinal>6</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='integer' name='DebugRemoteMetadata (size)'>8</attribute>
<attribute datatype='string' name='DebugRemoteType'>"sint64"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>PCA Normalize CV</remote-name>
<remote-type>20</remote-type>
<local-name>[PCA Normalize CV]</local-name>
<parent-name>[output#txt]</parent-name>
<remote-alias>PCA Normalize CV</remote-alias>
<ordinal>7</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='integer' name='DebugRemoteMetadata (size)'>8</attribute>
<attribute datatype='string' name='DebugRemoteType'>"sint64"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>PCA Normalize Testing</remote-name>
<remote-type>20</remote-type>
<local-name>[PCA Normalize Testing]</local-name>
<parent-name>[output#txt]</parent-name>
<remote-alias>PCA Normalize Testing</remote-alias>
<ordinal>8</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='integer' name='DebugRemoteMetadata (size)'>8</attribute>
<attribute datatype='string' name='DebugRemoteType'>"sint64"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>PCA Normalize Testing CV</remote-name>
<remote-type>20</remote-type>
<local-name>[PCA Normalize Testing CV]</local-name>
<parent-name>[output#txt]</parent-name>
<remote-alias>PCA Normalize Testing CV</remote-alias>
<ordinal>9</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='integer' name='DebugRemoteMetadata (size)'>8</attribute>
<attribute datatype='string' name='DebugRemoteType'>"sint64"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>PCA Normalize Training</remote-name>
<remote-type>20</remote-type>
<local-name>[PCA Normalize Training]</local-name>
<parent-name>[output#txt]</parent-name>
<remote-alias>PCA Normalize Training</remote-alias>
<ordinal>10</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='integer' name='DebugRemoteMetadata (size)'>8</attribute>
<attribute datatype='string' name='DebugRemoteType'>"sint64"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Power Iteration Iteration Counter</remote-name>
<remote-type>129</remote-type>
<local-name>[Power Iteration Iteration Counter]</local-name>
<parent-name>[output#txt]</parent-name>
<remote-alias>Power Iteration Iteration Counter</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' />
<attributes>
<attribute datatype='string' name='DebugRemoteCollation'>"en_US"</attribute>
<attribute datatype='string' name='DebugRemoteMetadata (compression)'>"heap"</attribute>
<attribute datatype='integer' name='DebugRemoteMetadata (size)'>4294967292</attribute>
<attribute datatype='integer' name='DebugRemoteMetadata (storagewidth)'>8</attribute>
<attribute datatype='string' name='DebugRemoteType'>"str"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>Power Iteration Timer</remote-name>
<remote-type>129</remote-type>
<local-name>[Power Iteration Timer]</local-name>
<parent-name>[output#txt]</parent-name>
<remote-alias>Power Iteration Timer</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' />
<attributes>
<attribute datatype='string' name='DebugRemoteCollation'>"en_US"</attribute>
<attribute datatype='string' name='DebugRemoteMetadata (compression)'>"heap"</attribute>
<attribute datatype='integer' name='DebugRemoteMetadata (size)'>4294967292</attribute>
<attribute datatype='integer' name='DebugRemoteMetadata (storagewidth)'>8</attribute>
<attribute datatype='string' name='DebugRemoteType'>"str"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>alpha</remote-name>
<remote-type>20</remote-type>
<local-name>[alpha]</local-name>
<parent-name>[output#txt]</parent-name>
<remote-alias>alpha</remote-alias>
<ordinal>13</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='integer' name='DebugRemoteMetadata (size)'>8</attribute>
<attribute datatype='string' name='DebugRemoteType'>"sint64"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>k</remote-name>
<remote-type>20</remote-type>
<local-name>[k]</local-name>
<parent-name>[output#txt]</parent-name>
<remote-alias>k</remote-alias>
<ordinal>14</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='integer' name='DebugRemoteMetadata (size)'>8</attribute>
<attribute datatype='string' name='DebugRemoteType'>"sint64"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>kNN Hit CV</remote-name>
<remote-type>20</remote-type>
<local-name>[kNN Hit CV]</local-name>
<parent-name>[output#txt]</parent-name>
<remote-alias>kNN Hit CV</remote-alias>
<ordinal>15</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='integer' name='DebugRemoteMetadata (size)'>8</attribute>
<attribute datatype='string' name='DebugRemoteType'>"sint64"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>kNN Miss CV</remote-name>
<remote-type>20</remote-type>
<local-name>[kNN Miss CV]</local-name>
<parent-name>[output#txt]</parent-name>
<remote-alias>kNN Miss CV</remote-alias>
<ordinal>16</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='integer' name='DebugRemoteMetadata (size)'>8</attribute>
<attribute datatype='string' name='DebugRemoteType'>"sint64"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>kNN Partition Timer</remote-name>
<remote-type>20</remote-type>
<local-name>[kNN Partition Timer]</local-name>
<parent-name>[output#txt]</parent-name>
<remote-alias>kNN Partition Timer</remote-alias>
<ordinal>17</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='integer' name='DebugRemoteMetadata (size)'>8</attribute>
<attribute datatype='string' name='DebugRemoteType'>"sint64"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>kNN Partition Timer CV</remote-name>
<remote-type>20</remote-type>
<local-name>[kNN Partition Timer CV]</local-name>
<parent-name>[output#txt]</parent-name>
<remote-alias>kNN Partition Timer CV</remote-alias>
<ordinal>18</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='integer' name='DebugRemoteMetadata (size)'>8</attribute>
<attribute datatype='string' name='DebugRemoteType'>"sint64"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>kNN Testing Timer</remote-name>
<remote-type>20</remote-type>
<local-name>[kNN Testing Timer]</local-name>
<parent-name>[output#txt]</parent-name>
<remote-alias>kNN Testing Timer</remote-alias>
<ordinal>19</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='integer' name='DebugRemoteMetadata (size)'>8</attribute>
<attribute datatype='string' name='DebugRemoteType'>"sint64"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>kNN Timer</remote-name>
<remote-type>129</remote-type>
<local-name>[kNN Timer]</local-name>
<parent-name>[output#txt]</parent-name>
<remote-alias>kNN Timer</remote-alias>
<ordinal>20</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' />
<attributes>
<attribute datatype='string' name='DebugRemoteCollation'>"en_US"</attribute>
<attribute datatype='string' name='DebugRemoteMetadata (compression)'>"heap"</attribute>
<attribute datatype='integer' name='DebugRemoteMetadata (size)'>4294967292</attribute>
<attribute datatype='integer' name='DebugRemoteMetadata (storagewidth)'>8</attribute>
<attribute datatype='string' name='DebugRemoteType'>"str"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>kNN Total</remote-name>
<remote-type>20</remote-type>
<local-name>[kNN Total]</local-name>
<parent-name>[output#txt]</parent-name>
<remote-alias>kNN Total</remote-alias>
<ordinal>21</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='integer' name='DebugRemoteMetadata (size)'>8</attribute>
<attribute datatype='string' name='DebugRemoteType'>"sint64"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>kNN Total CV</remote-name>
<remote-type>20</remote-type>
<local-name>[kNN Total CV]</local-name>
<parent-name>[output#txt]</parent-name>
<remote-alias>kNN Total CV</remote-alias>
<ordinal>22</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='integer' name='DebugRemoteMetadata (size)'>8</attribute>
<attribute datatype='string' name='DebugRemoteType'>"sint64"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>method</remote-name>
<remote-type>129</remote-type>
<local-name>[method]</local-name>
<parent-name>[output#txt]</parent-name>
<remote-alias>method</remote-alias>
<ordinal>23</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' />
<attributes>
<attribute datatype='string' name='DebugRemoteCollation'>"en_US"</attribute>
<attribute datatype='string' name='DebugRemoteMetadata (compression)'>"heap"</attribute>
<attribute datatype='integer' name='DebugRemoteMetadata (size)'>4294967292</attribute>
<attribute datatype='integer' name='DebugRemoteMetadata (storagewidth)'>8</attribute>
<attribute datatype='string' name='DebugRemoteType'>"str"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>name</remote-name>
<remote-type>129</remote-type>
<local-name>[name]</local-name>
<parent-name>[output#txt]</parent-name>
<remote-alias>name</remote-alias>
<ordinal>24</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' />
<attributes>
<attribute datatype='string' name='DebugRemoteCollation'>"en_US"</attribute>
<attribute datatype='string' name='DebugRemoteMetadata (compression)'>"heap"</attribute>
<attribute datatype='integer' name='DebugRemoteMetadata (size)'>4294967292</attribute>
<attribute datatype='integer' name='DebugRemoteMetadata (storagewidth)'>8</attribute>
<attribute datatype='string' name='DebugRemoteType'>"str"</attribute>
</attributes>
</metadata-record>
<metadata-record class='column'>
<remote-name>run</remote-name>
<remote-type>20</remote-type>
<local-name>[run]</local-name>
<parent-name>[output#txt]</parent-name>
<remote-alias>run</remote-alias>
<ordinal>25</ordinal>
<local-type>integer</local-type>
<aggregation>Sum</aggregation>
<contains-null>true</contains-null>
<attributes>
<attribute datatype='integer' name='DebugRemoteMetadata (size)'>8</attribute>
<attribute datatype='string' name='DebugRemoteType'>"sint64"</attribute>
</attributes>
</metadata-record>
<metadata-record class='capability'>
<remote-name></remote-name>
<remote-type>0</remote-type>
<parent-name>[output#txt]</parent-name>
<remote-alias></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-records>
</connection>
<aliases enabled='yes' />
<column aggregation='CountD' datatype='string' default-role='measure' default-type='quantitative' name='[Deflation Timer]' role='dimension' type='nominal'>
</column>
<column datatype='integer' name='[Number of Records]' role='measure' type='quantitative' user:auto-column='numrec'>
<calculation class='tableau' formula='1' />
</column>
<column aggregation='CountD' datatype='string' default-role='measure' default-type='quantitative' name='[Power Iteration Iteration Counter]' role='dimension' type='nominal'>
</column>
<column aggregation='CountD' datatype='string' default-role='measure' default-type='quantitative' name='[Power Iteration Timer]' role='dimension' type='nominal'>
</column>
<column aggregation='Sum' caption='Alpha' datatype='integer' name='[alpha]' role='dimension' type='ordinal'>
<aliases>
<alias key='%null%' value='kNN' />
</aliases>
</column>
<column aggregation='CountD' datatype='string' default-role='measure' default-type='quantitative' name='[kNN Timer]' role='dimension' type='nominal'>
</column>
<column aggregation='Sum' datatype='integer' name='[kNN Total CV]' role='dimension' type='ordinal'>
</column>
<column aggregation='Sum' datatype='integer' name='[kNN Total]' role='dimension' type='ordinal'>
</column>
<column aggregation='Sum' caption='K' datatype='integer' name='[k]' role='dimension' type='ordinal'>
</column>
<column caption='Method' datatype='string' name='[method]' role='dimension' type='nominal'>
</column>
<column caption='Name' datatype='string' name='[name]' role='dimension' type='nominal'>
</column>
<column aggregation='Sum' caption='Run' datatype='integer' name='[run]' role='dimension' type='ordinal'>
</column>
<column-instance column='[alpha]' derivation='None' name='[none:alpha:ok]' pivot='key' type='ordinal' />
<layout dim-ordering='alphabetic' dim-percentage='0.5' measure-ordering='alphabetic' measure-percentage='0.4' show-structure='true' />
<style>
<style-rule element='mark'>
<encoding attr='color' field='[none:alpha:ok]' type='palette'>
<map to='#1f77b4'>
<bucket>%null%</bucket>
</map>
<map to='#2ca02c'>
<bucket>39</bucket>
</map>
<map to='#7f7f7f'>
<bucket>666</bucket>
</map>
<map to='#8c564b'>
<bucket>392</bucket>
</map>
<map to='#9467bd'>
<bucket>196</bucket>
</map>
<map to='#d62728'>
<bucket>78</bucket>
</map>
<map to='#e377c2'>
<bucket>588</bucket>
</map>
<map to='#ff7f0e'>
<bucket>7</bucket>
</map>
</encoding>
</style-rule>
</style>
<semantic-values>
<semantic-value key='[Country].[Name]' value='"United States"' />
</semantic-values>
</datasource>
</datasources>
<worksheets>
<worksheet name='Miss Rate de kNN'>
<table>
<view>
<datasources>
<datasource caption='output' name='textscan.42190.815830578700' />
</datasources>
<datasource-dependencies datasource='textscan.42190.815830578700'>
<column caption='AVG([kNN Miss CV]/[kNN Total CV])' datatype='real' name='[Calculation_5020705195646226]' role='measure' type='quantitative' user:unnamed='Sheet 7'>
<calculation class='tableau' formula='AVG([kNN Miss CV]/[kNN Total CV])' />
</column>
<column aggregation='Sum' caption='Alpha' datatype='integer' name='[alpha]' role='dimension' type='ordinal'>
<aliases>
<alias key='%null%' value='kNN' />
</aliases>
</column>
<column aggregation='Sum' caption='K' datatype='integer' name='[k]' role='dimension' type='ordinal'>
</column>
<column-instance column='[alpha]' derivation='None' name='[none:alpha:ok]' pivot='key' type='ordinal' />
<column-instance column='[k]' derivation='None' name='[none:k:ok]' pivot='key' type='ordinal' />
<column-instance column='[Calculation_5020705195646226]' derivation='User' name='[usr:Calculation_5020705195646226:qk]' pivot='key' type='quantitative' />
</datasource-dependencies>
<filter class='categorical' column='[textscan.42190.815830578700].[none:alpha:ok]'>
<groupfilter function='member' level='[none:alpha:ok]' member='%null%' user:ui-domain='database' user:ui-enumeration='inclusive' user:ui-marker='enumerate' />
</filter>
<slices>
<column>[textscan.42190.815830578700].[none:alpha:ok]</column>
</slices>
<aggregation value='true' />
</view>
<style>
<style-rule element='axis'>
<format attr='title' class='0' field='[textscan.42190.815830578700].[usr:Calculation_5020705195646226:qk]' scope='rows' value='Miss Rate Promedio' />
<format attr='subtitle' class='0' field='[textscan.42190.815830578700].[usr:Calculation_5020705195646226:qk]' scope='rows' value='' />
<format attr='auto-subtitle' class='0' field='[textscan.42190.815830578700].[usr:Calculation_5020705195646226:qk]' scope='rows' value='true' />
</style-rule>
</style>
<panes>
<pane>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<style>
<style-rule element='mark'>
<format attr='mark-color' value='#b40f1e' />
</style-rule>
</style>
</pane>
</panes>
<rows>[textscan.42190.815830578700].[usr:Calculation_5020705195646226:qk]</rows>
<cols>[textscan.42190.815830578700].[none:k:ok]</cols>
</table>
</worksheet>
<worksheet name='Miss Rate de kNN + PCA'>
<table>
<view>
<datasources>
<datasource caption='output' name='textscan.42190.815830578700' />
</datasources>
<datasource-dependencies datasource='textscan.42190.815830578700'>
<column aggregation='Sum' caption='Alpha' datatype='integer' name='[alpha]' role='dimension' type='ordinal'>
<aliases>
<alias key='%null%' value='kNN' />
</aliases>
</column>
<column-instance column='[kNN Miss CV]' derivation='Avg' name='[avg:kNN Miss CV:qk]' pivot='key' type='quantitative' />
<column datatype='integer' name='[kNN Miss CV]' role='measure' type='quantitative'>
</column>
<column aggregation='Sum' caption='K' datatype='integer' name='[k]' role='dimension' type='ordinal'>
</column>
<column-instance column='[alpha]' derivation='None' name='[none:alpha:ok]' pivot='key' type='ordinal' />
<column-instance column='[k]' derivation='None' name='[none:k:ok]' pivot='key' type='ordinal' />
</datasource-dependencies>
<filter class='categorical' column='[textscan.42190.815830578700].[none:alpha:ok]'>
<groupfilter function='except' user:ui-domain='relevant' user:ui-enumeration='exclusive' user:ui-marker='enumerate'>
<groupfilter function='level-members' level='[none:alpha:ok]' />
<groupfilter function='member' level='[none:alpha:ok]' member='%null%' />
</groupfilter>
</filter>
<slices>
<column>[textscan.42190.815830578700].[none:alpha:ok]</column>
</slices>
<aggregation value='true' />
</view>
<style>
</style>
<panes>
<pane>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<style>
<style-rule element='mark'>
<format attr='mark-color' value='#b40f1e' />
</style-rule>
</style>
</pane>
</panes>
<rows>[textscan.42190.815830578700].[avg:kNN Miss CV:qk]</rows>
<cols>([textscan.42190.815830578700].[none:k:ok] / [textscan.42190.815830578700].[none:alpha:ok])</cols>
</table>
</worksheet>
<worksheet name='Sheet 3'>
<table>
<view>
<datasources>
<datasource caption='output' name='textscan.42190.815830578700' />
</datasources>
<datasource-dependencies datasource='textscan.42190.815830578700'>
<column aggregation='Sum' caption='Alpha' datatype='integer' name='[alpha]' role='dimension' type='ordinal'>
<aliases>
<alias key='%null%' value='kNN' />
</aliases>
</column>
<column-instance column='[kNN Miss CV]' derivation='Avg' name='[avg:kNN Miss CV:qk]' pivot='key' type='quantitative' />
<column datatype='integer' name='[kNN Miss CV]' role='measure' type='quantitative'>
</column>
<column aggregation='Sum' caption='K' datatype='integer' name='[k]' role='dimension' type='ordinal'>
</column>
<column-instance column='[alpha]' derivation='None' name='[none:alpha:ok]' pivot='key' type='ordinal' />
<column-instance column='[k]' derivation='None' name='[none:k:ok]' pivot='key' type='ordinal' />
</datasource-dependencies>
<aggregation value='true' />
</view>
<style>
</style>
<panes>
<pane>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
<encodings>
<color column='[textscan.42190.815830578700].[none:alpha:ok]' />
</encodings>
</pane>
</panes>
<rows>[textscan.42190.815830578700].[avg:kNN Miss CV:qk]</rows>
<cols>([textscan.42190.815830578700].[none:alpha:ok] / [textscan.42190.815830578700].[none:k:ok])</cols>
</table>
</worksheet>
<worksheet name='Sheet 4'>
<table>
<view>
<datasources>
<datasource caption='output' name='textscan.42190.815830578700' />
</datasources>
<datasource-dependencies datasource='textscan.42190.815830578700'>
<column datatype='integer' name='[Filter Dataset Timer]' role='measure' type='quantitative'>
</column>
<column datatype='integer' name='[PCA Covariance CV]' role='measure' type='quantitative'>
</column>
<column datatype='integer' name='[PCA Mean CV]' role='measure' type='quantitative'>
</column>
<column datatype='integer' name='[PCA Normalize CV]' role='measure' type='quantitative'>
</column>
<column datatype='integer' name='[PCA Normalize Testing CV]' role='measure' type='quantitative'>
</column>
<column-instance column='[Filter Dataset Timer]' derivation='Avg' name='[avg:Filter Dataset Timer:qk]' pivot='key' type='quantitative' />
<column-instance column='[PCA Covariance CV]' derivation='Avg' name='[avg:PCA Covariance CV:qk]' pivot='key' type='quantitative' />
<column-instance column='[PCA Mean CV]' derivation='Avg' name='[avg:PCA Mean CV:qk]' pivot='key' type='quantitative' />
<column-instance column='[PCA Normalize CV]' derivation='Avg' name='[avg:PCA Normalize CV:qk]' pivot='key' type='quantitative' />
<column-instance column='[PCA Normalize Testing CV]' derivation='Avg' name='[avg:PCA Normalize Testing CV:qk]' pivot='key' type='quantitative' />
<column-instance column='[kNN Partition Timer CV]' derivation='Avg' name='[avg:kNN Partition Timer CV:qk]' pivot='key' type='quantitative' />
<column datatype='integer' name='[kNN Partition Timer CV]' role='measure' type='quantitative'>
</column>
</datasource-dependencies>
<filter class='categorical' column='[textscan.42190.815830578700].[:Measure Names]'>
<groupfilter function='union' user:op='manual'>
<groupfilter function='member' level='[:Measure Names]' member='"[textscan.42190.815830578700].[avg:Filter Dataset Timer:qk]"' />
<groupfilter function='member' level='[:Measure Names]' member='"[textscan.42190.815830578700].[avg:PCA Covariance CV:qk]"' />
<groupfilter function='member' level='[:Measure Names]' member='"[textscan.42190.815830578700].[avg:PCA Mean CV:qk]"' />
<groupfilter function='member' level='[:Measure Names]' member='"[textscan.42190.815830578700].[avg:PCA Normalize CV:qk]"' />
<groupfilter function='member' level='[:Measure Names]' member='"[textscan.42190.815830578700].[avg:PCA Normalize Testing CV:qk]"' />
<groupfilter function='member' level='[:Measure Names]' member='"[textscan.42190.815830578700].[avg:kNN Partition Timer CV:qk]"' />
</groupfilter>
</filter>
<slices>
<column>[textscan.42190.815830578700].[:Measure Names]</column>
</slices>
<aggregation value='true' />
</view>
<style>
</style>
<panes>
<pane>
<view>
<breakdown value='auto' />
</view>
<mark class='Automatic' />
</pane>
</panes>
<rows>[textscan.42190.815830578700].[:Measure Names]</rows>
<cols>[textscan.42190.815830578700].[Multiple Values]</cols>
</table>
</worksheet>
</worksheets>
<dashboards>
<dashboard name='Miss Rates'>
<style>
</style>
<size maxheight='500' maxwidth='500' minheight='500' minwidth='500' />
<zones>
<zone h='100000' id='2' type='layout-basic' w='100000' x='0' y='0'>
<zone h='100000' id='5' param='horz' type='layout-flow' w='100000' x='0' y='0'>
<zone h='100000' id='3' type='layout-basic' w='99200' x='0' y='0'>
<zone h='50000' id='1' name='Miss Rate de kNN + PCA' show-title='true' w='99200' x='0' y='0'>
</zone>
<zone h='50000' id='7' name='Miss Rate de kNN' show-title='true' w='99200' x='0' y='50000'>
</zone>
</zone>
</zone>
</zone>
</zones>
</dashboard>
</dashboards>
<windows>
<window class='schema' source-height='-1' />
<window auto-hidden='0' class='worksheet' maximized='0' name='Miss Rate de kNN'>
<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>
</edge>
</cards>
<highlight>
<color-one-way>
<field>[textscan.42190.815830578700].[none:alpha:ok]</field>
<field>[textscan.42190.815830578700].[none:k:ok]</field>
</color-one-way>
</highlight>
</window>
<window auto-hidden='0' class='worksheet' maximized='0' name='Miss Rate de kNN + PCA'>
<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>
</edge>
</cards>
<highlight>
<color-one-way>
<field>[textscan.42190.815830578700].[none:alpha:ok]</field>
</color-one-way>
</highlight>
</window>
<window auto-hidden='0' class='dashboard' maximized='0' name='Miss Rates'>
<zones>
<zone name='Miss Rate de kNN + PCA'>
<viewpoint>
<zoom type='entire-view' />
</viewpoint>
<highlight>
<color-one-way>
<field>[textscan.42190.815830578700].[none:alpha:ok]</field>
</color-one-way>
</highlight>
</zone>
<zone name='Miss Rate de kNN'>
<viewpoint>
<zoom type='entire-view' />
</viewpoint>
</zone>
</zones>
</window>
<window auto-hidden='0' class='worksheet' maximized='0' name='Sheet 3'>
<cards>
<edge name='left'>
<strip size='160'>
<card type='pages' />
<card type='filters' />
<card type='marks' />
<card pane-specification-id='0' param='[textscan.42190.815830578700].[none:alpha:ok]' type='color' />
</strip>
</edge>
<edge name='top'>
<strip size='2147483647'>
<card type='columns' />
</strip>
<strip size='2147483647'>
<card type='rows' />
</strip>
</edge>
</cards>
<highlight>
<color-one-way>
<field>[textscan.42190.815830578700].[none:alpha:ok]</field>
<field>[textscan.42190.815830578700].[none:k:ok]</field>
</color-one-way>
</highlight>
</window>
<window auto-hidden='0' class='worksheet' maximized='1' name='Sheet 4'>
<cards>
<edge name='left'>
<strip size='160'>
<card type='pages' />
<card type='filters' />
<card type='marks' />
<card type='measures' />
</strip>
</edge>
<edge name='top'>
<strip size='2147483647'>
<card type='columns' />
</strip>
<strip size='2147483647'>
<card type='rows' />
</strip>
</edge>
</cards>
</window>
</windows>
<thumbnails>
<thumbnail height='192' name='Miss Rate de kNN' width='192'>
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
</thumbnail>
<thumbnail height='192' name='Miss Rate de kNN + PCA' width='192'>
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