-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclustering_pattern.csv
We can't make this file beautiful and searchable because it's too large.
4698 lines (4698 loc) · 539 KB
/
clustering_pattern.csv
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
,shapiq,pointbiserialr_r_pb,function,type,dataset,mehtod,ascending
0,0.0707279288499214,-0.4248249735702688,ScaleFeature,forest,Dataset 1:worm_neuron_cell,Graphsc,
1,0.06107951135290328,-0.395547607343132,FilterGenesTopK,forest,Dataset 1:worm_neuron_cell,Graphsc,
2,0.04701315390120592,-0.18311294341060802,ScTransform,forest,Dataset 1:worm_neuron_cell,Graphsc,
3,0.04441453739097759,-0.10596811579881396,NormalizePlaceHolder,forest,Dataset 1:worm_neuron_cell,Graphsc,
4,0.027267435596379307,0.17728719953862682,ScTransformxHighlyVariableGenesRawCount,forest,Dataset 1:worm_neuron_cell,Graphsc,
5,0.0234140862027856,-0.16424220428404554,ScaleFeaturexFilterGenesTopK,forest,Dataset 1:worm_neuron_cell,Graphsc,
6,0.021826201821336343,-0.14491102017404614,HighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 1:worm_neuron_cell,Graphsc,
7,0.020509069673586698,0.27301476553218385,FilterGenesRegression,forest,Dataset 1:worm_neuron_cell,Graphsc,
8,0.02016397672726526,,NormalizePlaceHolderxScTransform,forest,Dataset 1:worm_neuron_cell,Graphsc,
9,0.019213911064062728,0.2355601859461549,NormalizeTotal,forest,Dataset 1:worm_neuron_cell,Graphsc,
10,0.017149055833779348,,ScTransformxScaleFeature,forest,Dataset 1:worm_neuron_cell,Graphsc,
11,0.01613509026630027,,NormalizePlaceHolderxScaleFeature,forest,Dataset 1:worm_neuron_cell,Graphsc,
12,0.015986829525030097,0.21083678164588712,NormalizePlaceHolderxFilterGenesRegression,forest,Dataset 1:worm_neuron_cell,Graphsc,
13,0.015704907012704054,-0.16424220428404557,ScTransformxFilterGenesTopK,forest,Dataset 1:worm_neuron_cell,Graphsc,
14,0.01520814467246434,-0.16424220428404554,NormalizePlaceHolderxFilterGenesTopK,forest,Dataset 1:worm_neuron_cell,Graphsc,
15,0.011610880181426208,,NormalizePlaceHolderxNormalizeTotal,forest,Dataset 1:worm_neuron_cell,Graphsc,
16,0.01083315738362968,-0.06940890130315508,HighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 1:worm_neuron_cell,Graphsc,
17,0.010278921294614524,,ScTransformxScaleFeaturexHighlyVariableGenesRawCount,forest,Dataset 1:worm_neuron_cell,Graphsc,
18,0.009737589431999137,,NormalizeTotalxScTransform,forest,Dataset 1:worm_neuron_cell,Graphsc,
19,0.009180175549750685,-0.0623465441747331,FilterCellsScanpyOrderxScTransform,forest,Dataset 1:worm_neuron_cell,Graphsc,
20,0.008404075949340832,,ScTransformxFilterGenesTopKxHighlyVariableGenesRawCount,forest,Dataset 1:worm_neuron_cell,Graphsc,
21,0.008039521504651323,-0.16424220428404554,NormalizePlaceHolderxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 1:worm_neuron_cell,Graphsc,
22,0.007940868048478855,-0.16424220428404554,ScaleFeaturexHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 1:worm_neuron_cell,Graphsc,
23,0.007876046759293749,,NormalizeTotalxScaleFeature,forest,Dataset 1:worm_neuron_cell,Graphsc,
24,0.007785489424802769,,NormalizePlaceHolderxScTransformxFilterGenesTopK,forest,Dataset 1:worm_neuron_cell,Graphsc,
25,0.007749682548959322,,NormalizePlaceHolderxScTransformxScaleFeature,forest,Dataset 1:worm_neuron_cell,Graphsc,
26,0.007588365053731689,,ScTransformxScaleFeaturexFilterGenesTopK,forest,Dataset 1:worm_neuron_cell,Graphsc,
27,0.007387618659380805,0.05048650632841133,FilterCellsScanpyOrder,forest,Dataset 1:worm_neuron_cell,Graphsc,
28,0.006763584570890763,,FilterGenesTopKxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 1:worm_neuron_cell,Graphsc,
29,0.00676301686637056,-0.16424220428404554,NormalizeTotalxFilterGenesTopK,forest,Dataset 1:worm_neuron_cell,Graphsc,
30,0.006402410292691019,,NormalizePlaceHolderxScaleFeaturexFilterGenesTopK,forest,Dataset 1:worm_neuron_cell,Graphsc,
31,0.006315150848900336,-0.14493111162225744,ScaleFeaturexFilterGenesRegression,forest,Dataset 1:worm_neuron_cell,Graphsc,
32,0.006266509971526657,0.02036286740878944,FilterGenesScanpyOrderxScTransformxHighlyVariableGenesRawCount,forest,Dataset 1:worm_neuron_cell,Graphsc,
33,0.005736814882018071,0.07798035411929766,FilterGenesPlaceHolder,forest,Dataset 1:worm_neuron_cell,Graphsc,
34,0.005727290399450279,,NormalizePlaceHolderxScTransformxFilterGenesRegression,forest,Dataset 1:worm_neuron_cell,Graphsc,
35,0.005615538940137423,,NormalizePlaceHolderxNormalizeTotalxScTransform,forest,Dataset 1:worm_neuron_cell,Graphsc,
36,0.005595715827625174,,NormalizePlaceHolderxScaleFeaturexFilterGenesRegression,forest,Dataset 1:worm_neuron_cell,Graphsc,
37,0.005499806075870991,,HighlyVariableGenesLogarithmizedByTopGenesxHighlyVariableGenesRawCount,forest,Dataset 1:worm_neuron_cell,Graphsc,
38,0.005425493672867077,,FilterGenesRegressionxFilterGenesTopK,forest,Dataset 1:worm_neuron_cell,Graphsc,
39,0.0050435190864814225,-0.14898954818009807,ScTransformxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 1:worm_neuron_cell,Graphsc,
40,0.005008916275157992,-0.05606659266797221,ScTransformxFilterGenesRegression,forest,Dataset 1:worm_neuron_cell,Graphsc,
41,0.004931795736414575,-0.16424220428404557,NormalizePlaceHolderxHighlyVariableGenesRawCount,forest,Dataset 1:worm_neuron_cell,Graphsc,
42,0.004760325945225508,,NormalizePlaceHolderxNormalizeTotalxScaleFeature,forest,Dataset 1:worm_neuron_cell,Graphsc,
43,0.004310449812015101,-0.024088231176315155,FilterGenesScanpyOrderxHighlyVariableGenesRawCount,forest,Dataset 1:worm_neuron_cell,Graphsc,
44,0.004286032510708162,,NormalizePlaceHolderxNormalizeTotalxFilterGenesTopK,forest,Dataset 1:worm_neuron_cell,Graphsc,
45,0.004081163890552903,,NormalizeTotalxScTransformxScaleFeature,forest,Dataset 1:worm_neuron_cell,Graphsc,
46,0.0039842723577604225,-0.14151956029061405,FilterGenesScanpyOrderxScTransform,forest,Dataset 1:worm_neuron_cell,Graphsc,
47,0.0039811258146935195,,NormalizePlaceHolderxFilterGenesRegressionxFilterGenesTopK,forest,Dataset 1:worm_neuron_cell,Graphsc,
48,0.003942989561503775,,NormalizePlaceHolderxHighlyVariableGenesLogarithmizedByMeanAndDispxHighlyVariableGenesRawCount,forest,Dataset 1:worm_neuron_cell,Graphsc,
49,0.0038750360451876094,,NormalizeTotalxScTransformxFilterGenesTopK,forest,Dataset 1:worm_neuron_cell,Graphsc,
50,0.0038362823905789853,,NormalizePlaceHolderxScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 1:worm_neuron_cell,Graphsc,
51,,,FilterCellsPlaceHolder,apriori,Dataset 1:worm_neuron_cell,Graphsc,False
52,,,FilterCellsScanpyOrder,apriori,Dataset 1:worm_neuron_cell,Graphsc,False
53,,,FilterGenesPlaceHolder,apriori,Dataset 1:worm_neuron_cell,Graphsc,False
54,,,FilterGenesRegression,apriori,Dataset 1:worm_neuron_cell,Graphsc,False
55,,,Log1P,apriori,Dataset 1:worm_neuron_cell,Graphsc,False
56,,,WeightedFeaturePCA,apriori,Dataset 1:worm_neuron_cell,Graphsc,False
57,,,WeightedFeatureSVD,apriori,Dataset 1:worm_neuron_cell,Graphsc,False
58,,,FilterGenesPlaceHolderxFilterCellsPlaceHolder,apriori,Dataset 1:worm_neuron_cell,Graphsc,False
59,,,FilterCellsPlaceHolderxLog1P,apriori,Dataset 1:worm_neuron_cell,Graphsc,False
60,,,FilterGenesPlaceHolderxFilterCellsScanpyOrder,apriori,Dataset 1:worm_neuron_cell,Graphsc,False
61,,,FilterCellsScanpyOrderxLog1P,apriori,Dataset 1:worm_neuron_cell,Graphsc,False
62,,,FilterGenesPlaceHolderxLog1P,apriori,Dataset 1:worm_neuron_cell,Graphsc,False
63,,,FilterGenesPlaceHolderxWeightedFeaturePCA,apriori,Dataset 1:worm_neuron_cell,Graphsc,False
64,,,FilterGenesPlaceHolderxWeightedFeatureSVD,apriori,Dataset 1:worm_neuron_cell,Graphsc,False
65,,,FilterGenesRegressionxLog1P,apriori,Dataset 1:worm_neuron_cell,Graphsc,False
66,,,WeightedFeaturePCAxLog1P,apriori,Dataset 1:worm_neuron_cell,Graphsc,False
67,,,WeightedFeatureSVDxLog1P,apriori,Dataset 1:worm_neuron_cell,Graphsc,False
68,,,FilterCellsPlaceHolder,apriori,Dataset 1:worm_neuron_cell,Graphsc,True
69,,,FilterCellsScanpyOrder,apriori,Dataset 1:worm_neuron_cell,Graphsc,True
70,,,FilterGenesPercentile,apriori,Dataset 1:worm_neuron_cell,Graphsc,True
71,,,FilterGenesPlaceHolder,apriori,Dataset 1:worm_neuron_cell,Graphsc,True
72,,,FilterGenesRegression,apriori,Dataset 1:worm_neuron_cell,Graphsc,True
73,,,FilterGenesScanpyOrder,apriori,Dataset 1:worm_neuron_cell,Graphsc,True
74,,,ScTransform,apriori,Dataset 1:worm_neuron_cell,Graphsc,True
75,,,ScaleFeature,apriori,Dataset 1:worm_neuron_cell,Graphsc,True
76,,,WeightedFeaturePCA,apriori,Dataset 1:worm_neuron_cell,Graphsc,True
77,,,WeightedFeatureSVD,apriori,Dataset 1:worm_neuron_cell,Graphsc,True
78,,,ScaleFeaturexFilterCellsPlaceHolder,apriori,Dataset 1:worm_neuron_cell,Graphsc,True
79,,,ScaleFeaturexFilterCellsScanpyOrder,apriori,Dataset 1:worm_neuron_cell,Graphsc,True
80,,,WeightedFeaturePCAxFilterCellsScanpyOrder,apriori,Dataset 1:worm_neuron_cell,Graphsc,True
81,,,WeightedFeatureSVDxFilterCellsScanpyOrder,apriori,Dataset 1:worm_neuron_cell,Graphsc,True
82,,,FilterGenesPlaceHolderxScaleFeature,apriori,Dataset 1:worm_neuron_cell,Graphsc,True
83,,,FilterGenesRegressionxScaleFeature,apriori,Dataset 1:worm_neuron_cell,Graphsc,True
84,,,ScaleFeaturexWeightedFeaturePCA,apriori,Dataset 1:worm_neuron_cell,Graphsc,True
85,,,WeightedFeatureSVDxScaleFeature,apriori,Dataset 1:worm_neuron_cell,Graphsc,True
86,0.08250122891139997,-0.392684409511296,ScaleFeature,forest,Dataset 2:mouse_bladder_cell,Graphsc,
87,0.07416113209822937,-0.38583246512104746,FilterGenesTopK,forest,Dataset 2:mouse_bladder_cell,Graphsc,
88,0.05738722776814604,-0.2161159895654985,HighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 2:mouse_bladder_cell,Graphsc,
89,0.0525945367130571,-0.1890546750579679,HighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 2:mouse_bladder_cell,Graphsc,
90,0.05016672520383422,-0.027229584941311336,ScTransform,forest,Dataset 2:mouse_bladder_cell,Graphsc,
91,0.045726934594012676,-0.09507859639422661,NormalizeTotal,forest,Dataset 2:mouse_bladder_cell,Graphsc,
92,0.027873803353371022,0.04499208406915959,NormalizePlaceHolder,forest,Dataset 2:mouse_bladder_cell,Graphsc,
93,0.027778117391360317,-0.14310137478795554,ScaleFeaturexFilterGenesTopK,forest,Dataset 2:mouse_bladder_cell,Graphsc,
94,0.02761716478751671,0.12952713602079366,FilterGenesScanpyOrder,forest,Dataset 2:mouse_bladder_cell,Graphsc,
95,0.024834879337684353,-0.06440579762056457,FilterGenesScanpyOrderxScaleFeature,forest,Dataset 2:mouse_bladder_cell,Graphsc,
96,0.022551219080450227,-0.13095024499616537,ScaleFeaturexHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 2:mouse_bladder_cell,Graphsc,
97,0.021792413458022207,,NormalizeTotalxScTransform,forest,Dataset 2:mouse_bladder_cell,Graphsc,
98,0.01884553827890602,,ScTransformxScaleFeature,forest,Dataset 2:mouse_bladder_cell,Graphsc,
99,0.017342016165916022,,HighlyVariableGenesLogarithmizedByMeanAndDispxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 2:mouse_bladder_cell,Graphsc,
100,0.017028442904877088,-0.20222597820777086,NormalizePlaceHolderxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 2:mouse_bladder_cell,Graphsc,
101,0.016139805943099692,-0.10105829060959944,FilterGenesScanpyOrderxFilterGenesTopK,forest,Dataset 2:mouse_bladder_cell,Graphsc,
102,0.015942847776656905,-0.2022259782077709,NormalizePlaceHolderxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 2:mouse_bladder_cell,Graphsc,
103,0.015688607676527362,,NormalizeTotalxScaleFeature,forest,Dataset 2:mouse_bladder_cell,Graphsc,
104,0.015168414853036787,,FilterGenesTopKxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 2:mouse_bladder_cell,Graphsc,
105,0.014926761349410629,,NormalizePlaceHolderxScTransform,forest,Dataset 2:mouse_bladder_cell,Graphsc,
106,0.014635410231390145,,FilterGenesTopKxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 2:mouse_bladder_cell,Graphsc,
107,0.014189129336858768,-0.20222597820777086,ScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 2:mouse_bladder_cell,Graphsc,
108,0.013477356465713219,-0.17460226267483234,ScTransformxFilterGenesTopK,forest,Dataset 2:mouse_bladder_cell,Graphsc,
109,0.013229014686957348,,NormalizePlaceHolderxNormalizeTotal,forest,Dataset 2:mouse_bladder_cell,Graphsc,
110,0.011812720674550182,,NormalizePlaceHolderxNormalizeTotalxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 2:mouse_bladder_cell,Graphsc,
111,0.01137886332658526,,NormalizePlaceHolderxScTransformxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 2:mouse_bladder_cell,Graphsc,
112,0.011144596667631861,,NormalizePlaceHolderxNormalizeTotalxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 2:mouse_bladder_cell,Graphsc,
113,0.011083277207324755,,NormalizePlaceHolderxScTransformxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 2:mouse_bladder_cell,Graphsc,
114,0.01101894907587429,-0.07668061697543473,ScTransformxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 2:mouse_bladder_cell,Graphsc,
115,0.010748324084251902,-0.08192076816891951,ScTransformxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 2:mouse_bladder_cell,Graphsc,
116,0.01005242420915975,-0.11543591254728648,FilterGenesScanpyOrderxScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 2:mouse_bladder_cell,Graphsc,
117,0.009983317496495505,-0.20222597820777086,NormalizeTotalxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 2:mouse_bladder_cell,Graphsc,
118,0.009822368164866174,-0.19864061525817933,NormalizeTotalxFilterGenesTopK,forest,Dataset 2:mouse_bladder_cell,Graphsc,
119,0.009640932976186081,,NormalizePlaceHolderxScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 2:mouse_bladder_cell,Graphsc,
120,0.009620613441892486,,NormalizePlaceHolderxScaleFeature,forest,Dataset 2:mouse_bladder_cell,Graphsc,
121,0.009379207552780735,-0.01418627177041422,FilterGenesScanpyOrderxScaleFeaturexFilterGenesTopK,forest,Dataset 2:mouse_bladder_cell,Graphsc,
122,0.009271581688107636,0.059377586376233596,FilterCellsScanpyOrder,forest,Dataset 2:mouse_bladder_cell,Graphsc,
123,0.00912843592904989,,NormalizePlaceHolderxScaleFeaturexHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 2:mouse_bladder_cell,Graphsc,
124,0.0089600036918869,-0.2022259782077709,NormalizeTotalxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 2:mouse_bladder_cell,Graphsc,
125,0.00875284156906451,0.034219708735037685,FilterCellsScanpyOrderxScTransform,forest,Dataset 2:mouse_bladder_cell,Graphsc,
126,0.008605950992000627,,NormalizeTotalxScTransformxScaleFeature,forest,Dataset 2:mouse_bladder_cell,Graphsc,
127,0.008463399996326788,,NormalizePlaceHolderxHighlyVariableGenesLogarithmizedByMeanAndDispxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 2:mouse_bladder_cell,Graphsc,
128,0.008296993982184097,,NormalizeTotalxScTransformxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 2:mouse_bladder_cell,Graphsc,
129,0.007976587146493222,,NormalizeTotalxScTransformxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 2:mouse_bladder_cell,Graphsc,
130,0.007838516483595548,-0.07933348149950958,FilterGenesPlaceHolder,forest,Dataset 2:mouse_bladder_cell,Graphsc,
131,0.00782952795079561,,NormalizePlaceHolderxNormalizeTotalxScTransform,forest,Dataset 2:mouse_bladder_cell,Graphsc,
132,0.007648001545517582,0.04541924002510523,NormalizeTotalxHighlyVariableGenesRawCount,forest,Dataset 2:mouse_bladder_cell,Graphsc,
133,0.007422828585380268,-0.10929605384712328,FilterGenesScanpyOrderxNormalizeTotalxFilterGenesTopK,forest,Dataset 2:mouse_bladder_cell,Graphsc,
134,0.007217474194865835,-0.15812442996849843,NormalizePlaceHolderxFilterGenesTopK,forest,Dataset 2:mouse_bladder_cell,Graphsc,
135,0.00721245727547591,,NormalizePlaceHolderxFilterGenesTopKxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 2:mouse_bladder_cell,Graphsc,
136,0.00692746146759099,,NormalizeTotalxScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 2:mouse_bladder_cell,Graphsc,
137,,,FilterCellsPlaceHolder,apriori,Dataset 2:mouse_bladder_cell,Graphsc,False
138,,,FilterCellsScanpyOrder,apriori,Dataset 2:mouse_bladder_cell,Graphsc,False
139,,,FilterGenesPercentile,apriori,Dataset 2:mouse_bladder_cell,Graphsc,False
140,,,FilterGenesPlaceHolder,apriori,Dataset 2:mouse_bladder_cell,Graphsc,False
141,,,FilterGenesRegression,apriori,Dataset 2:mouse_bladder_cell,Graphsc,False
142,,,FilterGenesScanpyOrder,apriori,Dataset 2:mouse_bladder_cell,Graphsc,False
143,,,Log1P,apriori,Dataset 2:mouse_bladder_cell,Graphsc,False
144,,,NormalizePlaceHolder,apriori,Dataset 2:mouse_bladder_cell,Graphsc,False
145,,,WeightedFeaturePCA,apriori,Dataset 2:mouse_bladder_cell,Graphsc,False
146,,,WeightedFeatureSVD,apriori,Dataset 2:mouse_bladder_cell,Graphsc,False
147,,,WeightedFeatureSVDxFilterCellsPlaceHolder,apriori,Dataset 2:mouse_bladder_cell,Graphsc,False
148,,,FilterGenesScanpyOrderxFilterCellsScanpyOrder,apriori,Dataset 2:mouse_bladder_cell,Graphsc,False
149,,,FilterCellsScanpyOrderxLog1P,apriori,Dataset 2:mouse_bladder_cell,Graphsc,False
150,,,WeightedFeatureSVDxFilterCellsScanpyOrder,apriori,Dataset 2:mouse_bladder_cell,Graphsc,False
151,,,WeightedFeatureSVDxFilterGenesPercentile,apriori,Dataset 2:mouse_bladder_cell,Graphsc,False
152,,,FilterGenesScanpyOrderxLog1P,apriori,Dataset 2:mouse_bladder_cell,Graphsc,False
153,,,WeightedFeatureSVDxFilterGenesScanpyOrder,apriori,Dataset 2:mouse_bladder_cell,Graphsc,False
154,,,WeightedFeatureSVDxLog1P,apriori,Dataset 2:mouse_bladder_cell,Graphsc,False
155,,,FilterCellsPlaceHolder,apriori,Dataset 2:mouse_bladder_cell,Graphsc,True
156,,,FilterCellsScanpyOrder,apriori,Dataset 2:mouse_bladder_cell,Graphsc,True
157,,,FilterGenesPercentile,apriori,Dataset 2:mouse_bladder_cell,Graphsc,True
158,,,FilterGenesPlaceHolder,apriori,Dataset 2:mouse_bladder_cell,Graphsc,True
159,,,FilterGenesTopK,apriori,Dataset 2:mouse_bladder_cell,Graphsc,True
160,,,ScaleFeature,apriori,Dataset 2:mouse_bladder_cell,Graphsc,True
161,,,WeightedFeaturePCA,apriori,Dataset 2:mouse_bladder_cell,Graphsc,True
162,,,WeightedFeatureSVD,apriori,Dataset 2:mouse_bladder_cell,Graphsc,True
163,,,ScaleFeaturexFilterCellsPlaceHolder,apriori,Dataset 2:mouse_bladder_cell,Graphsc,True
164,,,ScaleFeaturexFilterCellsScanpyOrder,apriori,Dataset 2:mouse_bladder_cell,Graphsc,True
165,,,ScaleFeaturexFilterGenesPercentile,apriori,Dataset 2:mouse_bladder_cell,Graphsc,True
166,,,FilterGenesPlaceHolderxScaleFeature,apriori,Dataset 2:mouse_bladder_cell,Graphsc,True
167,,,ScaleFeaturexWeightedFeaturePCA,apriori,Dataset 2:mouse_bladder_cell,Graphsc,True
168,,,WeightedFeatureSVDxScaleFeature,apriori,Dataset 2:mouse_bladder_cell,Graphsc,True
169,0.0942465850014589,-0.4234260609363531,ScaleFeature,forest,Dataset 3: 10X_PBMC,Graphsc,
170,0.08013285200065366,-0.38609366813789997,FilterGenesTopK,forest,Dataset 3: 10X_PBMC,Graphsc,
171,0.04866950778184228,-0.16230569716367868,HighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 3: 10X_PBMC,Graphsc,
172,0.045756042044316374,-0.08415474985729655,NormalizeTotal,forest,Dataset 3: 10X_PBMC,Graphsc,
173,0.045636358347141345,0.06629460902471818,ScTransform,forest,Dataset 3: 10X_PBMC,Graphsc,
174,0.044234667454567014,-0.07017633265586969,NormalizePlaceHolder,forest,Dataset 3: 10X_PBMC,Graphsc,
175,0.04291060284440077,-0.12513067561265492,HighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 3: 10X_PBMC,Graphsc,
176,0.03040731738074004,-0.16230955073628728,ScaleFeaturexFilterGenesTopK,forest,Dataset 3: 10X_PBMC,Graphsc,
177,0.022298122370325264,-0.12050973715692899,FilterGenesPlaceHolder,forest,Dataset 3: 10X_PBMC,Graphsc,
178,0.020150317099723997,,NormalizePlaceHolderxNormalizeTotal,forest,Dataset 3: 10X_PBMC,Graphsc,
179,0.02000493087172455,,NormalizePlaceHolderxScTransform,forest,Dataset 3: 10X_PBMC,Graphsc,
180,0.019297577627293967,,NormalizeTotalxScTransform,forest,Dataset 3: 10X_PBMC,Graphsc,
181,0.018287221998590036,-0.17492602289619325,FilterGenesPlaceHolderxNormalizeTotal,forest,Dataset 3: 10X_PBMC,Graphsc,
182,0.017915621723784518,-0.07525978256309641,FilterCellsScanpyOrder,forest,Dataset 3: 10X_PBMC,Graphsc,
183,0.017718485305031194,0.13297412003641373,FilterGenesScanpyOrder,forest,Dataset 3: 10X_PBMC,Graphsc,
184,0.017384785926276396,,ScTransformxScaleFeature,forest,Dataset 3: 10X_PBMC,Graphsc,
185,0.016755622083389564,-0.15757304428949814,ScaleFeaturexHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 3: 10X_PBMC,Graphsc,
186,0.016670508325987085,-0.18498044903153704,NormalizePlaceHolderxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 3: 10X_PBMC,Graphsc,
187,0.016041175522179853,-0.14144117052613314,FilterGenesPlaceHolderxNormalizePlaceHolder,forest,Dataset 3: 10X_PBMC,Graphsc,
188,0.015795399629588976,,NormalizeTotalxScaleFeature,forest,Dataset 3: 10X_PBMC,Graphsc,
189,0.015513308937617008,,NormalizePlaceHolderxScaleFeature,forest,Dataset 3: 10X_PBMC,Graphsc,
190,0.01498265282266114,-0.18498044903153704,ScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 3: 10X_PBMC,Graphsc,
191,0.014692322377785031,-0.18498044903153704,NormalizeTotalxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 3: 10X_PBMC,Graphsc,
192,0.014234775099624107,,HighlyVariableGenesLogarithmizedByMeanAndDispxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 3: 10X_PBMC,Graphsc,
193,0.014154493953373244,-0.16383907454013924,NormalizeTotalxFilterGenesTopK,forest,Dataset 3: 10X_PBMC,Graphsc,
194,0.0140816781242574,-0.05356716440747429,ScTransformxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 3: 10X_PBMC,Graphsc,
195,0.01407549843713816,-0.15537052210570246,NormalizePlaceHolderxFilterGenesTopK,forest,Dataset 3: 10X_PBMC,Graphsc,
196,0.013618998451947702,-0.18498044903153704,NormalizePlaceHolderxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 3: 10X_PBMC,Graphsc,
197,0.012818390566275486,,FilterGenesTopKxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 3: 10X_PBMC,Graphsc,
198,0.012663808767889868,-0.15351257026128096,FilterGenesScanpyOrderxScaleFeature,forest,Dataset 3: 10X_PBMC,Graphsc,
199,0.012078456533745549,-0.18498044903153704,NormalizeTotalxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 3: 10X_PBMC,Graphsc,
200,0.01205942334363737,-0.17962840595869392,ScTransformxFilterGenesTopK,forest,Dataset 3: 10X_PBMC,Graphsc,
201,0.011708276586291864,,FilterGenesTopKxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 3: 10X_PBMC,Graphsc,
202,0.011633737935039364,0.05085824816333621,FilterCellsScanpyOrderxScTransform,forest,Dataset 3: 10X_PBMC,Graphsc,
203,0.011194107088959123,-0.0734155168070612,FilterGenesPlaceHolderxFilterCellsScanpyOrder,forest,Dataset 3: 10X_PBMC,Graphsc,
204,0.01099699454843167,-0.14411009443954334,FilterGenesScanpyOrderxFilterGenesTopK,forest,Dataset 3: 10X_PBMC,Graphsc,
205,0.010782679686962726,-0.007047942043039855,ScTransformxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 3: 10X_PBMC,Graphsc,
206,0.010735132500197149,,NormalizePlaceHolderxScTransformxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 3: 10X_PBMC,Graphsc,
207,0.010734378349442924,,NormalizePlaceHolderxNormalizeTotalxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 3: 10X_PBMC,Graphsc,
208,0.010646947892247943,,NormalizeTotalxScTransformxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 3: 10X_PBMC,Graphsc,
209,0.010336402566228167,,NormalizePlaceHolderxNormalizeTotalxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 3: 10X_PBMC,Graphsc,
210,0.010240748466520644,,NormalizePlaceHolderxNormalizeTotalxScTransform,forest,Dataset 3: 10X_PBMC,Graphsc,
211,0.009839310137296916,-0.05632230459961022,FilterGenesPlaceHolderxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 3: 10X_PBMC,Graphsc,
212,0.009496362015791505,-0.07832997784001694,FilterGenesPlaceHolderxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 3: 10X_PBMC,Graphsc,
213,0.009305737974527079,-0.2620437928855219,FilterGenesPlaceHolderxScaleFeature,forest,Dataset 3: 10X_PBMC,Graphsc,
214,0.008706032898879517,,NormalizePlaceHolderxScaleFeaturexHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 3: 10X_PBMC,Graphsc,
215,0.0084356954411332,,NormalizePlaceHolderxNormalizeTotalxScaleFeature,forest,Dataset 3: 10X_PBMC,Graphsc,
216,0.008293898123060956,,NormalizePlaceHolderxScTransformxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 3: 10X_PBMC,Graphsc,
217,0.008211529704011723,,NormalizePlaceHolderxScTransformxScaleFeature,forest,Dataset 3: 10X_PBMC,Graphsc,
218,0.008091318890997897,,NormalizePlaceHolderxScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 3: 10X_PBMC,Graphsc,
219,0.008035614316609537,,NormalizeTotalxHighlyVariableGenesLogarithmizedByMeanAndDispxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 3: 10X_PBMC,Graphsc,
220,,,FilterCellsPlaceHolder,apriori,Dataset 3: 10X_PBMC,Graphsc,False
221,,,FilterGenesPlaceHolder,apriori,Dataset 3: 10X_PBMC,Graphsc,False
222,,,Log1P,apriori,Dataset 3: 10X_PBMC,Graphsc,False
223,,,WeightedFeaturePCA,apriori,Dataset 3: 10X_PBMC,Graphsc,False
224,,,WeightedFeatureSVD,apriori,Dataset 3: 10X_PBMC,Graphsc,False
225,,,FilterGenesPlaceHolderxFilterCellsPlaceHolder,apriori,Dataset 3: 10X_PBMC,Graphsc,False
226,,,FilterCellsPlaceHolderxLog1P,apriori,Dataset 3: 10X_PBMC,Graphsc,False
227,,,WeightedFeaturePCAxFilterCellsPlaceHolder,apriori,Dataset 3: 10X_PBMC,Graphsc,False
228,,,WeightedFeatureSVDxFilterCellsPlaceHolder,apriori,Dataset 3: 10X_PBMC,Graphsc,False
229,,,FilterGenesPlaceHolderxLog1P,apriori,Dataset 3: 10X_PBMC,Graphsc,False
230,,,FilterGenesPlaceHolderxWeightedFeatureSVD,apriori,Dataset 3: 10X_PBMC,Graphsc,False
231,,,WeightedFeaturePCAxLog1P,apriori,Dataset 3: 10X_PBMC,Graphsc,False
232,,,WeightedFeatureSVDxLog1P,apriori,Dataset 3: 10X_PBMC,Graphsc,False
233,,,WeightedFeaturePCAxFilterCellsPlaceHolderxLog1P,apriori,Dataset 3: 10X_PBMC,Graphsc,False
234,,,WeightedFeatureSVDxFilterCellsPlaceHolderxLog1P,apriori,Dataset 3: 10X_PBMC,Graphsc,False
235,,,FilterCellsPlaceHolder,apriori,Dataset 3: 10X_PBMC,Graphsc,True
236,,,FilterCellsScanpyOrder,apriori,Dataset 3: 10X_PBMC,Graphsc,True
237,,,FilterGenesPercentile,apriori,Dataset 3: 10X_PBMC,Graphsc,True
238,,,FilterGenesPlaceHolder,apriori,Dataset 3: 10X_PBMC,Graphsc,True
239,,,FilterGenesTopK,apriori,Dataset 3: 10X_PBMC,Graphsc,True
240,,,ScaleFeature,apriori,Dataset 3: 10X_PBMC,Graphsc,True
241,,,WeightedFeaturePCA,apriori,Dataset 3: 10X_PBMC,Graphsc,True
242,,,WeightedFeatureSVD,apriori,Dataset 3: 10X_PBMC,Graphsc,True
243,,,ScaleFeaturexFilterCellsPlaceHolder,apriori,Dataset 3: 10X_PBMC,Graphsc,True
244,,,FilterCellsScanpyOrderxFilterGenesPercentile,apriori,Dataset 3: 10X_PBMC,Graphsc,True
245,,,FilterGenesTopKxFilterCellsScanpyOrder,apriori,Dataset 3: 10X_PBMC,Graphsc,True
246,,,FilterGenesTopKxFilterGenesPercentile,apriori,Dataset 3: 10X_PBMC,Graphsc,True
247,,,ScaleFeaturexFilterGenesPercentile,apriori,Dataset 3: 10X_PBMC,Graphsc,True
248,,,WeightedFeaturePCAxFilterGenesPercentile,apriori,Dataset 3: 10X_PBMC,Graphsc,True
249,,,WeightedFeatureSVDxFilterGenesPercentile,apriori,Dataset 3: 10X_PBMC,Graphsc,True
250,,,FilterGenesPlaceHolderxScaleFeature,apriori,Dataset 3: 10X_PBMC,Graphsc,True
251,,,ScaleFeaturexWeightedFeaturePCA,apriori,Dataset 3: 10X_PBMC,Graphsc,True
252,,,WeightedFeatureSVDxScaleFeature,apriori,Dataset 3: 10X_PBMC,Graphsc,True
253,0.0468583924152594,-0.33143454477888246,ScaleFeature,forest,Dataset 4:human_ILCS_cell,Graphsc,
254,0.03781168310564032,-0.2995422844983055,FilterGenesTopK,forest,Dataset 4:human_ILCS_cell,Graphsc,
255,0.03638918326032042,-0.2553234968260935,HighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 4:human_ILCS_cell,Graphsc,
256,0.035962538273792595,-0.1899442806507147,ScTransform,forest,Dataset 4:human_ILCS_cell,Graphsc,
257,0.02063204739903674,0.015942049002375284,NormalizeTotal,forest,Dataset 4:human_ILCS_cell,Graphsc,
258,0.019348965460694183,-0.04206438540640776,ScTransformxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 4:human_ILCS_cell,Graphsc,
259,0.01747600029137498,-0.029329927741277028,FilterGenesPlaceHolderxScTransform,forest,Dataset 4:human_ILCS_cell,Graphsc,
260,0.015897012782028277,0.10294492942546009,NormalizePlaceHolder,forest,Dataset 4:human_ILCS_cell,Graphsc,
261,0.014924657043392778,-0.1231745649367314,ScaleFeaturexFilterGenesTopK,forest,Dataset 4:human_ILCS_cell,Graphsc,
262,0.014443720278995572,-0.12495113892333512,ScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 4:human_ILCS_cell,Graphsc,
263,0.013986107369827529,-0.130707632403164,FilterGenesPlaceHolderxNormalizePlaceHolder,forest,Dataset 4:human_ILCS_cell,Graphsc,
264,0.013182342994825267,-0.08793060416344624,FilterGenesPlaceHolder,forest,Dataset 4:human_ILCS_cell,Graphsc,
265,0.013145270968338778,,ScTransformxScaleFeature,forest,Dataset 4:human_ILCS_cell,Graphsc,
266,0.012378893885450314,,NormalizePlaceHolderxNormalizeTotal,forest,Dataset 4:human_ILCS_cell,Graphsc,
267,0.012030884768420652,0.26051824551888325,HighlyVariableGenesRawCount,forest,Dataset 4:human_ILCS_cell,Graphsc,
268,0.011641207203052364,,FilterGenesTopKxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 4:human_ILCS_cell,Graphsc,
269,0.01134294712877478,-0.12400915324906117,ScTransformxFilterGenesTopK,forest,Dataset 4:human_ILCS_cell,Graphsc,
270,0.01107208164452565,-0.1249511389233351,NormalizePlaceHolderxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 4:human_ILCS_cell,Graphsc,
271,0.010842811210770378,-0.12495113892333512,NormalizeTotalxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 4:human_ILCS_cell,Graphsc,
272,0.01013086190679684,-0.1308721182327802,FilterGenesPlaceHolderxNormalizeTotal,forest,Dataset 4:human_ILCS_cell,Graphsc,
273,0.009207330078846582,,NormalizeTotalxScTransform,forest,Dataset 4:human_ILCS_cell,Graphsc,
274,0.008872313657840516,-0.01699422496918743,ScTransformxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 4:human_ILCS_cell,Graphsc,
275,0.008077780162219429,,ScTransformxScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 4:human_ILCS_cell,Graphsc,
276,0.007956110810484033,,FilterGenesPlaceHolderxNormalizePlaceHolderxNormalizeTotal,forest,Dataset 4:human_ILCS_cell,Graphsc,
277,0.007668582113405335,,NormalizeTotalxScaleFeature,forest,Dataset 4:human_ILCS_cell,Graphsc,
278,0.007603879114024452,-0.11263129918748996,FilterGenesPlaceHolderxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 4:human_ILCS_cell,Graphsc,
279,0.007590095103809485,-0.12495113892333512,NormalizeTotalxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 4:human_ILCS_cell,Graphsc,
280,0.007378325824937477,,FilterGenesPlaceHolderxNormalizePlaceHolderxScTransform,forest,Dataset 4:human_ILCS_cell,Graphsc,
281,0.007340425978823657,0.03784850429989366,HighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 4:human_ILCS_cell,Graphsc,
282,0.0072827221490937965,,NormalizePlaceHolderxScTransform,forest,Dataset 4:human_ILCS_cell,Graphsc,
283,0.007082043639480816,-0.12580973642607757,NormalizeTotalxFilterGenesTopK,forest,Dataset 4:human_ILCS_cell,Graphsc,
284,0.0070093518594748945,0.06682233529784411,FilterGenesPlaceHolderxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 4:human_ILCS_cell,Graphsc,
285,0.006833366989935425,,ScTransformxFilterGenesTopKxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 4:human_ILCS_cell,Graphsc,
286,0.006709144237222142,,FilterGenesPlaceHolderxNormalizePlaceHolderxScaleFeature,forest,Dataset 4:human_ILCS_cell,Graphsc,
287,0.0066231282701829704,,NormalizePlaceHolderxNormalizeTotalxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 4:human_ILCS_cell,Graphsc,
288,0.0064050051614064135,,NormalizeTotalxScTransformxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 4:human_ILCS_cell,Graphsc,
289,0.00633240021024843,,NormalizePlaceHolderxScTransformxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 4:human_ILCS_cell,Graphsc,
290,0.006213157761210683,,NormalizePlaceHolderxScaleFeature,forest,Dataset 4:human_ILCS_cell,Graphsc,
291,0.006081914034416676,-0.12495113892333512,NormalizePlaceHolderxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 4:human_ILCS_cell,Graphsc,
292,0.005971266541475764,-0.17695802615370787,FilterGenesPlaceHolderxScaleFeature,forest,Dataset 4:human_ILCS_cell,Graphsc,
293,0.00576989494513067,,NormalizeTotalxScaleFeaturexHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 4:human_ILCS_cell,Graphsc,
294,0.005767653375147953,,NormalizePlaceHolderxNormalizeTotalxScTransform,forest,Dataset 4:human_ILCS_cell,Graphsc,
295,0.005716893540068546,,FilterGenesPlaceHolderxNormalizeTotalxScTransform,forest,Dataset 4:human_ILCS_cell,Graphsc,
296,0.0057112712699113255,,NormalizePlaceHolderxScaleFeaturexHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 4:human_ILCS_cell,Graphsc,
297,0.005608985783354336,,ScTransformxScaleFeaturexFilterGenesTopK,forest,Dataset 4:human_ILCS_cell,Graphsc,
298,0.005552690346996266,,ScaleFeaturexFilterGenesTopKxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 4:human_ILCS_cell,Graphsc,
299,0.005437015602146046,-0.12942599678387134,NormalizePlaceHolderxFilterGenesTopK,forest,Dataset 4:human_ILCS_cell,Graphsc,
300,0.005231181907201773,-0.07132539979912281,FilterGenesPlaceHolderxNormalizePlaceHolderxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 4:human_ILCS_cell,Graphsc,
301,0.005157243442291983,,FilterGenesPlaceHolderxNormalizeTotalxScaleFeature,forest,Dataset 4:human_ILCS_cell,Graphsc,
302,0.005088261865022064,,NormalizePlaceHolderxNormalizeTotalxScaleFeature,forest,Dataset 4:human_ILCS_cell,Graphsc,
303,0.004906107060487839,-0.07551257407597499,FilterGenesPlaceHolderxNormalizePlaceHolderxFilterGenesTopK,forest,Dataset 4:human_ILCS_cell,Graphsc,
304,,,FilterCellsPlaceHolder,apriori,Dataset 4:human_ILCS_cell,Graphsc,False
305,,,FilterCellsScanpyOrder,apriori,Dataset 4:human_ILCS_cell,Graphsc,False
306,,,FilterGenesPercentile,apriori,Dataset 4:human_ILCS_cell,Graphsc,False
307,,,FilterGenesPlaceHolder,apriori,Dataset 4:human_ILCS_cell,Graphsc,False
308,,,FilterGenesScanpyOrder,apriori,Dataset 4:human_ILCS_cell,Graphsc,False
309,,,HighlyVariableGenesLogarithmizedByTopGenes,apriori,Dataset 4:human_ILCS_cell,Graphsc,False
310,,,HighlyVariableGenesRawCount,apriori,Dataset 4:human_ILCS_cell,Graphsc,False
311,,,Log1P,apriori,Dataset 4:human_ILCS_cell,Graphsc,False
312,,,NormalizePlaceHolder,apriori,Dataset 4:human_ILCS_cell,Graphsc,False
313,,,WeightedFeaturePCA,apriori,Dataset 4:human_ILCS_cell,Graphsc,False
314,,,WeightedFeatureSVD,apriori,Dataset 4:human_ILCS_cell,Graphsc,False
315,,,WeightedFeaturePCAxFilterCellsPlaceHolder,apriori,Dataset 4:human_ILCS_cell,Graphsc,False
316,,,FilterCellsScanpyOrderxLog1P,apriori,Dataset 4:human_ILCS_cell,Graphsc,False
317,,,FilterGenesPlaceHolderxLog1P,apriori,Dataset 4:human_ILCS_cell,Graphsc,False
318,,,Log1PxHighlyVariableGenesLogarithmizedByTopGenes,apriori,Dataset 4:human_ILCS_cell,Graphsc,False
319,,,WeightedFeaturePCAxLog1P,apriori,Dataset 4:human_ILCS_cell,Graphsc,False
320,,,FilterCellsPlaceHolder,apriori,Dataset 4:human_ILCS_cell,Graphsc,True
321,,,FilterCellsScanpyOrder,apriori,Dataset 4:human_ILCS_cell,Graphsc,True
322,,,FilterGenesPercentile,apriori,Dataset 4:human_ILCS_cell,Graphsc,True
323,,,FilterGenesPlaceHolder,apriori,Dataset 4:human_ILCS_cell,Graphsc,True
324,,,FilterGenesTopK,apriori,Dataset 4:human_ILCS_cell,Graphsc,True
325,,,ScaleFeature,apriori,Dataset 4:human_ILCS_cell,Graphsc,True
326,,,WeightedFeaturePCA,apriori,Dataset 4:human_ILCS_cell,Graphsc,True
327,,,WeightedFeatureSVD,apriori,Dataset 4:human_ILCS_cell,Graphsc,True
328,,,FilterGenesTopKxFilterCellsPlaceHolder,apriori,Dataset 4:human_ILCS_cell,Graphsc,True
329,,,FilterCellsScanpyOrderxFilterGenesPercentile,apriori,Dataset 4:human_ILCS_cell,Graphsc,True
330,,,FilterGenesTopKxFilterCellsScanpyOrder,apriori,Dataset 4:human_ILCS_cell,Graphsc,True
331,,,WeightedFeatureSVDxFilterCellsScanpyOrder,apriori,Dataset 4:human_ILCS_cell,Graphsc,True
332,,,FilterGenesTopKxFilterGenesPercentile,apriori,Dataset 4:human_ILCS_cell,Graphsc,True
333,,,WeightedFeatureSVDxFilterGenesPercentile,apriori,Dataset 4:human_ILCS_cell,Graphsc,True
334,,,WeightedFeatureSVDxFilterGenesTopK,apriori,Dataset 4:human_ILCS_cell,Graphsc,True
335,0.17205442851914793,0.5334134429002025,ScTransform,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
336,0.11644125935116989,-0.4285864866461348,FilterGenesTopK,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
337,0.062000936599046506,-0.3162115919833152,ScaleFeature,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
338,0.05620475905070695,-0.1690739768083259,ScTransformxFilterGenesTopK,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
339,0.055551119547978235,-0.19184087915622589,NormalizeTotal,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
340,0.05353202578034018,-0.24228641653401561,NormalizePlaceHolder,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
341,0.048064474288571316,0.2587281975667068,FilterGenesRegression,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
342,0.04667954301721479,0.22108034612846497,HighlyVariableGenesRawCount,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
343,0.036387996853986145,,NormalizePlaceHolderxNormalizeTotal,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
344,0.03289067752367035,0.16022052406816628,ScaleFeaturexFilterGenesRegression,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
345,0.026167617620550098,0.2472023457842141,ScTransformxHighlyVariableGenesRawCount,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
346,0.02496240519769531,,NormalizeTotalxScaleFeature,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
347,0.024565571945380747,-0.1700443867020819,ScaleFeaturexHighlyVariableGenesRawCount,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
348,0.022439028146360392,,ScTransformxScaleFeature,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
349,0.02225645538340829,,NormalizePlaceHolderxScaleFeature,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
350,0.022026291409005732,,NormalizeTotalxScTransform,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
351,0.021141450674932765,-0.09692313572611982,FilterGenesPlaceHolder,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
352,0.02018307894278732,,NormalizePlaceHolderxScTransform,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
353,0.020143343384775445,0.1397645201942184,NormalizeTotalxHighlyVariableGenesRawCount,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
354,0.020073445650796065,0.027682926999454634,FilterGenesPlaceHolderxHighlyVariableGenesRawCount,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
355,0.0199126973078864,-0.17892538840604136,NormalizeTotalxFilterGenesTopK,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
356,0.019242563222214022,-0.18032979200504248,ScaleFeaturexFilterGenesTopK,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
357,0.01831167491085378,-0.17997043752564765,NormalizePlaceHolderxFilterGenesTopK,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
358,0.01740750722254628,0.2876080151311342,ScTransformxFilterGenesRegression,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
359,0.016579831049883805,,NormalizePlaceHolderxNormalizeTotalxScaleFeature,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
360,0.016376803393573548,0.02298054997464147,ScaleFeaturexFilterGenesRegressionxWeightedFeatureSVD,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
361,0.01616173770717036,-0.06305384247826368,WeightedFeatureSVD,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
362,0.014894679563166998,,NormalizePlaceHolderxNormalizeTotalxScTransform,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
363,0.014137369616022967,-0.07361658083323289,HighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
364,0.013883652876686433,0.10545158251986597,NormalizePlaceHolderxHighlyVariableGenesRawCount,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
365,0.013671889446865588,,NormalizePlaceHolderxNormalizeTotalxFilterGenesTopK,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
366,0.013287200674315118,,ScTransformxScaleFeaturexFilterGenesRegression,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
367,0.011914912657362003,-0.03420175077814306,FilterGenesPlaceHolderxNormalizeTotalxHighlyVariableGenesRawCount,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
368,0.011899552020692665,,NormalizePlaceHolderxNormalizeTotalxHighlyVariableGenesRawCount,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
369,0.011147312307661307,-0.047986465611512465,HighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
370,0.010921760332904104,0.13364302610478548,FilterGenesRegressionxWeightedFeatureSVD,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
371,0.010840172778723019,,NormalizeTotalxScaleFeaturexHighlyVariableGenesRawCount,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
372,0.01081653070679716,,NormalizeTotalxScaleFeaturexFilterGenesTopK,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
373,0.010756699592747776,,NormalizeTotalxScTransformxScaleFeature,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
374,0.010321469874395747,,ScaleFeaturexFilterGenesRegressionxFilterGenesTopK,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
375,0.010147986148812857,,NormalizePlaceHolderxScaleFeaturexFilterGenesTopK,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
376,0.010038316147403772,,NormalizeTotalxScTransformxHighlyVariableGenesRawCount,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
377,0.009932112407332909,,ScTransformxScaleFeaturexFilterGenesTopK,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
378,0.009927228014391748,,NormalizeTotalxScTransformxFilterGenesTopK,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
379,0.009927193484917331,,NormalizePlaceHolderxScTransformxScaleFeature,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
380,0.00929822398356402,,NormalizePlaceHolderxScTransformxFilterGenesTopK,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
381,0.008374393750522848,-0.09683663407447765,FilterGenesPlaceHolderxScaleFeaturexHighlyVariableGenesRawCount,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
382,0.008214120460208831,,FilterGenesRegressionxHighlyVariableGenesRawCount,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
383,0.008150617061069199,-0.20010316723514868,FilterGenesPlaceHolderxNormalizeTotal,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
384,0.008021246232329159,-0.17444544882912613,FilterGenesPlaceHolderxScaleFeature,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
385,0.007849622503977426,,NormalizePlaceHolderxScaleFeaturexHighlyVariableGenesRawCount,forest,Dataset 5:mouse_kidney_cl2,Graphsc,
386,,,FilterCellsPlaceHolder,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,False
387,,,FilterCellsScanpyOrder,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,False
388,,,FilterGenesPercentile,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,False
389,,,FilterGenesPlaceHolder,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,False
390,,,FilterGenesRegression,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,False
391,,,FilterGenesScanpyOrder,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,False
392,,,ScTransform,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,False
393,,,WeightedFeaturePCA,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,False
394,,,ScTransformxFilterCellsPlaceHolder,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,False
395,,,WeightedFeaturePCAxFilterCellsPlaceHolder,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,False
396,,,ScTransformxFilterCellsScanpyOrder,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,False
397,,,WeightedFeaturePCAxFilterCellsScanpyOrder,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,False
398,,,FilterGenesPlaceHolderxScTransform,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,False
399,,,FilterGenesPlaceHolderxWeightedFeaturePCA,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,False
400,,,FilterGenesRegressionxScTransform,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,False
401,,,FilterGenesRegressionxWeightedFeaturePCA,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,False
402,,,WeightedFeaturePCAxScTransform,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,False
403,,,ScTransformxWeightedFeaturePCAxFilterCellsPlaceHolder,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,False
404,,,FilterCellsPlaceHolder,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,True
405,,,FilterCellsScanpyOrder,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,True
406,,,FilterGenesPercentile,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,True
407,,,FilterGenesPlaceHolder,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,True
408,,,FilterGenesTopK,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,True
409,,,NormalizePlaceHolder,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,True
410,,,WeightedFeaturePCA,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,True
411,,,WeightedFeatureSVD,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,True
412,,,FilterGenesTopKxFilterCellsPlaceHolder,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,True
413,,,FilterGenesTopKxFilterCellsScanpyOrder,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,True
414,,,FilterGenesTopKxFilterGenesPercentile,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,True
415,,,WeightedFeaturePCAxFilterGenesTopK,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,True
416,,,WeightedFeatureSVDxFilterGenesTopK,apriori,Dataset 5:mouse_kidney_cl2,Graphsc,True
417,0.14168162204550735,0.5103515728521559,ScTransform,forest,Dataset 6: mouse_kidney_drop,Graphsc,
418,0.09220520359787862,-0.3826878109445183,FilterGenesTopK,forest,Dataset 6: mouse_kidney_drop,Graphsc,
419,0.05092326544990964,-0.16591482595364673,ScTransformxFilterGenesTopK,forest,Dataset 6: mouse_kidney_drop,Graphsc,
420,0.04678312720722557,-0.20776941459307574,ScaleFeature,forest,Dataset 6: mouse_kidney_drop,Graphsc,
421,0.04589369914606143,-0.16603158313334218,FilterGenesPlaceHolder,forest,Dataset 6: mouse_kidney_drop,Graphsc,
422,0.043501080063365054,-0.23741849469719284,NormalizeTotal,forest,Dataset 6: mouse_kidney_drop,Graphsc,
423,0.040086506558890636,-0.20334197036961138,NormalizePlaceHolder,forest,Dataset 6: mouse_kidney_drop,Graphsc,
424,0.0399316080944986,-0.13728928441698965,HighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 6: mouse_kidney_drop,Graphsc,
425,0.025405574989206373,-0.030891515432125604,HighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 6: mouse_kidney_drop,Graphsc,
426,0.023319297804870725,-0.17280734324115668,ScaleFeaturexHighlyVariableGenesRawCount,forest,Dataset 6: mouse_kidney_drop,Graphsc,
427,0.019425722739079537,,NormalizePlaceHolderxNormalizeTotal,forest,Dataset 6: mouse_kidney_drop,Graphsc,
428,0.018934620983788487,0.2153692394134067,HighlyVariableGenesRawCount,forest,Dataset 6: mouse_kidney_drop,Graphsc,
429,0.01892542156537477,-0.12524799088595745,NormalizeTotalxFilterGenesTopK,forest,Dataset 6: mouse_kidney_drop,Graphsc,
430,0.01808561716083083,-0.08893239631243623,WeightedFeatureSVD,forest,Dataset 6: mouse_kidney_drop,Graphsc,
431,0.017439960151511304,,ScTransformxScaleFeature,forest,Dataset 6: mouse_kidney_drop,Graphsc,
432,0.017327745445857523,0.2613368696981649,FilterGenesPlaceHolderxScTransform,forest,Dataset 6: mouse_kidney_drop,Graphsc,
433,0.017123230827783182,-0.23004890932494035,NormalizePlaceHolderxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 6: mouse_kidney_drop,Graphsc,
434,0.0162316887770207,-0.23004890932494035,ScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 6: mouse_kidney_drop,Graphsc,
435,0.016142830361190068,,NormalizeTotalxScTransform,forest,Dataset 6: mouse_kidney_drop,Graphsc,
436,0.01590512634150839,,NormalizeTotalxScaleFeature,forest,Dataset 6: mouse_kidney_drop,Graphsc,
437,0.015783379328010126,-0.14114505976119357,NormalizePlaceHolderxFilterGenesTopK,forest,Dataset 6: mouse_kidney_drop,Graphsc,
438,0.015532456405110917,-0.23004890932494035,NormalizeTotalxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 6: mouse_kidney_drop,Graphsc,
439,0.015411424831027221,0.2548684316788674,ScTransformxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 6: mouse_kidney_drop,Graphsc,
440,0.015220001160826115,-0.27427271678851106,FilterGenesPlaceHolderxNormalizeTotal,forest,Dataset 6: mouse_kidney_drop,Graphsc,
441,0.01474753654804528,,NormalizePlaceHolderxScTransform,forest,Dataset 6: mouse_kidney_drop,Graphsc,
442,0.014130294684204939,,NormalizePlaceHolderxScaleFeature,forest,Dataset 6: mouse_kidney_drop,Graphsc,
443,0.013222641624420373,-0.04933130102920886,FilterGenesPlaceHolderxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 6: mouse_kidney_drop,Graphsc,
444,0.013144829269105296,,NormalizeTotalxScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 6: mouse_kidney_drop,Graphsc,
445,0.012838883272953305,,NormalizePlaceHolderxScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 6: mouse_kidney_drop,Graphsc,
446,0.01188289261579955,0.15895509690338164,NormalizePlaceHolderxHighlyVariableGenesRawCount,forest,Dataset 6: mouse_kidney_drop,Graphsc,
447,0.01177692109237011,-0.06981651856205634,FilterGenesPlaceHolderxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 6: mouse_kidney_drop,Graphsc,
448,0.011736926649524363,0.16656091781996,FilterGenesRegression,forest,Dataset 6: mouse_kidney_drop,Graphsc,
449,0.011475691051056888,-0.19856614426024755,FilterGenesPlaceHolderxNormalizePlaceHolder,forest,Dataset 6: mouse_kidney_drop,Graphsc,
450,0.01042430891894252,-0.23004890932494035,NormalizePlaceHolderxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 6: mouse_kidney_drop,Graphsc,
451,0.010262537868640505,-0.22501313192739406,FilterGenesPlaceHolderxFilterGenesTopK,forest,Dataset 6: mouse_kidney_drop,Graphsc,
452,0.010099420164482648,-0.13131797414844693,FilterGenesPlaceHolderxNormalizePlaceHolderxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 6: mouse_kidney_drop,Graphsc,
453,0.009950382620220768,,NormalizePlaceHolderxNormalizeTotalxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 6: mouse_kidney_drop,Graphsc,
454,0.009693050061840673,,FilterGenesTopKxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 6: mouse_kidney_drop,Graphsc,
455,0.009468615064137249,0.25429504316356044,ScTransformxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 6: mouse_kidney_drop,Graphsc,
456,0.009344807859121406,0.2570669419177157,ScTransformxHighlyVariableGenesRawCount,forest,Dataset 6: mouse_kidney_drop,Graphsc,
457,0.00918049437649437,,ScTransformxScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 6: mouse_kidney_drop,Graphsc,
458,0.008762200497971098,,ScTransformxScaleFeaturexHighlyVariableGenesRawCount,forest,Dataset 6: mouse_kidney_drop,Graphsc,
459,0.008737128334069423,,HighlyVariableGenesLogarithmizedByMeanAndDispxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 6: mouse_kidney_drop,Graphsc,
460,0.0086209184312719,,NormalizePlaceHolderxNormalizeTotalxFilterGenesTopK,forest,Dataset 6: mouse_kidney_drop,Graphsc,
461,0.008254179605638404,,NormalizePlaceHolderxNormalizeTotalxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 6: mouse_kidney_drop,Graphsc,
462,0.008103292013909523,,NormalizePlaceHolderxScTransformxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 6: mouse_kidney_drop,Graphsc,
463,0.00806344056192727,-0.1948043151996334,ScaleFeaturexFilterGenesTopK,forest,Dataset 6: mouse_kidney_drop,Graphsc,
464,0.008016645004781055,-0.13131797414844693,FilterGenesPlaceHolderxNormalizePlaceHolderxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 6: mouse_kidney_drop,Graphsc,
465,0.008015440621929246,,NormalizePlaceHolderxHighlyVariableGenesLogarithmizedByMeanAndDispxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 6: mouse_kidney_drop,Graphsc,
466,0.00797328926437697,,NormalizePlaceHolderxNormalizeTotalxScaleFeature,forest,Dataset 6: mouse_kidney_drop,Graphsc,
467,0.007818581865523207,,NormalizeTotalxScTransformxFilterGenesTopK,forest,Dataset 6: mouse_kidney_drop,Graphsc,
468,,,FilterCellsScanpyOrder,apriori,Dataset 6: mouse_kidney_drop,Graphsc,False
469,,,FilterGenesPercentile,apriori,Dataset 6: mouse_kidney_drop,Graphsc,False
470,,,FilterGenesPlaceHolder,apriori,Dataset 6: mouse_kidney_drop,Graphsc,False
471,,,FilterGenesScanpyOrder,apriori,Dataset 6: mouse_kidney_drop,Graphsc,False
472,,,ScTransform,apriori,Dataset 6: mouse_kidney_drop,Graphsc,False
473,,,WeightedFeaturePCA,apriori,Dataset 6: mouse_kidney_drop,Graphsc,False
474,,,WeightedFeatureSVD,apriori,Dataset 6: mouse_kidney_drop,Graphsc,False
475,,,FilterGenesPlaceHolderxFilterCellsScanpyOrder,apriori,Dataset 6: mouse_kidney_drop,Graphsc,False
476,,,ScTransformxFilterCellsScanpyOrder,apriori,Dataset 6: mouse_kidney_drop,Graphsc,False
477,,,WeightedFeaturePCAxFilterCellsScanpyOrder,apriori,Dataset 6: mouse_kidney_drop,Graphsc,False
478,,,WeightedFeatureSVDxFilterCellsScanpyOrder,apriori,Dataset 6: mouse_kidney_drop,Graphsc,False
479,,,FilterGenesPlaceHolderxScTransform,apriori,Dataset 6: mouse_kidney_drop,Graphsc,False
480,,,FilterGenesScanpyOrderxScTransform,apriori,Dataset 6: mouse_kidney_drop,Graphsc,False
481,,,WeightedFeaturePCAxScTransform,apriori,Dataset 6: mouse_kidney_drop,Graphsc,False
482,,,WeightedFeatureSVDxScTransform,apriori,Dataset 6: mouse_kidney_drop,Graphsc,False
483,,,WeightedFeatureSVDxScTransformxFilterCellsScanpyOrder,apriori,Dataset 6: mouse_kidney_drop,Graphsc,False
484,,,FilterCellsPlaceHolder,apriori,Dataset 6: mouse_kidney_drop,Graphsc,True
485,,,FilterCellsScanpyOrder,apriori,Dataset 6: mouse_kidney_drop,Graphsc,True
486,,,FilterGenesPlaceHolder,apriori,Dataset 6: mouse_kidney_drop,Graphsc,True
487,,,FilterGenesTopK,apriori,Dataset 6: mouse_kidney_drop,Graphsc,True
488,,,ScaleFeature,apriori,Dataset 6: mouse_kidney_drop,Graphsc,True
489,,,WeightedFeaturePCA,apriori,Dataset 6: mouse_kidney_drop,Graphsc,True
490,,,WeightedFeatureSVD,apriori,Dataset 6: mouse_kidney_drop,Graphsc,True
491,,,FilterGenesPlaceHolderxFilterCellsScanpyOrder,apriori,Dataset 6: mouse_kidney_drop,Graphsc,True
492,,,FilterGenesTopKxFilterCellsScanpyOrder,apriori,Dataset 6: mouse_kidney_drop,Graphsc,True
493,,,WeightedFeaturePCAxFilterCellsScanpyOrder,apriori,Dataset 6: mouse_kidney_drop,Graphsc,True
494,,,WeightedFeatureSVDxFilterCellsScanpyOrder,apriori,Dataset 6: mouse_kidney_drop,Graphsc,True
495,,,FilterGenesPlaceHolderxWeightedFeaturePCA,apriori,Dataset 6: mouse_kidney_drop,Graphsc,True
496,,,FilterGenesPlaceHolderxWeightedFeatureSVD,apriori,Dataset 6: mouse_kidney_drop,Graphsc,True
497,0.08047893343040696,-0.41805524614320716,FilterGenesRegression,forest,Dataset 7: mouse_lung_cell,Graphsc,
498,0.05848094525758057,-0.25688817696509486,ScaleFeature,forest,Dataset 7: mouse_lung_cell,Graphsc,
499,0.05374406593005448,-0.21423841250394324,FilterGenesTopK,forest,Dataset 7: mouse_lung_cell,Graphsc,
500,0.05216627518005053,-0.19234235602014232,NormalizeTotal,forest,Dataset 7: mouse_lung_cell,Graphsc,
501,0.0520088118020897,-0.16962724561441622,NormalizePlaceHolder,forest,Dataset 7: mouse_lung_cell,Graphsc,
502,0.03659297536605573,-0.0998854146653485,HighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 7: mouse_lung_cell,Graphsc,
503,0.03157035092222716,-0.01864726408403468,HighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 7: mouse_lung_cell,Graphsc,
504,0.029109334162892634,0.1357420416734869,ScTransform,forest,Dataset 7: mouse_lung_cell,Graphsc,
505,0.022318777397548582,,NormalizePlaceHolderxNormalizeTotal,forest,Dataset 7: mouse_lung_cell,Graphsc,
506,0.01944416641719428,-0.17358799260668006,ScaleFeaturexFilterGenesRegression,forest,Dataset 7: mouse_lung_cell,Graphsc,
507,0.019389862274546595,,NormalizePlaceHolderxScaleFeature,forest,Dataset 7: mouse_lung_cell,Graphsc,
508,0.019217624196209034,-0.11788039075980125,ScaleFeaturexHighlyVariableGenesRawCount,forest,Dataset 7: mouse_lung_cell,Graphsc,
509,0.01898472234222114,,NormalizeTotalxScaleFeature,forest,Dataset 7: mouse_lung_cell,Graphsc,
510,0.017639258217066106,-0.17358799260668006,NormalizeTotalxFilterGenesRegression,forest,Dataset 7: mouse_lung_cell,Graphsc,
511,0.017622349749841667,-0.17358799260668006,NormalizePlaceHolderxFilterGenesRegression,forest,Dataset 7: mouse_lung_cell,Graphsc,
512,0.01666825282122436,,NormalizePlaceHolderxScTransform,forest,Dataset 7: mouse_lung_cell,Graphsc,
513,0.015950790524908748,,FilterGenesRegressionxFilterGenesTopK,forest,Dataset 7: mouse_lung_cell,Graphsc,
514,0.015390511779284294,,NormalizeTotalxScTransform,forest,Dataset 7: mouse_lung_cell,Graphsc,
515,0.014522603709002168,0.3288107622634053,HighlyVariableGenesRawCount,forest,Dataset 7: mouse_lung_cell,Graphsc,
516,0.01371034779868256,,HighlyVariableGenesLogarithmizedByMeanAndDispxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 7: mouse_lung_cell,Graphsc,
517,0.013358270827563867,-0.09290743015158666,FilterGenesPlaceHolder,forest,Dataset 7: mouse_lung_cell,Graphsc,
518,0.01310844158834817,,ScTransformxScaleFeature,forest,Dataset 7: mouse_lung_cell,Graphsc,
519,0.012351485210568065,,FilterGenesTopKxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 7: mouse_lung_cell,Graphsc,
520,0.011848463395379991,-0.11666297000957496,NormalizeTotalxFilterGenesTopK,forest,Dataset 7: mouse_lung_cell,Graphsc,
521,0.01157097745306873,-0.09495216649107326,NormalizePlaceHolderxFilterGenesTopK,forest,Dataset 7: mouse_lung_cell,Graphsc,
522,0.011451624522689916,,FilterGenesTopKxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 7: mouse_lung_cell,Graphsc,
523,0.01144241841023194,-0.17358799260668004,NormalizePlaceHolderxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 7: mouse_lung_cell,Graphsc,
524,0.01076058134915185,-0.17358799260668004,NormalizeTotalxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 7: mouse_lung_cell,Graphsc,
525,0.010278088815166174,,FilterGenesRegressionxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 7: mouse_lung_cell,Graphsc,
526,0.010202458015854341,-0.17358799260668006,ScTransformxFilterGenesRegression,forest,Dataset 7: mouse_lung_cell,Graphsc,
527,0.009890708689120984,-0.1472246025938413,ScaleFeaturexFilterGenesTopK,forest,Dataset 7: mouse_lung_cell,Graphsc,
528,0.009637960574306017,,NormalizePlaceHolderxNormalizeTotalxScaleFeature,forest,Dataset 7: mouse_lung_cell,Graphsc,
529,0.009381538377000443,,FilterGenesRegressionxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 7: mouse_lung_cell,Graphsc,
530,0.00881891663878932,-0.18051493176676778,FilterGenesPlaceHolderxNormalizePlaceHolder,forest,Dataset 7: mouse_lung_cell,Graphsc,
531,0.00850579564932949,,NormalizePlaceHolderxNormalizeTotalxFilterGenesRegression,forest,Dataset 7: mouse_lung_cell,Graphsc,
532,0.008446323343704832,,NormalizePlaceHolderxNormalizeTotalxScTransform,forest,Dataset 7: mouse_lung_cell,Graphsc,
533,0.008044414356951341,-0.17358799260668006,NormalizeTotalxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 7: mouse_lung_cell,Graphsc,
534,0.007876845671445986,-0.17358799260668006,NormalizePlaceHolderxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 7: mouse_lung_cell,Graphsc,
535,0.007733698642066131,,NormalizePlaceHolderxScaleFeaturexFilterGenesRegression,forest,Dataset 7: mouse_lung_cell,Graphsc,
536,0.007614198767425706,0.29504577746972516,ScTransformxHighlyVariableGenesRawCount,forest,Dataset 7: mouse_lung_cell,Graphsc,
537,0.007593933041383193,,NormalizeTotalxScaleFeaturexFilterGenesRegression,forest,Dataset 7: mouse_lung_cell,Graphsc,
538,0.0075195676531129565,,NormalizePlaceHolderxScTransformxScaleFeature,forest,Dataset 7: mouse_lung_cell,Graphsc,
539,0.007066161879493625,,NormalizeTotalxScTransformxScaleFeature,forest,Dataset 7: mouse_lung_cell,Graphsc,
540,0.007027135203959987,,NormalizeTotalxHighlyVariableGenesLogarithmizedByMeanAndDispxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 7: mouse_lung_cell,Graphsc,
541,0.006885179695118117,,NormalizePlaceHolderxHighlyVariableGenesLogarithmizedByMeanAndDispxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 7: mouse_lung_cell,Graphsc,
542,0.0065571747462955556,,NormalizePlaceHolderxNormalizeTotalxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 7: mouse_lung_cell,Graphsc,
543,0.006314822766851759,,NormalizePlaceHolderxNormalizeTotalxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 7: mouse_lung_cell,Graphsc,
544,0.006266879394401917,,ScaleFeaturexFilterGenesRegressionxHighlyVariableGenesRawCount,forest,Dataset 7: mouse_lung_cell,Graphsc,
545,0.006219188481232058,,NormalizeTotalxScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 7: mouse_lung_cell,Graphsc,
546,0.006190346785585854,,NormalizePlaceHolderxScTransformxFilterGenesRegression,forest,Dataset 7: mouse_lung_cell,Graphsc,
547,0.006155110808296717,0.003074770994171933,ScTransformxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 7: mouse_lung_cell,Graphsc,
548,,,FilterCellsPlaceHolder,apriori,Dataset 7: mouse_lung_cell,Graphsc,False
549,,,FilterCellsScanpyOrder,apriori,Dataset 7: mouse_lung_cell,Graphsc,False
550,,,FilterGenesPercentile,apriori,Dataset 7: mouse_lung_cell,Graphsc,False
551,,,FilterGenesPlaceHolder,apriori,Dataset 7: mouse_lung_cell,Graphsc,False
552,,,FilterGenesScanpyOrder,apriori,Dataset 7: mouse_lung_cell,Graphsc,False
553,,,HighlyVariableGenesRawCount,apriori,Dataset 7: mouse_lung_cell,Graphsc,False
554,,,Log1P,apriori,Dataset 7: mouse_lung_cell,Graphsc,False
555,,,WeightedFeaturePCA,apriori,Dataset 7: mouse_lung_cell,Graphsc,False
556,,,WeightedFeatureSVD,apriori,Dataset 7: mouse_lung_cell,Graphsc,False
557,,,FilterCellsPlaceHolderxLog1P,apriori,Dataset 7: mouse_lung_cell,Graphsc,False
558,,,WeightedFeatureSVDxFilterCellsPlaceHolder,apriori,Dataset 7: mouse_lung_cell,Graphsc,False
559,,,FilterCellsScanpyOrderxLog1P,apriori,Dataset 7: mouse_lung_cell,Graphsc,False
560,,,FilterGenesPercentilexLog1P,apriori,Dataset 7: mouse_lung_cell,Graphsc,False
561,,,FilterGenesPlaceHolderxLog1P,apriori,Dataset 7: mouse_lung_cell,Graphsc,False
562,,,FilterGenesScanpyOrderxLog1P,apriori,Dataset 7: mouse_lung_cell,Graphsc,False
563,,,WeightedFeaturePCAxLog1P,apriori,Dataset 7: mouse_lung_cell,Graphsc,False
564,,,WeightedFeatureSVDxLog1P,apriori,Dataset 7: mouse_lung_cell,Graphsc,False
565,,,FilterCellsPlaceHolder,apriori,Dataset 7: mouse_lung_cell,Graphsc,True
566,,,FilterCellsScanpyOrder,apriori,Dataset 7: mouse_lung_cell,Graphsc,True
567,,,FilterGenesPercentile,apriori,Dataset 7: mouse_lung_cell,Graphsc,True
568,,,FilterGenesPlaceHolder,apriori,Dataset 7: mouse_lung_cell,Graphsc,True
569,,,FilterGenesTopK,apriori,Dataset 7: mouse_lung_cell,Graphsc,True
570,,,NormalizeTotal,apriori,Dataset 7: mouse_lung_cell,Graphsc,True
571,,,ScaleFeature,apriori,Dataset 7: mouse_lung_cell,Graphsc,True
572,,,WeightedFeaturePCA,apriori,Dataset 7: mouse_lung_cell,Graphsc,True
573,,,WeightedFeatureSVD,apriori,Dataset 7: mouse_lung_cell,Graphsc,True
574,,,FilterGenesTopKxFilterCellsPlaceHolder,apriori,Dataset 7: mouse_lung_cell,Graphsc,True
575,,,WeightedFeaturePCAxFilterCellsPlaceHolder,apriori,Dataset 7: mouse_lung_cell,Graphsc,True
576,,,FilterGenesTopKxFilterCellsScanpyOrder,apriori,Dataset 7: mouse_lung_cell,Graphsc,True
577,,,ScaleFeaturexFilterCellsScanpyOrder,apriori,Dataset 7: mouse_lung_cell,Graphsc,True
578,,,WeightedFeatureSVDxFilterCellsScanpyOrder,apriori,Dataset 7: mouse_lung_cell,Graphsc,True
579,,,ScaleFeaturexFilterGenesTopK,apriori,Dataset 7: mouse_lung_cell,Graphsc,True
580,,,WeightedFeaturePCAxFilterGenesTopK,apriori,Dataset 7: mouse_lung_cell,Graphsc,True
581,,,WeightedFeatureSVDxFilterGenesTopK,apriori,Dataset 7: mouse_lung_cell,Graphsc,True
582,,,ScaleFeaturexWeightedFeaturePCA,apriori,Dataset 7: mouse_lung_cell,Graphsc,True
583,0.11180061983436151,-0.4383188058021069,ScaleFeature,forest,Dataset 8:mouse_ES_cell,Graphsc,
584,0.08498487845259341,-0.3591057864732685,FilterGenesTopK,forest,Dataset 8:mouse_ES_cell,Graphsc,
585,0.06550801925891866,-0.2189070628216684,HighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 8:mouse_ES_cell,Graphsc,
586,0.061720023154015584,-0.1503169457295796,NormalizeTotal,forest,Dataset 8:mouse_ES_cell,Graphsc,
587,0.05959421142618303,-0.16064792586626617,HighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 8:mouse_ES_cell,Graphsc,
588,0.052270905770433154,-0.07948311133047295,NormalizePlaceHolder,forest,Dataset 8:mouse_ES_cell,Graphsc,
589,0.03291340095227046,-0.16069280079298143,ScaleFeaturexFilterGenesTopK,forest,Dataset 8:mouse_ES_cell,Graphsc,
590,0.02898506896033816,-0.22734993491580438,NormalizePlaceHolderxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 8:mouse_ES_cell,Graphsc,
591,0.024935528034413273,-0.1659161287266269,ScaleFeaturexHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 8:mouse_ES_cell,Graphsc,
592,0.0243393997126277,,NormalizePlaceHolderxNormalizeTotal,forest,Dataset 8:mouse_ES_cell,Graphsc,
593,0.023852882881736533,-0.22734993491580444,NormalizeTotalxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 8:mouse_ES_cell,Graphsc,
594,0.021815706975197635,,NormalizeTotalxScaleFeature,forest,Dataset 8:mouse_ES_cell,Graphsc,
595,0.019262685659609473,0.12749710184436341,HighlyVariableGenesRawCount,forest,Dataset 8:mouse_ES_cell,Graphsc,
596,0.018797207266684175,-0.07185807454221933,FilterGenesPlaceHolder,forest,Dataset 8:mouse_ES_cell,Graphsc,
597,0.018520859413087596,,NormalizePlaceHolderxScaleFeature,forest,Dataset 8:mouse_ES_cell,Graphsc,
598,0.01847110674631771,,FilterGenesTopKxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 8:mouse_ES_cell,Graphsc,
599,0.01843352180461202,0.06912686978408626,WeightedFeatureSVD,forest,Dataset 8:mouse_ES_cell,Graphsc,
600,0.017664772137900044,,HighlyVariableGenesLogarithmizedByMeanAndDispxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 8:mouse_ES_cell,Graphsc,
601,0.017588643430698766,,NormalizePlaceHolderxNormalizeTotalxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 8:mouse_ES_cell,Graphsc,
602,0.017504064813004094,-0.2273499349158044,NormalizePlaceHolderxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 8:mouse_ES_cell,Graphsc,
603,0.015426810399306299,-0.006001014344841754,ScTransformxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 8:mouse_ES_cell,Graphsc,
604,0.01506235232615065,,FilterGenesTopKxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 8:mouse_ES_cell,Graphsc,
605,0.014248220508544625,0.2521353779255399,ScTransform,forest,Dataset 8:mouse_ES_cell,Graphsc,
606,0.014052835849488254,,NormalizePlaceHolderxScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 8:mouse_ES_cell,Graphsc,
607,0.01356229492618432,-0.22734993491580438,NormalizeTotalxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 8:mouse_ES_cell,Graphsc,
608,0.012533068030386615,,NormalizePlaceHolderxNormalizeTotalxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 8:mouse_ES_cell,Graphsc,
609,0.012376867309665357,,NormalizePlaceHolderxScTransform,forest,Dataset 8:mouse_ES_cell,Graphsc,
610,0.012306094255136565,,NormalizePlaceHolderxHighlyVariableGenesLogarithmizedByMeanAndDispxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 8:mouse_ES_cell,Graphsc,
611,0.011986970102660748,,NormalizeTotalxScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 8:mouse_ES_cell,Graphsc,
612,0.011887701522940396,0.09233359625218227,ScTransformxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 8:mouse_ES_cell,Graphsc,
613,0.011713852382087138,-0.18818169739973115,NormalizeTotalxFilterGenesTopK,forest,Dataset 8:mouse_ES_cell,Graphsc,
614,0.011459262238581696,-0.19453051351734588,FilterGenesTopKxWeightedFeatureSVD,forest,Dataset 8:mouse_ES_cell,Graphsc,
615,0.011124442740229881,-0.2433504113068885,ScaleFeaturexWeightedFeatureSVD,forest,Dataset 8:mouse_ES_cell,Graphsc,
616,0.011087071386249158,,NormalizePlaceHolderxFilterGenesTopKxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 8:mouse_ES_cell,Graphsc,
617,0.011019530482036025,,NormalizeTotalxScTransform,forest,Dataset 8:mouse_ES_cell,Graphsc,
618,0.010883643142875082,-0.22734993491580438,ScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 8:mouse_ES_cell,Graphsc,
619,0.010741813188774253,,NormalizeTotalxHighlyVariableGenesLogarithmizedByMeanAndDispxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 8:mouse_ES_cell,Graphsc,
620,0.010030601917327674,-0.22716523225965998,FilterGenesPlaceHolderxScaleFeature,forest,Dataset 8:mouse_ES_cell,Graphsc,
621,0.009872204350718493,,NormalizePlaceHolderxScaleFeaturexHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 8:mouse_ES_cell,Graphsc,
622,0.009604126307386586,,NormalizeTotalxFilterGenesTopKxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 8:mouse_ES_cell,Graphsc,
623,0.009593401615097523,,NormalizePlaceHolderxNormalizeTotalxScaleFeature,forest,Dataset 8:mouse_ES_cell,Graphsc,
624,0.008206221959863416,,NormalizeTotalxScaleFeaturexHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 8:mouse_ES_cell,Graphsc,
625,0.008067821267683286,,NormalizePlaceHolderxScTransformxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 8:mouse_ES_cell,Graphsc,
626,0.007942668639040409,-0.18648501124762093,FilterGenesPlaceHolderxFilterGenesTopK,forest,Dataset 8:mouse_ES_cell,Graphsc,
627,0.007934081970343352,,NormalizeTotalxScTransformxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 8:mouse_ES_cell,Graphsc,
628,0.007887761916498688,,HighlyVariableGenesLogarithmizedByMeanAndDispxHighlyVariableGenesRawCount,forest,Dataset 8:mouse_ES_cell,Graphsc,
629,0.007830316414626526,-0.09227530916373651,FilterGenesPlaceHolderxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 8:mouse_ES_cell,Graphsc,
630,0.007684399268762349,-0.17290764419141996,NormalizePlaceHolderxFilterGenesTopK,forest,Dataset 8:mouse_ES_cell,Graphsc,
631,0.007659009303415418,,HighlyVariableGenesLogarithmizedByTopGenesxHighlyVariableGenesRawCount,forest,Dataset 8:mouse_ES_cell,Graphsc,
632,0.007640206131569525,0.30884420445843636,FilterGenesRegression,forest,Dataset 8:mouse_ES_cell,Graphsc,
633,0.007608756641366332,,ScTransformxScaleFeaturexHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 8:mouse_ES_cell,Graphsc,
634,,,FilterCellsScanpyOrder,apriori,Dataset 8:mouse_ES_cell,Graphsc,False
635,,,FilterGenesPercentile,apriori,Dataset 8:mouse_ES_cell,Graphsc,False
636,,,FilterGenesPlaceHolder,apriori,Dataset 8:mouse_ES_cell,Graphsc,False
637,,,FilterGenesRegression,apriori,Dataset 8:mouse_ES_cell,Graphsc,False
638,,,FilterGenesScanpyOrder,apriori,Dataset 8:mouse_ES_cell,Graphsc,False
639,,,Log1P,apriori,Dataset 8:mouse_ES_cell,Graphsc,False
640,,,ScTransform,apriori,Dataset 8:mouse_ES_cell,Graphsc,False
641,,,WeightedFeaturePCA,apriori,Dataset 8:mouse_ES_cell,Graphsc,False
642,,,WeightedFeatureSVD,apriori,Dataset 8:mouse_ES_cell,Graphsc,False
643,,,FilterCellsScanpyOrderxFilterGenesPercentile,apriori,Dataset 8:mouse_ES_cell,Graphsc,False
644,,,FilterGenesPlaceHolderxFilterCellsScanpyOrder,apriori,Dataset 8:mouse_ES_cell,Graphsc,False
645,,,FilterGenesScanpyOrderxFilterCellsScanpyOrder,apriori,Dataset 8:mouse_ES_cell,Graphsc,False
646,,,FilterCellsScanpyOrderxLog1P,apriori,Dataset 8:mouse_ES_cell,Graphsc,False
647,,,WeightedFeaturePCAxFilterCellsScanpyOrder,apriori,Dataset 8:mouse_ES_cell,Graphsc,False
648,,,WeightedFeatureSVDxFilterCellsScanpyOrder,apriori,Dataset 8:mouse_ES_cell,Graphsc,False
649,,,FilterGenesPlaceHolderxWeightedFeatureSVD,apriori,Dataset 8:mouse_ES_cell,Graphsc,False
650,,,WeightedFeaturePCAxLog1P,apriori,Dataset 8:mouse_ES_cell,Graphsc,False
651,,,WeightedFeatureSVDxScTransform,apriori,Dataset 8:mouse_ES_cell,Graphsc,False
652,,,FilterCellsPlaceHolder,apriori,Dataset 8:mouse_ES_cell,Graphsc,True
653,,,FilterCellsScanpyOrder,apriori,Dataset 8:mouse_ES_cell,Graphsc,True
654,,,FilterGenesPercentile,apriori,Dataset 8:mouse_ES_cell,Graphsc,True
655,,,FilterGenesScanpyOrder,apriori,Dataset 8:mouse_ES_cell,Graphsc,True
656,,,FilterGenesTopK,apriori,Dataset 8:mouse_ES_cell,Graphsc,True
657,,,ScaleFeature,apriori,Dataset 8:mouse_ES_cell,Graphsc,True
658,,,WeightedFeaturePCA,apriori,Dataset 8:mouse_ES_cell,Graphsc,True
659,,,WeightedFeaturePCAxFilterCellsPlaceHolder,apriori,Dataset 8:mouse_ES_cell,Graphsc,True
660,,,FilterGenesTopKxFilterCellsScanpyOrder,apriori,Dataset 8:mouse_ES_cell,Graphsc,True
661,,,WeightedFeaturePCAxFilterCellsScanpyOrder,apriori,Dataset 8:mouse_ES_cell,Graphsc,True
662,,,WeightedFeaturePCAxFilterGenesTopK,apriori,Dataset 8:mouse_ES_cell,Graphsc,True
663,,,ScaleFeaturexWeightedFeaturePCA,apriori,Dataset 8:mouse_ES_cell,Graphsc,True
664,,,WeightedFeaturePCAxFilterCellsScanpyOrderxFilterGenesTopK,apriori,Dataset 8:mouse_ES_cell,Graphsc,True
665,0.11906963305982583,-0.5669826008971619,FilterGenesScanpyOrderxFilterCellsScanpyOrder,forest,Dataset 9:mouse_kidney_10x,Graphsc,
666,0.11522262460447949,-0.3490469627291122,FilterGenesScanpyOrder,forest,Dataset 9:mouse_kidney_10x,Graphsc,
667,0.08701905151800307,-0.2364387374751986,FilterCellsScanpyOrder,forest,Dataset 9:mouse_kidney_10x,Graphsc,
668,0.0768275390401509,-0.2981181543108492,HighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 9:mouse_kidney_10x,Graphsc,
669,0.06019772201388357,-0.2757975868510421,NormalizePlaceHolder,forest,Dataset 9:mouse_kidney_10x,Graphsc,
670,0.05725749147053981,-0.2587058567781471,NormalizeTotal,forest,Dataset 9:mouse_kidney_10x,Graphsc,
671,0.055370800375457434,0.28335483426817,ScTransform,forest,Dataset 9:mouse_kidney_10x,Graphsc,
672,0.03535788101143563,-0.10013895965691119,HighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 9:mouse_kidney_10x,Graphsc,
673,0.03501121180980265,-0.23542671080113162,ScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 9:mouse_kidney_10x,Graphsc,
674,0.030630261646219722,0.17650856292761255,ScaleFeature,forest,Dataset 9:mouse_kidney_10x,Graphsc,
675,0.02284214943540365,0.09171290845686488,ScTransformxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 9:mouse_kidney_10x,Graphsc,
676,0.022345335942621825,,NormalizePlaceHolderxNormalizeTotal,forest,Dataset 9:mouse_kidney_10x,Graphsc,
677,0.021693908134605738,-0.21429927995349682,FilterGenesScanpyOrderxFilterCellsScanpyOrderxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 9:mouse_kidney_10x,Graphsc,
678,0.019851270071669456,0.09880261351066304,FilterGenesPlaceHolder,forest,Dataset 9:mouse_kidney_10x,Graphsc,
679,0.019036800414336884,-0.19902905347969235,NormalizeTotalxFilterGenesTopK,forest,Dataset 9:mouse_kidney_10x,Graphsc,
680,0.018015254766502578,-0.19325217605190112,NormalizePlaceHolderxFilterGenesTopK,forest,Dataset 9:mouse_kidney_10x,Graphsc,
681,0.017279578626002705,-0.23542671080113164,NormalizeTotalxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 9:mouse_kidney_10x,Graphsc,
682,0.017197888358207822,0.007115245677069681,FilterGenesTopK,forest,Dataset 9:mouse_kidney_10x,Graphsc,
683,0.016615463549203176,-0.22168229620126068,FilterGenesScanpyOrderxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 9:mouse_kidney_10x,Graphsc,
684,0.01659634218840152,-0.23542671080113164,NormalizePlaceHolderxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 9:mouse_kidney_10x,Graphsc,
685,0.016029978135937168,-0.23165016501069471,FilterCellsScanpyOrderxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 9:mouse_kidney_10x,Graphsc,
686,0.015833233361691512,-0.22252898630261322,FilterGenesScanpyOrderxNormalizeTotal,forest,Dataset 9:mouse_kidney_10x,Graphsc,
687,0.014616848796563437,-0.22729168779434072,FilterGenesScanpyOrderxNormalizePlaceHolder,forest,Dataset 9:mouse_kidney_10x,Graphsc,
688,0.014499121973605875,-0.2354267108011317,FilterGenesScanpyOrderxFilterCellsScanpyOrderxNormalizePlaceHolder,forest,Dataset 9:mouse_kidney_10x,Graphsc,
689,0.014397505439929728,-0.23542671080113164,FilterGenesScanpyOrderxFilterCellsScanpyOrderxScaleFeature,forest,Dataset 9:mouse_kidney_10x,Graphsc,
690,0.014108164760671216,-0.23542671080113162,FilterGenesScanpyOrderxFilterCellsScanpyOrderxNormalizeTotal,forest,Dataset 9:mouse_kidney_10x,Graphsc,
691,0.013794778385028178,-0.23542671080113162,FilterGenesScanpyOrderxFilterCellsScanpyOrderxScTransform,forest,Dataset 9:mouse_kidney_10x,Graphsc,
692,0.01355088228204143,,NormalizeTotalxScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 9:mouse_kidney_10x,Graphsc,
693,0.013319562860665842,,NormalizePlaceHolderxScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 9:mouse_kidney_10x,Graphsc,
694,0.013175969217419849,,ScTransformxScaleFeature,forest,Dataset 9:mouse_kidney_10x,Graphsc,
695,0.012801475550588332,,FilterGenesPlaceHolderxFilterGenesScanpyOrder,forest,Dataset 9:mouse_kidney_10x,Graphsc,
696,0.012517312625365273,0.061700460020206044,ScaleFeaturexFilterGenesTopK,forest,Dataset 9:mouse_kidney_10x,Graphsc,
697,0.01241008083646003,-0.21763063143464234,FilterCellsScanpyOrderxNormalizePlaceHolder,forest,Dataset 9:mouse_kidney_10x,Graphsc,
698,0.012138477040768777,-0.04564567502664357,FilterGenesScanpyOrderxScTransform,forest,Dataset 9:mouse_kidney_10x,Graphsc,
699,0.011475952820295484,0.19461265798274294,ScTransformxFilterGenesTopK,forest,Dataset 9:mouse_kidney_10x,Graphsc,
700,0.011398391510365051,-0.011421971851693195,FilterCellsScanpyOrderxScaleFeature,forest,Dataset 9:mouse_kidney_10x,Graphsc,
701,0.010476929306497644,-0.2145555683878219,FilterCellsScanpyOrderxNormalizeTotal,forest,Dataset 9:mouse_kidney_10x,Graphsc,
702,0.010346098890705183,-0.15262880524573463,FilterGenesScanpyOrderxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 9:mouse_kidney_10x,Graphsc,
703,0.010344608232468152,,HighlyVariableGenesLogarithmizedByMeanAndDispxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 9:mouse_kidney_10x,Graphsc,
704,0.009952919999230918,-0.11908530414362274,FilterGenesScanpyOrderxNormalizeTotalxFilterGenesTopK,forest,Dataset 9:mouse_kidney_10x,Graphsc,
705,0.00974556657420849,,NormalizePlaceHolderxNormalizeTotalxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 9:mouse_kidney_10x,Graphsc,
706,0.00961744657054443,-0.11574395291740165,FilterGenesScanpyOrderxNormalizePlaceHolderxFilterGenesTopK,forest,Dataset 9:mouse_kidney_10x,Graphsc,
707,0.00959970403548834,-0.21429927995349682,FilterGenesScanpyOrderxFilterCellsScanpyOrderxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 9:mouse_kidney_10x,Graphsc,
708,0.00957252290286837,,FilterGenesTopKxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 9:mouse_kidney_10x,Graphsc,
709,0.009507081332223553,-0.13438776481730197,FilterGenesScanpyOrderxScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 9:mouse_kidney_10x,Graphsc,
710,0.00932449937379105,0.076511733900675,FilterCellsScanpyOrderxScTransform,forest,Dataset 9:mouse_kidney_10x,Graphsc,
711,0.00891764009168498,0.05374232411579282,ScaleFeaturexHighlyVariableGenesRawCount,forest,Dataset 9:mouse_kidney_10x,Graphsc,
712,0.008899054086449448,0.18415090095817885,ScaleFeaturexHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 9:mouse_kidney_10x,Graphsc,
713,0.008033053751379589,-0.13438776481730197,FilterGenesScanpyOrderxNormalizeTotalxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 9:mouse_kidney_10x,Graphsc,
714,0.0079174293367894,-0.13438776481730197,FilterGenesScanpyOrderxNormalizePlaceHolderxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 9:mouse_kidney_10x,Graphsc,
715,0.007875185312505549,,ScTransformxScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 9:mouse_kidney_10x,Graphsc,
716,,,FilterCellsPlaceHolder,apriori,Dataset 9:mouse_kidney_10x,Graphsc,False
717,,,FilterCellsScanpyOrder,apriori,Dataset 9:mouse_kidney_10x,Graphsc,False
718,,,FilterGenesPercentile,apriori,Dataset 9:mouse_kidney_10x,Graphsc,False
719,,,FilterGenesPlaceHolder,apriori,Dataset 9:mouse_kidney_10x,Graphsc,False
720,,,FilterGenesTopK,apriori,Dataset 9:mouse_kidney_10x,Graphsc,False
721,,,ScaleFeature,apriori,Dataset 9:mouse_kidney_10x,Graphsc,False
722,,,WeightedFeaturePCA,apriori,Dataset 9:mouse_kidney_10x,Graphsc,False
723,,,WeightedFeatureSVD,apriori,Dataset 9:mouse_kidney_10x,Graphsc,False
724,,,ScaleFeaturexFilterCellsPlaceHolder,apriori,Dataset 9:mouse_kidney_10x,Graphsc,False
725,,,WeightedFeaturePCAxFilterCellsPlaceHolder,apriori,Dataset 9:mouse_kidney_10x,Graphsc,False
726,,,FilterGenesPlaceHolderxScaleFeature,apriori,Dataset 9:mouse_kidney_10x,Graphsc,False
727,,,WeightedFeatureSVDxScaleFeature,apriori,Dataset 9:mouse_kidney_10x,Graphsc,False
728,,,FilterCellsPlaceHolder,apriori,Dataset 9:mouse_kidney_10x,Graphsc,True
729,,,FilterCellsScanpyOrder,apriori,Dataset 9:mouse_kidney_10x,Graphsc,True
730,,,FilterGenesPlaceHolder,apriori,Dataset 9:mouse_kidney_10x,Graphsc,True
731,,,FilterGenesTopK,apriori,Dataset 9:mouse_kidney_10x,Graphsc,True
732,,,NormalizePlaceHolder,apriori,Dataset 9:mouse_kidney_10x,Graphsc,True
733,,,NormalizeTotal,apriori,Dataset 9:mouse_kidney_10x,Graphsc,True
734,,,WeightedFeaturePCA,apriori,Dataset 9:mouse_kidney_10x,Graphsc,True
735,,,WeightedFeatureSVD,apriori,Dataset 9:mouse_kidney_10x,Graphsc,True
736,,,FilterGenesPlaceHolderxFilterCellsPlaceHolder,apriori,Dataset 9:mouse_kidney_10x,Graphsc,True
737,,,FilterGenesTopKxFilterCellsPlaceHolder,apriori,Dataset 9:mouse_kidney_10x,Graphsc,True
738,,,WeightedFeaturePCAxFilterCellsPlaceHolder,apriori,Dataset 9:mouse_kidney_10x,Graphsc,True
739,,,FilterGenesPlaceHolderxWeightedFeaturePCA,apriori,Dataset 9:mouse_kidney_10x,Graphsc,True
740,,,WeightedFeatureSVDxFilterGenesTopK,apriori,Dataset 9:mouse_kidney_10x,Graphsc,True
741,0.10900786142227313,-0.5338025579395977,FilterGenesRegression,forest,Dataset 10:human_skin_cell,Graphsc,
742,0.07086282663208485,-0.3062717855767541,ScaleFeature,forest,Dataset 10:human_skin_cell,Graphsc,
743,0.06103558741065763,-0.18761332388186613,HighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 10:human_skin_cell,Graphsc,
744,0.044233523778647824,-0.07633896554970769,HighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 10:human_skin_cell,Graphsc,
745,0.041936749429891895,-0.09595179035740652,NormalizeTotal,forest,Dataset 10:human_skin_cell,Graphsc,
746,0.04012470945009438,-0.10062097231463524,NormalizePlaceHolder,forest,Dataset 10:human_skin_cell,Graphsc,
747,0.03331948708880761,0.08000049428376967,ScTransform,forest,Dataset 10:human_skin_cell,Graphsc,
748,0.024108292238943178,-0.22164944785623855,ScaleFeaturexFilterGenesRegression,forest,Dataset 10:human_skin_cell,Graphsc,
749,0.022973310068920692,-0.22164944785623855,NormalizePlaceHolderxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 10:human_skin_cell,Graphsc,
750,0.021923906226860253,-0.2216494478562385,NormalizeTotalxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 10:human_skin_cell,Graphsc,
751,0.021708377408358435,-0.018276007618859204,ScaleFeaturexHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 10:human_skin_cell,Graphsc,
752,0.01961599659432355,-0.22164944785623855,NormalizePlaceHolderxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 10:human_skin_cell,Graphsc,
753,0.018959431596844527,-0.22164944785623852,NormalizeTotalxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 10:human_skin_cell,Graphsc,
754,0.01875133067681431,0.1653030501641147,FilterGenesTopK,forest,Dataset 10:human_skin_cell,Graphsc,
755,0.01758902578036576,,NormalizePlaceHolderxNormalizeTotal,forest,Dataset 10:human_skin_cell,Graphsc,
756,0.01633149871059145,,FilterGenesRegressionxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 10:human_skin_cell,Graphsc,
757,0.015177104084194768,,NormalizeTotalxScaleFeature,forest,Dataset 10:human_skin_cell,Graphsc,
758,0.01475600883870535,,NormalizePlaceHolderxNormalizeTotalxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 10:human_skin_cell,Graphsc,
759,0.01454325947101667,-0.2216494478562385,NormalizeTotalxFilterGenesRegression,forest,Dataset 10:human_skin_cell,Graphsc,
760,0.014511510786944336,,NormalizePlaceHolderxScaleFeature,forest,Dataset 10:human_skin_cell,Graphsc,
761,0.013867479795744783,-0.22164944785623852,NormalizePlaceHolderxFilterGenesRegression,forest,Dataset 10:human_skin_cell,Graphsc,
762,0.013826182644321205,,NormalizeTotalxScTransform,forest,Dataset 10:human_skin_cell,Graphsc,
763,0.013739248905661743,,NormalizePlaceHolderxNormalizeTotalxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 10:human_skin_cell,Graphsc,
764,0.013690816888487119,,HighlyVariableGenesLogarithmizedByMeanAndDispxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 10:human_skin_cell,Graphsc,
765,0.01316151801253345,,ScTransformxScaleFeature,forest,Dataset 10:human_skin_cell,Graphsc,
766,0.012833029552605195,,NormalizePlaceHolderxScTransform,forest,Dataset 10:human_skin_cell,Graphsc,
767,0.012296841002346957,,NormalizePlaceHolderxScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 10:human_skin_cell,Graphsc,
768,0.012153100247374218,,NormalizeTotalxScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 10:human_skin_cell,Graphsc,
769,0.011638337173371621,-0.22164944785623852,ScTransformxFilterGenesRegression,forest,Dataset 10:human_skin_cell,Graphsc,
770,0.011598577863351653,,FilterGenesRegressionxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 10:human_skin_cell,Graphsc,
771,0.011339792538373123,,NormalizePlaceHolderxScaleFeaturexHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 10:human_skin_cell,Graphsc,
772,0.011229625312668303,0.0013974341197019924,ScTransformxFilterGenesTopK,forest,Dataset 10:human_skin_cell,Graphsc,
773,0.010992679288910817,,NormalizeTotalxScaleFeaturexHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 10:human_skin_cell,Graphsc,
774,0.010814319153131753,,NormalizePlaceHolderxHighlyVariableGenesLogarithmizedByMeanAndDispxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 10:human_skin_cell,Graphsc,
775,0.010535648349650338,,NormalizeTotalxHighlyVariableGenesLogarithmizedByMeanAndDispxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 10:human_skin_cell,Graphsc,
776,0.010172427828039185,0.014157692798408157,ScTransformxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 10:human_skin_cell,Graphsc,
777,0.00979133287549614,0.03799530543421683,ScTransformxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 10:human_skin_cell,Graphsc,
778,0.009148017282504266,,NormalizePlaceHolderxFilterGenesRegressionxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 10:human_skin_cell,Graphsc,
779,0.008984200041048237,,NormalizeTotalxFilterGenesRegressionxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 10:human_skin_cell,Graphsc,
780,0.008754923615495435,,NormalizePlaceHolderxScTransformxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 10:human_skin_cell,Graphsc,
781,0.008595012286315293,,NormalizeTotalxScTransformxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 10:human_skin_cell,Graphsc,
782,0.008291474804273976,,NormalizePlaceHolderxFilterGenesRegressionxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 10:human_skin_cell,Graphsc,
783,0.008146030424092746,,NormalizeTotalxFilterGenesRegressionxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 10:human_skin_cell,Graphsc,
784,0.00805708989589777,,NormalizePlaceHolderxScTransformxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 10:human_skin_cell,Graphsc,
785,0.007672507672172702,,NormalizePlaceHolderxNormalizeTotalxScaleFeature,forest,Dataset 10:human_skin_cell,Graphsc,
786,0.0075911835170469795,,NormalizeTotalxScTransformxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 10:human_skin_cell,Graphsc,
787,0.007506715140324895,,ScTransformxScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 10:human_skin_cell,Graphsc,
788,0.007367960989776259,0.2782213675223993,HighlyVariableGenesRawCount,forest,Dataset 10:human_skin_cell,Graphsc,
789,0.006845230154409483,,FilterGenesTopKxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 10:human_skin_cell,Graphsc,
790,0.00658850726090899,,NormalizePlaceHolderxNormalizeTotalxScTransform,forest,Dataset 10:human_skin_cell,Graphsc,
791,0.006574676529047658,,FilterGenesTopKxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 10:human_skin_cell,Graphsc,
792,,,FilterCellsPlaceHolder,apriori,Dataset 10:human_skin_cell,Graphsc,False
793,,,FilterCellsScanpyOrder,apriori,Dataset 10:human_skin_cell,Graphsc,False
794,,,FilterGenesPlaceHolder,apriori,Dataset 10:human_skin_cell,Graphsc,False
795,,,FilterGenesScanpyOrder,apriori,Dataset 10:human_skin_cell,Graphsc,False
796,,,Log1P,apriori,Dataset 10:human_skin_cell,Graphsc,False
797,,,WeightedFeaturePCA,apriori,Dataset 10:human_skin_cell,Graphsc,False
798,,,WeightedFeatureSVD,apriori,Dataset 10:human_skin_cell,Graphsc,False
799,,,FilterGenesPlaceHolderxFilterCellsPlaceHolder,apriori,Dataset 10:human_skin_cell,Graphsc,False
800,,,FilterCellsPlaceHolderxLog1P,apriori,Dataset 10:human_skin_cell,Graphsc,False
801,,,WeightedFeatureSVDxFilterCellsPlaceHolder,apriori,Dataset 10:human_skin_cell,Graphsc,False
802,,,FilterCellsScanpyOrderxLog1P,apriori,Dataset 10:human_skin_cell,Graphsc,False
803,,,FilterGenesPlaceHolderxWeightedFeatureSVD,apriori,Dataset 10:human_skin_cell,Graphsc,False
804,,,WeightedFeaturePCAxLog1P,apriori,Dataset 10:human_skin_cell,Graphsc,False
805,,,WeightedFeatureSVDxLog1P,apriori,Dataset 10:human_skin_cell,Graphsc,False
806,,,FilterCellsPlaceHolder,apriori,Dataset 10:human_skin_cell,Graphsc,True
807,,,FilterCellsScanpyOrder,apriori,Dataset 10:human_skin_cell,Graphsc,True
808,,,FilterGenesPercentile,apriori,Dataset 10:human_skin_cell,Graphsc,True
809,,,FilterGenesPlaceHolder,apriori,Dataset 10:human_skin_cell,Graphsc,True
810,,,FilterGenesScanpyOrder,apriori,Dataset 10:human_skin_cell,Graphsc,True
811,,,FilterGenesTopK,apriori,Dataset 10:human_skin_cell,Graphsc,True
812,,,HighlyVariableGenesRawCount,apriori,Dataset 10:human_skin_cell,Graphsc,True
813,,,ScaleFeature,apriori,Dataset 10:human_skin_cell,Graphsc,True
814,,,WeightedFeaturePCA,apriori,Dataset 10:human_skin_cell,Graphsc,True
815,,,WeightedFeatureSVD,apriori,Dataset 10:human_skin_cell,Graphsc,True
816,,,ScaleFeaturexFilterCellsPlaceHolder,apriori,Dataset 10:human_skin_cell,Graphsc,True
817,,,ScaleFeaturexFilterCellsScanpyOrder,apriori,Dataset 10:human_skin_cell,Graphsc,True
818,,,ScaleFeaturexFilterGenesPercentile,apriori,Dataset 10:human_skin_cell,Graphsc,True
819,,,FilterGenesPlaceHolderxScaleFeature,apriori,Dataset 10:human_skin_cell,Graphsc,True
820,,,FilterGenesScanpyOrderxScaleFeature,apriori,Dataset 10:human_skin_cell,Graphsc,True
821,,,ScaleFeaturexFilterGenesTopK,apriori,Dataset 10:human_skin_cell,Graphsc,True
822,,,ScaleFeaturexHighlyVariableGenesRawCount,apriori,Dataset 10:human_skin_cell,Graphsc,True
823,,,ScaleFeaturexWeightedFeaturePCA,apriori,Dataset 10:human_skin_cell,Graphsc,True
824,,,WeightedFeatureSVDxScaleFeature,apriori,Dataset 10:human_skin_cell,Graphsc,True
825,0.08555636514184022,-0.3398734088465145,ScaleFeature,forest,Dataset 11:mouse_kidney_cell,Graphsc,
826,0.06786093198861251,-0.313559895818001,FilterGenesTopK,forest,Dataset 11:mouse_kidney_cell,Graphsc,
827,0.059062397296507356,0.24512867703250013,FilterGenesScanpyOrder,forest,Dataset 11:mouse_kidney_cell,Graphsc,
828,0.051058381865516596,-0.2096365732584933,HighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 11:mouse_kidney_cell,Graphsc,
829,0.04446091884060241,-0.15448635473108316,HighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 11:mouse_kidney_cell,Graphsc,
830,0.043348387747096304,-0.09811468240937142,NormalizePlaceHolder,forest,Dataset 11:mouse_kidney_cell,Graphsc,
831,0.0394380745830323,-0.0686485754693471,NormalizeTotal,forest,Dataset 11:mouse_kidney_cell,Graphsc,
832,0.029779434645524287,0.09447220093024263,ScTransform,forest,Dataset 11:mouse_kidney_cell,Graphsc,
833,0.025819964470629207,-0.12876589402654381,ScaleFeaturexFilterGenesTopK,forest,Dataset 11:mouse_kidney_cell,Graphsc,
834,0.01990379177163802,-0.16404705170012457,FilterGenesPlaceHolder,forest,Dataset 11:mouse_kidney_cell,Graphsc,
835,0.018883991916209146,-0.022858002098412718,FilterGenesScanpyOrderxFilterGenesTopK,forest,Dataset 11:mouse_kidney_cell,Graphsc,
836,0.018717418559150864,0.2546742744396,FilterGenesRegression,forest,Dataset 11:mouse_kidney_cell,Graphsc,
837,0.01780335705842885,-0.12396776245936206,ScaleFeaturexHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 11:mouse_kidney_cell,Graphsc,
838,0.01731126704611239,,NormalizePlaceHolderxNormalizeTotal,forest,Dataset 11:mouse_kidney_cell,Graphsc,
839,0.017255797884747532,-0.09246340080395195,ScTransformxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 11:mouse_kidney_cell,Graphsc,
840,0.016613990669848467,,NormalizePlaceHolderxScTransform,forest,Dataset 11:mouse_kidney_cell,Graphsc,
841,0.016275931425863463,,NormalizeTotalxScTransform,forest,Dataset 11:mouse_kidney_cell,Graphsc,
842,0.015565337962251331,,NormalizePlaceHolderxScaleFeature,forest,Dataset 11:mouse_kidney_cell,Graphsc,
843,0.01535292817576202,-0.04769071000725545,ScTransformxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 11:mouse_kidney_cell,Graphsc,
844,0.014802358329359548,-0.1867277452796961,NormalizeTotalxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 11:mouse_kidney_cell,Graphsc,
845,0.014692299101517422,0.2450341428726002,HighlyVariableGenesRawCount,forest,Dataset 11:mouse_kidney_cell,Graphsc,
846,0.01413677810903776,,NormalizeTotalxScaleFeature,forest,Dataset 11:mouse_kidney_cell,Graphsc,
847,0.01409954728743065,,HighlyVariableGenesLogarithmizedByMeanAndDispxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 11:mouse_kidney_cell,Graphsc,
848,0.013807130287524765,-0.1867277452796961,NormalizePlaceHolderxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 11:mouse_kidney_cell,Graphsc,
849,0.013595492000133557,-0.1025993351044062,FilterGenesScanpyOrderxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 11:mouse_kidney_cell,Graphsc,
850,0.013314362493252019,-0.1894563303690834,FilterCellsScanpyOrderxScaleFeature,forest,Dataset 11:mouse_kidney_cell,Graphsc,
851,0.013063879627126932,,FilterGenesTopKxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 11:mouse_kidney_cell,Graphsc,
852,0.012371724628421068,,FilterGenesTopKxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 11:mouse_kidney_cell,Graphsc,
853,0.01191001759920278,-0.1867277452796961,NormalizeTotalxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 11:mouse_kidney_cell,Graphsc,
854,0.011896316860185498,,ScTransformxScaleFeature,forest,Dataset 11:mouse_kidney_cell,Graphsc,
855,0.011491661290344712,-0.045962102932557404,FilterGenesScanpyOrderxScaleFeaturexFilterGenesRegression,forest,Dataset 11:mouse_kidney_cell,Graphsc,
856,0.011425183289381129,-0.1867277452796961,NormalizePlaceHolderxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 11:mouse_kidney_cell,Graphsc,
857,0.011397799926859017,-0.1867277452796961,ScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 11:mouse_kidney_cell,Graphsc,
858,0.010822197302236741,0.17876240622647613,FilterGenesScanpyOrderxFilterCellsScanpyOrder,forest,Dataset 11:mouse_kidney_cell,Graphsc,
859,0.010510182355801211,,NormalizePlaceHolderxScTransformxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 11:mouse_kidney_cell,Graphsc,
860,0.010421587094853002,0.10349189289905397,FilterGenesPlaceHolderxScTransform,forest,Dataset 11:mouse_kidney_cell,Graphsc,
861,0.010414896716904327,,NormalizePlaceHolderxNormalizeTotalxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 11:mouse_kidney_cell,Graphsc,
862,0.010371767926221614,,NormalizeTotalxScTransformxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 11:mouse_kidney_cell,Graphsc,
863,0.01035354936874394,-0.18376130208318325,FilterGenesPlaceHolderxNormalizeTotal,forest,Dataset 11:mouse_kidney_cell,Graphsc,
864,0.010250382524414499,-0.0697137098689808,FilterGenesScanpyOrderxScaleFeature,forest,Dataset 11:mouse_kidney_cell,Graphsc,
865,0.009809548939264357,-0.14675842955492113,NormalizePlaceHolderxFilterGenesTopK,forest,Dataset 11:mouse_kidney_cell,Graphsc,
866,0.009628035487961402,,NormalizePlaceHolderxNormalizeTotalxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 11:mouse_kidney_cell,Graphsc,
867,0.009254250550725658,-0.14507496953218202,NormalizeTotalxFilterGenesTopK,forest,Dataset 11:mouse_kidney_cell,Graphsc,
868,0.009224249080939348,0.0014962158867007859,FilterGenesScanpyOrderxFilterCellsScanpyOrderxScaleFeature,forest,Dataset 11:mouse_kidney_cell,Graphsc,
869,0.009064240878159166,,ScTransformxScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 11:mouse_kidney_cell,Graphsc,
870,0.008970156035607718,-0.007330661027747579,FilterGenesScanpyOrderxScaleFeaturexFilterGenesTopK,forest,Dataset 11:mouse_kidney_cell,Graphsc,
871,0.008834652477670122,,NormalizePlaceHolderxScTransformxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 11:mouse_kidney_cell,Graphsc,
872,0.008790184720603113,,NormalizePlaceHolderxNormalizeTotalxScTransform,forest,Dataset 11:mouse_kidney_cell,Graphsc,
873,0.008711695385130393,,NormalizeTotalxScTransformxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 11:mouse_kidney_cell,Graphsc,
874,0.008207088944712818,-0.23721588491979728,FilterGenesPlaceHolderxScaleFeature,forest,Dataset 11:mouse_kidney_cell,Graphsc,
875,0.00816816859937816,,NormalizeTotalxScaleFeaturexHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 11:mouse_kidney_cell,Graphsc,
876,,,FilterCellsPlaceHolder,apriori,Dataset 11:mouse_kidney_cell,Graphsc,False
877,,,FilterCellsScanpyOrder,apriori,Dataset 11:mouse_kidney_cell,Graphsc,False
878,,,FilterGenesPlaceHolder,apriori,Dataset 11:mouse_kidney_cell,Graphsc,False
879,,,FilterGenesRegression,apriori,Dataset 11:mouse_kidney_cell,Graphsc,False
880,,,FilterGenesScanpyOrder,apriori,Dataset 11:mouse_kidney_cell,Graphsc,False
881,,,Log1P,apriori,Dataset 11:mouse_kidney_cell,Graphsc,False
882,,,ScTransform,apriori,Dataset 11:mouse_kidney_cell,Graphsc,False
883,,,WeightedFeaturePCA,apriori,Dataset 11:mouse_kidney_cell,Graphsc,False
884,,,WeightedFeatureSVD,apriori,Dataset 11:mouse_kidney_cell,Graphsc,False
885,,,FilterGenesPlaceHolderxFilterCellsPlaceHolder,apriori,Dataset 11:mouse_kidney_cell,Graphsc,False
886,,,ScTransformxFilterCellsPlaceHolder,apriori,Dataset 11:mouse_kidney_cell,Graphsc,False
887,,,WeightedFeaturePCAxFilterCellsPlaceHolder,apriori,Dataset 11:mouse_kidney_cell,Graphsc,False
888,,,WeightedFeatureSVDxFilterCellsPlaceHolder,apriori,Dataset 11:mouse_kidney_cell,Graphsc,False
889,,,FilterGenesPlaceHolderxWeightedFeaturePCA,apriori,Dataset 11:mouse_kidney_cell,Graphsc,False
890,,,FilterGenesPlaceHolderxWeightedFeatureSVD,apriori,Dataset 11:mouse_kidney_cell,Graphsc,False
891,,,WeightedFeatureSVDxScTransform,apriori,Dataset 11:mouse_kidney_cell,Graphsc,False
892,,,FilterCellsPlaceHolder,apriori,Dataset 11:mouse_kidney_cell,Graphsc,True
893,,,FilterCellsScanpyOrder,apriori,Dataset 11:mouse_kidney_cell,Graphsc,True
894,,,FilterGenesPercentile,apriori,Dataset 11:mouse_kidney_cell,Graphsc,True
895,,,FilterGenesPlaceHolder,apriori,Dataset 11:mouse_kidney_cell,Graphsc,True
896,,,HighlyVariableGenesRawCount,apriori,Dataset 11:mouse_kidney_cell,Graphsc,True
897,,,ScaleFeature,apriori,Dataset 11:mouse_kidney_cell,Graphsc,True
898,,,WeightedFeaturePCA,apriori,Dataset 11:mouse_kidney_cell,Graphsc,True
899,,,WeightedFeatureSVD,apriori,Dataset 11:mouse_kidney_cell,Graphsc,True
900,,,FilterGenesPlaceHolderxFilterCellsPlaceHolder,apriori,Dataset 11:mouse_kidney_cell,Graphsc,True
901,,,WeightedFeaturePCAxFilterCellsPlaceHolder,apriori,Dataset 11:mouse_kidney_cell,Graphsc,True
902,,,FilterGenesPlaceHolderxFilterCellsScanpyOrder,apriori,Dataset 11:mouse_kidney_cell,Graphsc,True
903,,,ScaleFeaturexFilterCellsScanpyOrder,apriori,Dataset 11:mouse_kidney_cell,Graphsc,True
904,,,FilterGenesPlaceHolderxScaleFeature,apriori,Dataset 11:mouse_kidney_cell,Graphsc,True
905,,,FilterGenesPlaceHolderxWeightedFeaturePCA,apriori,Dataset 11:mouse_kidney_cell,Graphsc,True
906,,,ScaleFeaturexWeightedFeaturePCA,apriori,Dataset 11:mouse_kidney_cell,Graphsc,True
907,0.051295300755490825,-0.5572190754757014,FilterGenesRegression,forest,Dataset 12:human_pbmc_cell,Graphsc,
908,0.03243951872479156,0.3383527220279816,ScTransform,forest,Dataset 12:human_pbmc_cell,Graphsc,
909,0.025081589482407116,-0.16504280356431253,HighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 12:human_pbmc_cell,Graphsc,
910,0.018371190581229546,-0.23758165739538079,NormalizeTotal,forest,Dataset 12:human_pbmc_cell,Graphsc,
911,0.018329989959075973,-0.1847520800267653,ScaleFeature,forest,Dataset 12:human_pbmc_cell,Graphsc,
912,0.017683612559883603,-0.21710052595759124,NormalizePlaceHolder,forest,Dataset 12:human_pbmc_cell,Graphsc,
913,0.016232407065152138,-0.02701617057737103,HighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 12:human_pbmc_cell,Graphsc,
914,0.010593544275890708,-0.23137262753268484,ScTransformxFilterGenesRegression,forest,Dataset 12:human_pbmc_cell,Graphsc,
915,0.009069334673613073,,NormalizePlaceHolderxNormalizeTotal,forest,Dataset 12:human_pbmc_cell,Graphsc,
916,0.008249470134916496,-0.2313726275326848,NormalizePlaceHolderxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 12:human_pbmc_cell,Graphsc,
917,0.008200045755629356,0.22485676715429478,ScTransformxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 12:human_pbmc_cell,Graphsc,
918,0.007880194294336756,,NormalizeTotalxScaleFeature,forest,Dataset 12:human_pbmc_cell,Graphsc,
919,0.007786125305035272,,NormalizePlaceHolderxScaleFeature,forest,Dataset 12:human_pbmc_cell,Graphsc,
920,0.007443549217041514,-0.2313726275326848,NormalizeTotalxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 12:human_pbmc_cell,Graphsc,
921,0.00668579946462385,,FilterGenesRegressionxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 12:human_pbmc_cell,Graphsc,
922,0.006533943344906896,-0.07997141683573819,FilterGenesPlaceHolder,forest,Dataset 12:human_pbmc_cell,Graphsc,
923,0.0064348967248329565,0.1536157002904117,ScTransformxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 12:human_pbmc_cell,Graphsc,
924,0.006394531639100239,,ScTransformxScaleFeature,forest,Dataset 12:human_pbmc_cell,Graphsc,
925,0.006313442330099485,-0.2313726275326848,NormalizeTotalxFilterGenesRegression,forest,Dataset 12:human_pbmc_cell,Graphsc,
926,0.006216939521923414,,NormalizeTotalxScTransform,forest,Dataset 12:human_pbmc_cell,Graphsc,
927,0.006194749291848393,-0.2313726275326848,ScaleFeaturexFilterGenesRegression,forest,Dataset 12:human_pbmc_cell,Graphsc,
928,0.0060996894332088795,-0.2313726275326848,NormalizePlaceHolderxFilterGenesRegression,forest,Dataset 12:human_pbmc_cell,Graphsc,
929,0.0060403869722098135,,NormalizePlaceHolderxScTransform,forest,Dataset 12:human_pbmc_cell,Graphsc,
930,0.00597438314466879,,NormalizePlaceHolderxScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 12:human_pbmc_cell,Graphsc,
931,0.005550091950126869,,NormalizeTotalxScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 12:human_pbmc_cell,Graphsc,
932,0.005415596398297117,,HighlyVariableGenesLogarithmizedByMeanAndDispxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 12:human_pbmc_cell,Graphsc,
933,0.005338020769214415,-0.2313726275326848,NormalizePlaceHolderxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 12:human_pbmc_cell,Graphsc,
934,0.005259362728375057,,NormalizePlaceHolderxNormalizeTotalxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 12:human_pbmc_cell,Graphsc,
935,0.005153071386861213,-0.2313726275326848,ScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 12:human_pbmc_cell,Graphsc,
936,0.005139040989440736,,NormalizePlaceHolderxNormalizeTotalxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 12:human_pbmc_cell,Graphsc,
937,0.0045581465373250125,-0.23137262753268484,NormalizeTotalxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 12:human_pbmc_cell,Graphsc,
938,0.00449412704033195,,NormalizePlaceHolderxNormalizeTotalxScaleFeature,forest,Dataset 12:human_pbmc_cell,Graphsc,
939,0.004451498071609731,,FilterGenesRegressionxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 12:human_pbmc_cell,Graphsc,
940,0.003954444839274491,,NormalizePlaceHolderxScTransformxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 12:human_pbmc_cell,Graphsc,
941,0.003677694718601436,,NormalizePlaceHolderxNormalizeTotalxScTransform,forest,Dataset 12:human_pbmc_cell,Graphsc,
942,0.003560540800989805,,NormalizePlaceHolderxHighlyVariableGenesLogarithmizedByMeanAndDispxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 12:human_pbmc_cell,Graphsc,
943,0.0035452963876349826,,NormalizeTotalxScTransformxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 12:human_pbmc_cell,Graphsc,
944,0.0034976603057268476,,NormalizePlaceHolderxScTransformxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 12:human_pbmc_cell,Graphsc,
945,0.003421044450867152,0.05187807704045893,WeightedFeatureSVD,forest,Dataset 12:human_pbmc_cell,Graphsc,
946,0.0034037885106084306,-0.20136106300019357,FilterGenesPlaceHolderxNormalizeTotal,forest,Dataset 12:human_pbmc_cell,Graphsc,
947,0.0032954093842472777,,NormalizeTotalxHighlyVariableGenesLogarithmizedByMeanAndDispxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 12:human_pbmc_cell,Graphsc,
948,0.003217140674038839,,NormalizeTotalxScTransformxScaleFeature,forest,Dataset 12:human_pbmc_cell,Graphsc,
949,0.0031882724279622106,,ScTransformxScaleFeaturexHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 12:human_pbmc_cell,Graphsc,
950,0.003186352043956177,,NormalizePlaceHolderxScTransformxScaleFeature,forest,Dataset 12:human_pbmc_cell,Graphsc,
951,0.003154947093871501,,NormalizeTotalxScTransformxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 12:human_pbmc_cell,Graphsc,
952,0.0031416724574279717,,NormalizePlaceHolderxFilterGenesRegressionxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 12:human_pbmc_cell,Graphsc,
953,0.002917921460994474,,NormalizePlaceHolderxNormalizeTotalxFilterGenesRegression,forest,Dataset 12:human_pbmc_cell,Graphsc,
954,0.0028977204937254094,,NormalizeTotalxFilterGenesRegressionxHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 12:human_pbmc_cell,Graphsc,
955,0.0028104446464411177,-0.09384816124858177,FilterGenesPlaceHolderxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 12:human_pbmc_cell,Graphsc,
956,0.002703474154228326,,NormalizeTotalxScaleFeaturexFilterGenesRegression,forest,Dataset 12:human_pbmc_cell,Graphsc,
957,0.002588446277705239,0.0818552048052411,FilterGenesScanpyOrderxFilterCellsScanpyOrder,forest,Dataset 12:human_pbmc_cell,Graphsc,
958,,,FilterCellsPlaceHolder,apriori,Dataset 12:human_pbmc_cell,Graphsc,False
959,,,FilterCellsScanpyOrder,apriori,Dataset 12:human_pbmc_cell,Graphsc,False
960,,,FilterGenesPercentile,apriori,Dataset 12:human_pbmc_cell,Graphsc,False
961,,,FilterGenesPlaceHolder,apriori,Dataset 12:human_pbmc_cell,Graphsc,False
962,,,FilterGenesScanpyOrder,apriori,Dataset 12:human_pbmc_cell,Graphsc,False
963,,,FilterGenesTopK,apriori,Dataset 12:human_pbmc_cell,Graphsc,False
964,,,Log1P,apriori,Dataset 12:human_pbmc_cell,Graphsc,False
965,,,ScTransform,apriori,Dataset 12:human_pbmc_cell,Graphsc,False
966,,,WeightedFeaturePCA,apriori,Dataset 12:human_pbmc_cell,Graphsc,False
967,,,WeightedFeatureSVD,apriori,Dataset 12:human_pbmc_cell,Graphsc,False
968,,,FilterGenesScanpyOrderxFilterCellsScanpyOrder,apriori,Dataset 12:human_pbmc_cell,Graphsc,False
969,,,WeightedFeatureSVDxFilterCellsScanpyOrder,apriori,Dataset 12:human_pbmc_cell,Graphsc,False
970,,,WeightedFeatureSVDxScTransform,apriori,Dataset 12:human_pbmc_cell,Graphsc,False
971,,,FilterCellsPlaceHolder,apriori,Dataset 12:human_pbmc_cell,Graphsc,True
972,,,FilterCellsScanpyOrder,apriori,Dataset 12:human_pbmc_cell,Graphsc,True
973,,,FilterGenesPlaceHolder,apriori,Dataset 12:human_pbmc_cell,Graphsc,True
974,,,ScaleFeature,apriori,Dataset 12:human_pbmc_cell,Graphsc,True
975,,,WeightedFeaturePCA,apriori,Dataset 12:human_pbmc_cell,Graphsc,True
976,,,WeightedFeatureSVD,apriori,Dataset 12:human_pbmc_cell,Graphsc,True
977,,,FilterGenesPlaceHolderxFilterCellsPlaceHolder,apriori,Dataset 12:human_pbmc_cell,Graphsc,True
978,,,ScaleFeaturexFilterCellsPlaceHolder,apriori,Dataset 12:human_pbmc_cell,Graphsc,True
979,,,WeightedFeatureSVDxFilterCellsPlaceHolder,apriori,Dataset 12:human_pbmc_cell,Graphsc,True
980,,,FilterGenesPlaceHolderxFilterCellsScanpyOrder,apriori,Dataset 12:human_pbmc_cell,Graphsc,True
981,,,ScaleFeaturexFilterCellsScanpyOrder,apriori,Dataset 12:human_pbmc_cell,Graphsc,True
982,,,FilterGenesPlaceHolderxScaleFeature,apriori,Dataset 12:human_pbmc_cell,Graphsc,True
983,,,FilterGenesPlaceHolderxWeightedFeaturePCA,apriori,Dataset 12:human_pbmc_cell,Graphsc,True
984,,,FilterGenesPlaceHolderxWeightedFeatureSVD,apriori,Dataset 12:human_pbmc_cell,Graphsc,True
985,,,WeightedFeatureSVDxScaleFeature,apriori,Dataset 12:human_pbmc_cell,Graphsc,True
986,0.08957556411573943,-0.4773129052542396,ScaleFeature,forest,Dataset 1:worm_neuron_cell,SCDCC,
987,0.0764374334805872,-0.42224109557549816,FilterGenesTopK,forest,Dataset 1:worm_neuron_cell,SCDCC,
988,0.0500362855606948,-0.18942444917753581,NormalizePlaceHolder,forest,Dataset 1:worm_neuron_cell,SCDCC,
989,0.039138274335106096,-0.12966162791838612,HighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 1:worm_neuron_cell,SCDCC,
990,0.030313406935652862,-0.17859537473802234,ScaleFeaturexFilterGenesTopK,forest,Dataset 1:worm_neuron_cell,SCDCC,
991,0.025348634045122574,-0.05167536304746193,HighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 1:worm_neuron_cell,SCDCC,
992,0.02301206205238267,0.34859670804087356,NormalizeTotal,forest,Dataset 1:worm_neuron_cell,SCDCC,
993,0.01762369692044361,-0.155482860510287,ScTransformxHighlyVariableGenesLogarithmizedByMeanAndDisp,forest,Dataset 1:worm_neuron_cell,SCDCC,
994,0.017410463549617474,-0.17731538254800558,NormalizePlaceHolderxFilterGenesTopK,forest,Dataset 1:worm_neuron_cell,SCDCC,
995,0.01724037966534268,,NormalizePlaceHolderxScaleFeature,forest,Dataset 1:worm_neuron_cell,SCDCC,
996,0.017094592349742203,0.052426705059296856,HighlyVariableGenesRawCount,forest,Dataset 1:worm_neuron_cell,SCDCC,
997,0.015357373693011009,-0.18215857013513775,ScaleFeaturexHighlyVariableGenesLogarithmizedByTopGenes,forest,Dataset 1:worm_neuron_cell,SCDCC,
998,0.0115737158055854,-0.1765183564044254,NormalizePlaceHolderxHighlyVariableGenesRawCount,forest,Dataset 1:worm_neuron_cell,SCDCC,