-
Notifications
You must be signed in to change notification settings - Fork 0
/
log.txr
2700 lines (2678 loc) · 195 KB
/
log.txr
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
Setting OMP and MKL num threads to 1.
No remnant processes found on the gpu
Building replay interface
Building replay interface
Selected main path: /home/emoullet/Documents/i-GRIP/DATA
Reading session Session 1 folder at /home/emoullet/Documents/i-GRIP/DATA/Session_1
Pseudos database imported from '/home/emoullet/Documents/i-GRIP/DATA/Session_1/Session_1_participants_database.csv'
Processing monitoring database imported from '/home/emoullet/Documents/i-GRIP/DATA/Session_1_processing/Session_1_processing_monitoring.csv'
Processing monitoring database:
Pseudo Recording date ... Processable To Process
0 RKS6625 2023-09-26 19:22:26.060120 ... False False
1 LXX2425 2023-09-27 10:42:20.508174 ... False False
2 NQH9598 2023-09-27 11:22:17.432590 ... False False
3 NFR4534 2023-09-27 14:09:17.883312 ... False False
4 TQS3833 2023-09-27 17:02:14.940356 ... False False
5 ONB2325 2023-09-27 18:00:00.804988 ... False False
6 GKX5203 2023-09-28 11:13:32.215494 ... False False
7 ODQ2735 2023-09-28 14:07:06.687303 ... False False
8 CID3008 2023-09-28 17:19:23.651164 ... False False
9 HQC3065 2023-09-29 10:09:06.895271 ... False False
10 FQC4458 2023-09-29 10:59:57.907600 ... False False
11 HLG6557 2023-09-29 13:39:36.004549 ... False False
12 GJP9852 2023-09-29 14:00:40.493735 ... False False
13 DGI7849 2023-09-29 14:06:49.711750 ... False False
14 PJW0779 2023-09-29 15:40:39.922345 ... False False
15 DHR1822 2023-09-29 16:09:17.812723 ... False False
16 DVX2916 2023-09-29 17:37:34.103098 ... False False
[17 rows x 12 columns]
combinations data:
Objects ... Trial Number
0 mustard ... 1
1 cheez'it ... 2
2 mustard ... 3
3 tomato ... 4
4 cheez'it ... 5
.. ... ... ...
123 cheez'it ... 124
124 cheez'it ... 125
125 mustard ... 126
126 mustard ... 127
127 tomato ... 128
[128 rows x 6 columns]
Combinations read from '/home/emoullet/Documents/i-GRIP/DATA/Session_1/RKS6625/RKS6625_combinations.csv'
Trial folders found in '/home/emoullet/Documents/i-GRIP/DATA/Session_1/RKS6625':
["trial_65_combi_cheez'it_right_palmar_simulated", "trial_1_combi_cheez'it_left_palmar_simulated", 'trial_74_combi_mustard_left_pinch_executed', 'trial_94_combi_bleach_right_pinch_simulated', "trial_117_combi_cheez'it_right_pinch_simulated", "trial_18_combi_cheez'it_left_pinch_executed", 'trial_45_combi_bleach_right_pinch_simulated', 'trial_69_combi_bleach_right_pinch_executed', 'trial_46_combi_tomato_right_palmar_simulated', 'trial_41_combi_mustard_left_palmar_executed', "trial_5_combi_cheez'it_left_palmar_executed", 'trial_67_combi_mustard_right_palmar_executed', 'trial_23_combi_bleach_right_palmar_executed', 'trial_30_combi_mustard_right_pinch_executed', 'trial_92_combi_mustard_right_palmar_executed', "trial_47_combi_cheez'it_left_palmar_simulated", 'trial_88_combi_tomato_right_pinch_simulated', 'trial_119_combi_bleach_left_pinch_executed', 'trial_17_combi_bleach_left_pinch_executed', 'trial_3_combi_tomato_left_pinch_executed', 'trial_61_combi_mustard_left_pinch_simulated', 'trial_63_combi_mustard_right_palmar_executed', 'trial_93_combi_bleach_left_pinch_simulated', 'trial_2_combi_mustard_left_pinch_simulated', "trial_7_combi_cheez'it_left_palmar_simulated", "trial_70_combi_cheez'it_right_pinch_executed", 'trial_99_combi_tomato_left_pinch_simulated', 'trial_15_combi_bleach_left_pinch_simulated', "trial_73_combi_cheez'it_right_palmar_executed", 'trial_109_combi_mustard_right_pinch_simulated', 'trial_87_combi_mustard_right_palmar_simulated', 'trial_81_combi_bleach_left_palmar_executed', 'trial_44_combi_tomato_left_palmar_executed', 'trial_22_combi_mustard_right_palmar_simulated', 'trial_122_combi_bleach_left_palmar_simulated', 'trial_28_combi_bleach_left_palmar_executed', 'trial_31_combi_mustard_right_palmar_simulated', "trial_4_combi_cheez'it_right_palmar_simulated", 'trial_21_combi_mustard_left_palmar_simulated', "trial_100_combi_cheez'it_left_pinch_simulated", 'trial_101_combi_bleach_right_palmar_simulated', 'trial_113_combi_mustard_right_pinch_executed', 'trial_64_combi_mustard_left_pinch_simulated', 'trial_111_combi_bleach_right_palmar_simulated', 'trial_104_combi_tomato_right_palmar_executed', 'trial_35_combi_tomato_right_palmar_executed', "trial_57_combi_cheez'it_right_pinch_executed", 'trial_37_combi_tomato_left_palmar_executed', "trial_59_combi_cheez'it_right_palmar_executed", "trial_114_combi_cheez'it_left_pinch_simulated", 'trial_20_combi_tomato_left_palmar_simulated', 'trial_49_combi_tomato_right_pinch_simulated', "trial_121_combi_cheez'it_right_palmar_simulated", 'trial_27_combi_tomato_left_palmar_simulated', 'trial_13_combi_tomato_left_pinch_executed', 'trial_55_combi_mustard_left_palmar_executed', "trial_40_combi_cheez'it_left_palmar_executed", 'trial_53_combi_bleach_left_palmar_simulated', "trial_85_combi_cheez'it_left_pinch_executed", "trial_34_combi_cheez'it_right_pinch_simulated", "trial_84_combi_cheez'it_right_palmar_executed", 'trial_16_combi_mustard_left_palmar_simulated', 'trial_127_combi_tomato_left_pinch_simulated', "trial_24_combi_cheez'it_left_pinch_executed", 'trial_43_combi_tomato_right_pinch_executed', "trial_118_combi_cheez'it_left_pinch_simulated", 'trial_102_combi_mustard_right_pinch_simulated', 'trial_56_combi_mustard_right_pinch_simulated', 'trial_54_combi_bleach_left_pinch_simulated', 'trial_8_combi_mustard_left_palmar_executed', "trial_68_combi_cheez'it_left_pinch_simulated", 'trial_33_combi_tomato_right_pinch_executed', 'trial_62_combi_bleach_right_pinch_executed', 'trial_91_combi_bleach_left_palmar_executed', "trial_107_combi_cheez'it_left_palmar_executed", 'trial_125_combi_mustard_right_pinch_executed', 'trial_39_combi_bleach_left_pinch_simulated', 'trial_103_combi_bleach_right_pinch_simulated', 'trial_71_combi_tomato_left_palmar_executed', "trial_106_combi_cheez'it_left_palmar_executed", 'trial_11_combi_bleach_left_palmar_simulated', 'trial_19_combi_bleach_left_pinch_executed', 'trial_38_combi_tomato_right_palmar_simulated', 'trial_32_combi_bleach_right_palmar_simulated', 'trial_48_combi_tomato_right_palmar_executed', 'trial_36_combi_tomato_right_pinch_executed', 'trial_0_combi_mustard_left_pinch_executed', 'trial_42_combi_tomato_right_pinch_simulated', 'trial_108_combi_bleach_left_palmar_simulated', 'trial_51_combi_tomato_left_pinch_executed', "trial_123_combi_cheez'it_left_pinch_executed", 'trial_112_combi_tomato_left_palmar_simulated', 'trial_96_combi_tomato_left_pinch_simulated', "trial_10_combi_cheez'it_right_pinch_simulated", 'trial_9_combi_mustard_right_pinch_simulated', 'trial_97_combi_bleach_right_palmar_executed', 'trial_6_combi_tomato_right_pinch_simulated', 'trial_76_combi_tomato_right_palmar_simulated', 'trial_90_combi_bleach_left_palmar_executed', "trial_115_combi_cheez'it_right_palmar_executed", 'trial_89_combi_bleach_right_palmar_executed', 'trial_83_combi_tomato_right_pinch_executed', 'trial_116_combi_mustard_left_palmar_executed', 'trial_26_combi_bleach_right_pinch_simulated', "trial_75_combi_cheez'it_right_pinch_simulated", 'trial_60_combi_tomato_left_pinch_executed', 'trial_95_combi_tomato_right_palmar_executed', 'trial_29_combi_bleach_left_pinch_executed', 'trial_50_combi_mustard_right_palmar_executed', 'trial_79_combi_mustard_left_pinch_executed', 'trial_110_combi_mustard_left_palmar_simulated', 'trial_98_combi_bleach_right_palmar_executed', 'trial_66_combi_tomato_left_palmar_executed', 'trial_82_combi_tomato_left_pinch_simulated', 'trial_72_combi_bleach_right_pinch_executed', 'trial_78_combi_tomato_left_palmar_simulated', 'trial_77_combi_mustard_left_pinch_executed', 'trial_80_combi_mustard_right_pinch_executed', "trial_52_combi_cheez'it_left_palmar_simulated", 'trial_120_combi_bleach_right_palmar_simulated', "trial_25_combi_cheez'it_right_pinch_executed", "trial_124_combi_cheez'it_right_pinch_executed", 'trial_126_combi_mustard_left_pinch_simulated', 'trial_58_combi_mustard_left_palmar_simulated', 'trial_12_combi_tomato_right_palmar_simulated', 'trial_86_combi_mustard_right_palmar_simulated', "trial_14_combi_cheez'it_right_palmar_simulated", 'trial_105_combi_bleach_right_pinch_executed']
Trial trial_0_combi_mustard_left_pinch_executed pre-processed
was trial_0_combi_mustard_left_pinch_executed replayed ?
Trial 'trial_0_combi_mustard_left_pinch_executed' not replayed: missing file with suffix 'depth_map.gzip'
Trial trial_1_combi_cheez'it_left_palmar_simulated pre-processed
was trial_1_combi_cheez'it_left_palmar_simulated replayed ?
Trial 'trial_1_combi_cheez'it_left_palmar_simulated' not replayed: missing file with suffix 'depth_map.gzip'
Trial trial_2_combi_mustard_left_pinch_simulated pre-processed
was trial_2_combi_mustard_left_pinch_simulated replayed ?
Trial 'trial_2_combi_mustard_left_pinch_simulated' not replayed: missing file with suffix 'depth_map.gzip'
Trial trial_3_combi_tomato_left_pinch_executed pre-processed
was trial_3_combi_tomato_left_pinch_executed replayed ?
Trial 'trial_3_combi_tomato_left_pinch_executed' not replayed: missing file with suffix 'depth_map.gzip'
Trial trial_4_combi_cheez'it_right_palmar_simulated pre-processed
was trial_4_combi_cheez'it_right_palmar_simulated replayed ?
Trial 'trial_4_combi_cheez'it_right_palmar_simulated' not replayed: missing file with suffix 'depth_map.gzip'
Trial trial_5_combi_cheez'it_left_palmar_executed pre-processed
was trial_5_combi_cheez'it_left_palmar_executed replayed ?
Trial 'trial_5_combi_cheez'it_left_palmar_executed' not replayed: missing file with suffix 'depth_map.gzip'
Trial trial_6_combi_tomato_right_pinch_simulated pre-processed
was trial_6_combi_tomato_right_pinch_simulated replayed ?
Trial 'trial_6_combi_tomato_right_pinch_simulated' not replayed: missing file with suffix 'depth_map.gzip'
Trial trial_7_combi_cheez'it_left_palmar_simulated pre-processed
was trial_7_combi_cheez'it_left_palmar_simulated replayed ?
Trial 'trial_7_combi_cheez'it_left_palmar_simulated' not replayed: missing file with suffix 'depth_map.gzip'
Trial trial_8_combi_mustard_left_palmar_executed pre-processed
was trial_8_combi_mustard_left_palmar_executed replayed ?
Trial 'trial_8_combi_mustard_left_palmar_executed' not replayed: missing file with suffix 'depth_map.gzip'
Trial trial_9_combi_mustard_right_pinch_simulated pre-processed
was trial_9_combi_mustard_right_pinch_simulated replayed ?
Trial 'trial_9_combi_mustard_right_pinch_simulated' not replayed: missing file with suffix 'depth_map.gzip'
Trial trial_10_combi_cheez'it_right_pinch_simulated pre-processed
was trial_10_combi_cheez'it_right_pinch_simulated replayed ?
Trial 'trial_10_combi_cheez'it_right_pinch_simulated' not replayed: missing file with suffix 'depth_map.gzip'
Trial trial_11_combi_bleach_left_palmar_simulated pre-processed
was trial_11_combi_bleach_left_palmar_simulated replayed ?
Trial 'trial_11_combi_bleach_left_palmar_simulated' not replayed: missing file with suffix 'depth_map.gzip'
Trial trial_12_combi_tomato_right_palmar_simulated pre-processed
was trial_12_combi_tomato_right_palmar_simulated replayed ?
Trial trial_13_combi_tomato_left_pinch_executed pre-processed
was trial_13_combi_tomato_left_pinch_executed replayed ?
Trial trial_14_combi_cheez'it_right_palmar_simulated pre-processed
was trial_14_combi_cheez'it_right_palmar_simulated replayed ?
Trial trial_15_combi_bleach_left_pinch_simulated pre-processed
was trial_15_combi_bleach_left_pinch_simulated replayed ?
Trial trial_16_combi_mustard_left_palmar_simulated pre-processed
was trial_16_combi_mustard_left_palmar_simulated replayed ?
Trial trial_17_combi_bleach_left_pinch_executed pre-processed
was trial_17_combi_bleach_left_pinch_executed replayed ?
Trial 'trial_18_combi_cheez'it_left_pinch_executed' not pre-processed: missing file with suffix 'depth_map_movement.gzip'
Trial trial_18_combi_cheez'it_left_pinch_executed not pre-processed
was trial_18_combi_cheez'it_left_pinch_executed replayed ?
Trial trial_19_combi_bleach_left_pinch_executed pre-processed
was trial_19_combi_bleach_left_pinch_executed replayed ?
Trial trial_20_combi_tomato_left_palmar_simulated pre-processed
was trial_20_combi_tomato_left_palmar_simulated replayed ?
Trial trial_21_combi_mustard_left_palmar_simulated pre-processed
was trial_21_combi_mustard_left_palmar_simulated replayed ?
Trial trial_22_combi_mustard_right_palmar_simulated pre-processed
was trial_22_combi_mustard_right_palmar_simulated replayed ?
Trial trial_23_combi_bleach_right_palmar_executed pre-processed
was trial_23_combi_bleach_right_palmar_executed replayed ?
Trial trial_24_combi_cheez'it_left_pinch_executed pre-processed
was trial_24_combi_cheez'it_left_pinch_executed replayed ?
Trial trial_25_combi_cheez'it_right_pinch_executed pre-processed
was trial_25_combi_cheez'it_right_pinch_executed replayed ?
Trial trial_26_combi_bleach_right_pinch_simulated pre-processed
was trial_26_combi_bleach_right_pinch_simulated replayed ?
Trial trial_27_combi_tomato_left_palmar_simulated pre-processed
was trial_27_combi_tomato_left_palmar_simulated replayed ?
Trial trial_28_combi_bleach_left_palmar_executed pre-processed
was trial_28_combi_bleach_left_palmar_executed replayed ?
Trial trial_29_combi_bleach_left_pinch_executed pre-processed
was trial_29_combi_bleach_left_pinch_executed replayed ?
Trial trial_30_combi_mustard_right_pinch_executed pre-processed
was trial_30_combi_mustard_right_pinch_executed replayed ?
Trial trial_31_combi_mustard_right_palmar_simulated pre-processed
was trial_31_combi_mustard_right_palmar_simulated replayed ?
Trial trial_32_combi_bleach_right_palmar_simulated pre-processed
was trial_32_combi_bleach_right_palmar_simulated replayed ?
Trial trial_33_combi_tomato_right_pinch_executed pre-processed
was trial_33_combi_tomato_right_pinch_executed replayed ?
Trial trial_34_combi_cheez'it_right_pinch_simulated pre-processed
was trial_34_combi_cheez'it_right_pinch_simulated replayed ?
Trial trial_35_combi_tomato_right_palmar_executed pre-processed
was trial_35_combi_tomato_right_palmar_executed replayed ?
Trial trial_36_combi_tomato_right_pinch_executed pre-processed
was trial_36_combi_tomato_right_pinch_executed replayed ?
Trial trial_37_combi_tomato_left_palmar_executed pre-processed
was trial_37_combi_tomato_left_palmar_executed replayed ?
Trial trial_38_combi_tomato_right_palmar_simulated pre-processed
was trial_38_combi_tomato_right_palmar_simulated replayed ?
Trial 'trial_39_combi_bleach_left_pinch_simulated' not pre-processed: missing file with suffix 'depth_map_movement.gzip'
Trial trial_39_combi_bleach_left_pinch_simulated not pre-processed
was trial_39_combi_bleach_left_pinch_simulated replayed ?
Trial 'trial_40_combi_cheez'it_left_palmar_executed' not pre-processed: missing file with suffix 'depth_map_movement.gzip'
Trial trial_40_combi_cheez'it_left_palmar_executed not pre-processed
was trial_40_combi_cheez'it_left_palmar_executed replayed ?
was trial_41_combi_mustard_left_palmar_executed replayed ?
was trial_42_combi_tomato_right_pinch_simulated replayed ?
was trial_43_combi_tomato_right_pinch_executed replayed ?
was trial_44_combi_tomato_left_palmar_executed replayed ?
was trial_45_combi_bleach_right_pinch_simulated replayed ?
was trial_46_combi_tomato_right_palmar_simulated replayed ?
was trial_47_combi_cheez'it_left_palmar_simulated replayed ?
was trial_48_combi_tomato_right_palmar_executed replayed ?
was trial_49_combi_tomato_right_pinch_simulated replayed ?
was trial_50_combi_mustard_right_palmar_executed replayed ?
was trial_51_combi_tomato_left_pinch_executed replayed ?
was trial_52_combi_cheez'it_left_palmar_simulated replayed ?
was trial_53_combi_bleach_left_palmar_simulated replayed ?
was trial_54_combi_bleach_left_pinch_simulated replayed ?
was trial_55_combi_mustard_left_palmar_executed replayed ?
was trial_56_combi_mustard_right_pinch_simulated replayed ?
was trial_57_combi_cheez'it_right_pinch_executed replayed ?
was trial_58_combi_mustard_left_palmar_simulated replayed ?
was trial_59_combi_cheez'it_right_palmar_executed replayed ?
was trial_60_combi_tomato_left_pinch_executed replayed ?
was trial_61_combi_mustard_left_pinch_simulated replayed ?
was trial_62_combi_bleach_right_pinch_executed replayed ?
was trial_63_combi_mustard_right_palmar_executed replayed ?
was trial_64_combi_mustard_left_pinch_simulated replayed ?
was trial_65_combi_cheez'it_right_palmar_simulated replayed ?
was trial_66_combi_tomato_left_palmar_executed replayed ?
was trial_67_combi_mustard_right_palmar_executed replayed ?
was trial_68_combi_cheez'it_left_pinch_simulated replayed ?
was trial_69_combi_bleach_right_pinch_executed replayed ?
was trial_70_combi_cheez'it_right_pinch_executed replayed ?
was trial_71_combi_tomato_left_palmar_executed replayed ?
was trial_72_combi_bleach_right_pinch_executed replayed ?
was trial_73_combi_cheez'it_right_palmar_executed replayed ?
was trial_74_combi_mustard_left_pinch_executed replayed ?
was trial_75_combi_cheez'it_right_pinch_simulated replayed ?
was trial_76_combi_tomato_right_palmar_simulated replayed ?
was trial_77_combi_mustard_left_pinch_executed replayed ?
was trial_78_combi_tomato_left_palmar_simulated replayed ?
was trial_79_combi_mustard_left_pinch_executed replayed ?
was trial_80_combi_mustard_right_pinch_executed replayed ?
was trial_81_combi_bleach_left_palmar_executed replayed ?
was trial_82_combi_tomato_left_pinch_simulated replayed ?
was trial_83_combi_tomato_right_pinch_executed replayed ?
was trial_84_combi_cheez'it_right_palmar_executed replayed ?
was trial_85_combi_cheez'it_left_pinch_executed replayed ?
was trial_86_combi_mustard_right_palmar_simulated replayed ?
was trial_87_combi_mustard_right_palmar_simulated replayed ?
was trial_88_combi_tomato_right_pinch_simulated replayed ?
was trial_89_combi_bleach_right_palmar_executed replayed ?
was trial_90_combi_bleach_left_palmar_executed replayed ?
was trial_91_combi_bleach_left_palmar_executed replayed ?
was trial_92_combi_mustard_right_palmar_executed replayed ?
was trial_93_combi_bleach_left_pinch_simulated replayed ?
was trial_94_combi_bleach_right_pinch_simulated replayed ?
was trial_95_combi_tomato_right_palmar_executed replayed ?
was trial_96_combi_tomato_left_pinch_simulated replayed ?
was trial_97_combi_bleach_right_palmar_executed replayed ?
was trial_98_combi_bleach_right_palmar_executed replayed ?
was trial_99_combi_tomato_left_pinch_simulated replayed ?
was trial_100_combi_cheez'it_left_pinch_simulated replayed ?
was trial_101_combi_bleach_right_palmar_simulated replayed ?
was trial_102_combi_mustard_right_pinch_simulated replayed ?
was trial_103_combi_bleach_right_pinch_simulated replayed ?
was trial_104_combi_tomato_right_palmar_executed replayed ?
was trial_105_combi_bleach_right_pinch_executed replayed ?
was trial_106_combi_cheez'it_left_palmar_executed replayed ?
was trial_107_combi_cheez'it_left_palmar_executed replayed ?
was trial_108_combi_bleach_left_palmar_simulated replayed ?
was trial_109_combi_mustard_right_pinch_simulated replayed ?
was trial_110_combi_mustard_left_palmar_simulated replayed ?
was trial_111_combi_bleach_right_palmar_simulated replayed ?
was trial_112_combi_tomato_left_palmar_simulated replayed ?
was trial_113_combi_mustard_right_pinch_executed replayed ?
was trial_114_combi_cheez'it_left_pinch_simulated replayed ?
was trial_115_combi_cheez'it_right_palmar_executed replayed ?
was trial_116_combi_mustard_left_palmar_executed replayed ?
was trial_117_combi_cheez'it_right_pinch_simulated replayed ?
was trial_118_combi_cheez'it_left_pinch_simulated replayed ?
was trial_119_combi_bleach_left_pinch_executed replayed ?
was trial_120_combi_bleach_right_palmar_simulated replayed ?
was trial_121_combi_cheez'it_right_palmar_simulated replayed ?
was trial_122_combi_bleach_left_palmar_simulated replayed ?
was trial_123_combi_cheez'it_left_pinch_executed replayed ?
was trial_124_combi_cheez'it_right_pinch_executed replayed ?
was trial_125_combi_mustard_right_pinch_executed replayed ?
was trial_126_combi_mustard_left_pinch_simulated replayed ?
was trial_127_combi_tomato_left_pinch_simulated replayed ?
combinations data:
Objects ... Trial Number
0 tomato ... 1
1 cheez'it ... 2
2 cheez'it ... 3
3 bleach ... 4
4 tomato ... 5
.. ... ... ...
123 bleach ... 124
124 bleach ... 125
125 cheez'it ... 126
126 mustard ... 127
127 tomato ... 128
[128 rows x 6 columns]
Combinations read from '/home/emoullet/Documents/i-GRIP/DATA/Session_1/LXX2425/LXX2425_combinations.csv'
Trial folders found in '/home/emoullet/Documents/i-GRIP/DATA/Session_1/LXX2425':
["trial_1_combi_cheez'it_left_palmar_simulated", 'trial_93_combi_tomato_right_palmar_simulated', 'trial_67_combi_bleach_right_pinch_executed', 'trial_59_combi_mustard_left_palmar_executed', 'trial_117_combi_bleach_right_pinch_simulated', 'trial_122_combi_tomato_left_palmar_executed', 'trial_94_combi_tomato_left_pinch_simulated', 'trial_114_combi_bleach_right_pinch_executed', 'trial_79_combi_bleach_right_palmar_simulated', 'trial_81_combi_mustard_right_pinch_executed', 'trial_120_combi_mustard_right_pinch_executed', "trial_42_combi_cheez'it_right_pinch_simulated", 'trial_105_combi_bleach_left_palmar_executed', 'trial_44_combi_tomato_left_palmar_simulated', "trial_24_combi_cheez'it_left_palmar_executed", "trial_100_combi_cheez'it_right_pinch_simulated", "trial_53_combi_cheez'it_left_palmar_simulated", 'trial_95_combi_tomato_left_palmar_executed', 'trial_127_combi_tomato_left_pinch_executed', "trial_125_combi_cheez'it_right_palmar_simulated", 'trial_110_combi_bleach_left_palmar_simulated', "trial_43_combi_cheez'it_right_palmar_simulated", "trial_37_combi_cheez'it_right_palmar_executed", 'trial_108_combi_tomato_left_pinch_simulated', 'trial_60_combi_bleach_right_palmar_simulated', 'trial_113_combi_tomato_right_palmar_executed', 'trial_99_combi_tomato_left_palmar_simulated', 'trial_82_combi_bleach_right_palmar_simulated', 'trial_20_combi_mustard_right_palmar_simulated', "trial_90_combi_cheez'it_left_pinch_executed", 'trial_91_combi_mustard_right_palmar_executed', 'trial_116_combi_tomato_right_palmar_simulated', "trial_26_combi_cheez'it_right_pinch_executed", 'trial_16_combi_mustard_right_palmar_simulated', 'trial_70_combi_tomato_right_pinch_simulated', "trial_15_combi_cheez'it_right_palmar_simulated", 'trial_83_combi_tomato_left_pinch_simulated', 'trial_112_combi_bleach_left_pinch_simulated', 'trial_18_combi_mustard_right_palmar_simulated', 'trial_58_combi_mustard_right_pinch_simulated', 'trial_4_combi_tomato_right_palmar_simulated', 'trial_54_combi_tomato_right_palmar_executed', "trial_32_combi_cheez'it_left_palmar_simulated", 'trial_101_combi_mustard_left_pinch_simulated', 'trial_86_combi_mustard_right_palmar_executed', "trial_75_combi_cheez'it_left_pinch_simulated", 'trial_61_combi_mustard_right_pinch_simulated', 'trial_38_combi_mustard_left_pinch_simulated', 'trial_22_combi_tomato_left_pinch_executed', "trial_2_combi_cheez'it_right_palmar_executed", "trial_25_combi_cheez'it_right_pinch_simulated", "trial_27_combi_cheez'it_left_pinch_simulated", 'trial_56_combi_tomato_right_pinch_executed', 'trial_96_combi_tomato_right_palmar_simulated', 'trial_41_combi_tomato_left_palmar_simulated', 'trial_13_combi_mustard_left_palmar_simulated', "trial_47_combi_cheez'it_right_pinch_simulated", 'trial_89_combi_bleach_right_pinch_executed', 'trial_124_combi_bleach_left_pinch_executed', 'trial_17_combi_bleach_right_palmar_executed', "trial_51_combi_cheez'it_left_palmar_simulated", "trial_87_combi_cheez'it_right_pinch_executed", 'trial_35_combi_tomato_right_pinch_executed', 'trial_85_combi_tomato_right_pinch_executed', "trial_68_combi_cheez'it_left_pinch_simulated", 'trial_46_combi_mustard_left_palmar_simulated', 'trial_31_combi_mustard_left_pinch_executed', "trial_102_combi_cheez'it_left_palmar_executed", 'trial_5_combi_bleach_left_pinch_executed', "trial_107_combi_cheez'it_left_palmar_executed", 'trial_30_combi_bleach_right_palmar_executed', 'trial_65_combi_bleach_left_palmar_executed', 'trial_119_combi_bleach_left_pinch_simulated', 'trial_62_combi_mustard_left_palmar_executed', 'trial_115_combi_mustard_left_palmar_executed', "trial_98_combi_cheez'it_right_pinch_executed", 'trial_34_combi_mustard_left_pinch_executed', 'trial_74_combi_mustard_right_palmar_executed', 'trial_121_combi_bleach_left_pinch_simulated', 'trial_14_combi_mustard_left_pinch_simulated', 'trial_84_combi_mustard_right_pinch_executed', 'trial_3_combi_bleach_right_palmar_executed', 'trial_104_combi_bleach_right_pinch_simulated', 'trial_73_combi_tomato_right_pinch_executed', 'trial_48_combi_tomato_right_pinch_simulated', "trial_19_combi_cheez'it_left_pinch_simulated", 'trial_64_combi_mustard_left_palmar_simulated', 'trial_45_combi_mustard_right_pinch_executed', "trial_52_combi_cheez'it_left_pinch_executed", 'trial_7_combi_mustard_left_pinch_executed', 'trial_21_combi_bleach_right_palmar_simulated', 'trial_0_combi_tomato_left_pinch_executed', "trial_39_combi_cheez'it_left_pinch_executed", "trial_55_combi_cheez'it_left_palmar_executed", 'trial_71_combi_bleach_left_palmar_simulated', 'trial_88_combi_mustard_right_palmar_simulated', 'trial_111_combi_mustard_left_pinch_executed', 'trial_6_combi_tomato_right_pinch_simulated', 'trial_49_combi_bleach_left_palmar_simulated', 'trial_11_combi_bleach_right_pinch_executed', 'trial_57_combi_mustard_left_palmar_simulated', 'trial_97_combi_mustard_left_palmar_executed', 'trial_29_combi_bleach_left_pinch_executed', 'trial_23_combi_bleach_left_palmar_executed', 'trial_50_combi_mustard_right_palmar_executed', "trial_33_combi_cheez'it_right_palmar_executed", 'trial_106_combi_tomato_right_pinch_simulated', "trial_103_combi_cheez'it_right_pinch_executed", 'trial_69_combi_bleach_left_palmar_executed', 'trial_123_combi_bleach_left_pinch_executed', 'trial_92_combi_tomato_left_pinch_executed', "trial_80_combi_cheez'it_right_palmar_simulated", 'trial_78_combi_tomato_left_palmar_simulated', 'trial_77_combi_tomato_left_palmar_executed', "trial_12_combi_cheez'it_right_palmar_executed", 'trial_76_combi_tomato_right_palmar_executed', 'trial_40_combi_mustard_right_pinch_simulated', 'trial_36_combi_mustard_right_pinch_simulated', 'trial_109_combi_tomato_left_palmar_executed', 'trial_10_combi_tomato_right_palmar_executed', 'trial_126_combi_mustard_left_pinch_simulated', 'trial_63_combi_bleach_left_palmar_simulated', 'trial_66_combi_bleach_right_pinch_simulated', 'trial_72_combi_bleach_left_pinch_simulated', 'trial_9_combi_bleach_right_pinch_simulated', 'trial_28_combi_tomato_left_pinch_simulated', "trial_118_combi_cheez'it_left_pinch_executed", 'trial_8_combi_bleach_right_palmar_executed']
was trial_0_combi_tomato_left_pinch_executed replayed ?
was trial_1_combi_cheez'it_left_palmar_simulated replayed ?
was trial_2_combi_cheez'it_right_palmar_executed replayed ?
was trial_3_combi_bleach_right_palmar_executed replayed ?
was trial_4_combi_tomato_right_palmar_simulated replayed ?
was trial_5_combi_bleach_left_pinch_executed replayed ?
was trial_6_combi_tomato_right_pinch_simulated replayed ?
was trial_7_combi_mustard_left_pinch_executed replayed ?
was trial_8_combi_bleach_right_palmar_executed replayed ?
was trial_9_combi_bleach_right_pinch_simulated replayed ?
was trial_10_combi_tomato_right_palmar_executed replayed ?
was trial_11_combi_bleach_right_pinch_executed replayed ?
was trial_12_combi_cheez'it_right_palmar_executed replayed ?
was trial_13_combi_mustard_left_palmar_simulated replayed ?
was trial_14_combi_mustard_left_pinch_simulated replayed ?
was trial_15_combi_cheez'it_right_palmar_simulated replayed ?
was trial_16_combi_mustard_right_palmar_simulated replayed ?
was trial_17_combi_bleach_right_palmar_executed replayed ?
was trial_18_combi_mustard_right_palmar_simulated replayed ?
was trial_19_combi_cheez'it_left_pinch_simulated replayed ?
was trial_20_combi_mustard_right_palmar_simulated replayed ?
was trial_21_combi_bleach_right_palmar_simulated replayed ?
was trial_22_combi_tomato_left_pinch_executed replayed ?
was trial_23_combi_bleach_left_palmar_executed replayed ?
was trial_24_combi_cheez'it_left_palmar_executed replayed ?
was trial_25_combi_cheez'it_right_pinch_simulated replayed ?
was trial_26_combi_cheez'it_right_pinch_executed replayed ?
was trial_27_combi_cheez'it_left_pinch_simulated replayed ?
was trial_28_combi_tomato_left_pinch_simulated replayed ?
was trial_29_combi_bleach_left_pinch_executed replayed ?
was trial_30_combi_bleach_right_palmar_executed replayed ?
was trial_31_combi_mustard_left_pinch_executed replayed ?
was trial_32_combi_cheez'it_left_palmar_simulated replayed ?
was trial_33_combi_cheez'it_right_palmar_executed replayed ?
was trial_34_combi_mustard_left_pinch_executed replayed ?
was trial_35_combi_tomato_right_pinch_executed replayed ?
was trial_36_combi_mustard_right_pinch_simulated replayed ?
was trial_37_combi_cheez'it_right_palmar_executed replayed ?
was trial_38_combi_mustard_left_pinch_simulated replayed ?
was trial_39_combi_cheez'it_left_pinch_executed replayed ?
was trial_40_combi_mustard_right_pinch_simulated replayed ?
was trial_41_combi_tomato_left_palmar_simulated replayed ?
was trial_42_combi_cheez'it_right_pinch_simulated replayed ?
was trial_43_combi_cheez'it_right_palmar_simulated replayed ?
was trial_44_combi_tomato_left_palmar_simulated replayed ?
was trial_45_combi_mustard_right_pinch_executed replayed ?
was trial_46_combi_mustard_left_palmar_simulated replayed ?
was trial_47_combi_cheez'it_right_pinch_simulated replayed ?
was trial_48_combi_tomato_right_pinch_simulated replayed ?
was trial_49_combi_bleach_left_palmar_simulated replayed ?
was trial_50_combi_mustard_right_palmar_executed replayed ?
was trial_51_combi_cheez'it_left_palmar_simulated replayed ?
was trial_52_combi_cheez'it_left_pinch_executed replayed ?
was trial_53_combi_cheez'it_left_palmar_simulated replayed ?
was trial_54_combi_tomato_right_palmar_executed replayed ?
was trial_55_combi_cheez'it_left_palmar_executed replayed ?
was trial_56_combi_tomato_right_pinch_executed replayed ?
was trial_57_combi_mustard_left_palmar_simulated replayed ?
was trial_58_combi_mustard_right_pinch_simulated replayed ?
was trial_59_combi_mustard_left_palmar_executed replayed ?
was trial_60_combi_bleach_right_palmar_simulated replayed ?
was trial_61_combi_mustard_right_pinch_simulated replayed ?
was trial_62_combi_mustard_left_palmar_executed replayed ?
was trial_63_combi_bleach_left_palmar_simulated replayed ?
was trial_64_combi_mustard_left_palmar_simulated replayed ?
was trial_65_combi_bleach_left_palmar_executed replayed ?
was trial_66_combi_bleach_right_pinch_simulated replayed ?
was trial_67_combi_bleach_right_pinch_executed replayed ?
was trial_68_combi_cheez'it_left_pinch_simulated replayed ?
was trial_69_combi_bleach_left_palmar_executed replayed ?
was trial_70_combi_tomato_right_pinch_simulated replayed ?
was trial_71_combi_bleach_left_palmar_simulated replayed ?
was trial_72_combi_bleach_left_pinch_simulated replayed ?
was trial_73_combi_tomato_right_pinch_executed replayed ?
was trial_74_combi_mustard_right_palmar_executed replayed ?
was trial_75_combi_cheez'it_left_pinch_simulated replayed ?
was trial_76_combi_tomato_right_palmar_executed replayed ?
was trial_77_combi_tomato_left_palmar_executed replayed ?
was trial_78_combi_tomato_left_palmar_simulated replayed ?
was trial_79_combi_bleach_right_palmar_simulated replayed ?
was trial_80_combi_cheez'it_right_palmar_simulated replayed ?
was trial_81_combi_mustard_right_pinch_executed replayed ?
was trial_82_combi_bleach_right_palmar_simulated replayed ?
was trial_83_combi_tomato_left_pinch_simulated replayed ?
was trial_84_combi_mustard_right_pinch_executed replayed ?
was trial_85_combi_tomato_right_pinch_executed replayed ?
was trial_86_combi_mustard_right_palmar_executed replayed ?
was trial_87_combi_cheez'it_right_pinch_executed replayed ?
was trial_88_combi_mustard_right_palmar_simulated replayed ?
was trial_89_combi_bleach_right_pinch_executed replayed ?
was trial_90_combi_cheez'it_left_pinch_executed replayed ?
was trial_91_combi_mustard_right_palmar_executed replayed ?
was trial_92_combi_tomato_left_pinch_executed replayed ?
was trial_93_combi_tomato_right_palmar_simulated replayed ?
was trial_94_combi_tomato_left_pinch_simulated replayed ?
was trial_95_combi_tomato_left_palmar_executed replayed ?
was trial_96_combi_tomato_right_palmar_simulated replayed ?
was trial_97_combi_mustard_left_palmar_executed replayed ?
was trial_98_combi_cheez'it_right_pinch_executed replayed ?
was trial_99_combi_tomato_left_palmar_simulated replayed ?
was trial_100_combi_cheez'it_right_pinch_simulated replayed ?
was trial_101_combi_mustard_left_pinch_simulated replayed ?
was trial_102_combi_cheez'it_left_palmar_executed replayed ?
was trial_103_combi_cheez'it_right_pinch_executed replayed ?
was trial_104_combi_bleach_right_pinch_simulated replayed ?
was trial_105_combi_bleach_left_palmar_executed replayed ?
was trial_106_combi_tomato_right_pinch_simulated replayed ?
was trial_107_combi_cheez'it_left_palmar_executed replayed ?
was trial_108_combi_tomato_left_pinch_simulated replayed ?
was trial_109_combi_tomato_left_palmar_executed replayed ?
was trial_110_combi_bleach_left_palmar_simulated replayed ?
was trial_111_combi_mustard_left_pinch_executed replayed ?
was trial_112_combi_bleach_left_pinch_simulated replayed ?
was trial_113_combi_tomato_right_palmar_executed replayed ?
was trial_114_combi_bleach_right_pinch_executed replayed ?
was trial_115_combi_mustard_left_palmar_executed replayed ?
was trial_116_combi_tomato_right_palmar_simulated replayed ?
was trial_117_combi_bleach_right_pinch_simulated replayed ?
was trial_118_combi_cheez'it_left_pinch_executed replayed ?
was trial_119_combi_bleach_left_pinch_simulated replayed ?
was trial_120_combi_mustard_right_pinch_executed replayed ?
was trial_121_combi_bleach_left_pinch_simulated replayed ?
was trial_122_combi_tomato_left_palmar_executed replayed ?
was trial_123_combi_bleach_left_pinch_executed replayed ?
was trial_124_combi_bleach_left_pinch_executed replayed ?
was trial_125_combi_cheez'it_right_palmar_simulated replayed ?
was trial_126_combi_mustard_left_pinch_simulated replayed ?
was trial_127_combi_tomato_left_pinch_executed replayed ?
combinations data:
Objects ... Trial Number
0 tomato ... 1
1 mustard ... 2
2 mustard ... 3
3 bleach ... 4
4 bleach ... 5
.. ... ... ...
123 mustard ... 124
124 bleach ... 125
125 bleach ... 126
126 mustard ... 127
127 tomato ... 128
[128 rows x 6 columns]
Combinations read from '/home/emoullet/Documents/i-GRIP/DATA/Session_1/NQH9598/NQH9598_combinations.csv'
Trial folders found in '/home/emoullet/Documents/i-GRIP/DATA/Session_1/NQH9598':
['trial_7_combi_tomato_left_palmar_executed', 'trial_40_combi_bleach_left_pinch_executed', 'trial_125_combi_bleach_left_pinch_simulated', 'trial_45_combi_tomato_right_palmar_executed', 'trial_93_combi_tomato_right_palmar_simulated', 'trial_25_combi_tomato_right_pinch_simulated', 'trial_107_combi_mustard_right_pinch_executed', 'trial_13_combi_bleach_right_pinch_executed', 'trial_81_combi_tomato_right_pinch_simulated', 'trial_122_combi_bleach_right_palmar_executed', 'trial_31_combi_mustard_left_pinch_simulated', 'trial_86_combi_tomato_left_palmar_simulated', 'trial_4_combi_bleach_left_pinch_executed', 'trial_26_combi_mustard_right_palmar_simulated', 'trial_5_combi_tomato_right_pinch_executed', "trial_77_combi_cheez'it_right_pinch_executed", "trial_8_combi_cheez'it_right_pinch_simulated", 'trial_3_combi_bleach_right_palmar_simulated', 'trial_73_combi_tomato_right_palmar_executed', "trial_94_combi_cheez'it_left_palmar_executed", "trial_115_combi_cheez'it_left_pinch_simulated", 'trial_97_combi_mustard_left_palmar_simulated', "trial_72_combi_cheez'it_left_pinch_executed", 'trial_58_combi_mustard_left_pinch_simulated', 'trial_44_combi_tomato_left_palmar_simulated', "trial_70_combi_cheez'it_right_pinch_executed", 'trial_98_combi_tomato_right_pinch_executed', 'trial_27_combi_tomato_left_palmar_executed', 'trial_87_combi_mustard_right_palmar_simulated', 'trial_52_combi_mustard_left_pinch_simulated', "trial_82_combi_cheez'it_right_pinch_simulated", "trial_90_combi_cheez'it_left_palmar_executed", "trial_116_combi_cheez'it_right_palmar_executed", "trial_63_combi_cheez'it_left_palmar_executed", 'trial_49_combi_tomato_right_palmar_executed', "trial_20_combi_cheez'it_left_palmar_simulated", 'trial_123_combi_mustard_right_palmar_executed', 'trial_12_combi_bleach_left_palmar_simulated', 'trial_2_combi_mustard_left_palmar_simulated', "trial_64_combi_cheez'it_right_palmar_executed", 'trial_47_combi_tomato_left_pinch_simulated', 'trial_79_combi_mustard_right_palmar_executed', "trial_39_combi_cheez'it_left_palmar_simulated", 'trial_83_combi_mustard_right_palmar_executed', 'trial_16_combi_bleach_left_palmar_simulated', 'trial_11_combi_mustard_left_pinch_executed', "trial_48_combi_cheez'it_right_palmar_simulated", 'trial_80_combi_bleach_right_palmar_simulated', 'trial_113_combi_tomato_left_palmar_executed', 'trial_117_combi_tomato_right_pinch_simulated', "trial_21_combi_cheez'it_left_pinch_simulated", 'trial_24_combi_mustard_left_palmar_simulated', "trial_34_combi_cheez'it_right_pinch_simulated", 'trial_35_combi_bleach_right_palmar_executed', 'trial_120_combi_bleach_right_pinch_simulated', "trial_110_combi_cheez'it_left_pinch_executed", 'trial_112_combi_mustard_right_pinch_simulated', 'trial_62_combi_bleach_left_palmar_simulated', 'trial_99_combi_mustard_left_pinch_executed', 'trial_37_combi_tomato_left_pinch_executed', "trial_118_combi_cheez'it_left_pinch_simulated", 'trial_96_combi_bleach_right_palmar_executed', 'trial_1_combi_mustard_left_pinch_simulated', "trial_78_combi_cheez'it_left_palmar_executed", 'trial_56_combi_mustard_right_pinch_simulated', 'trial_17_combi_tomato_left_pinch_simulated', 'trial_88_combi_mustard_right_pinch_executed', "trial_14_combi_cheez'it_left_pinch_executed", 'trial_61_combi_mustard_left_palmar_executed', 'trial_114_combi_bleach_right_palmar_simulated', 'trial_22_combi_bleach_right_palmar_executed', 'trial_53_combi_bleach_right_pinch_simulated', "trial_95_combi_cheez'it_right_pinch_executed", 'trial_121_combi_tomato_left_pinch_simulated', 'trial_127_combi_tomato_right_pinch_simulated', 'trial_42_combi_tomato_left_palmar_simulated', "trial_109_combi_cheez'it_left_palmar_simulated", 'trial_126_combi_mustard_left_palmar_executed', 'trial_100_combi_bleach_right_pinch_simulated', 'trial_103_combi_tomato_left_pinch_executed', 'trial_38_combi_tomato_right_palmar_simulated', 'trial_65_combi_tomato_left_pinch_simulated', 'trial_28_combi_mustard_right_pinch_simulated', 'trial_15_combi_bleach_right_pinch_executed', "trial_54_combi_cheez'it_right_palmar_simulated", 'trial_106_combi_tomato_left_palmar_simulated', 'trial_105_combi_tomato_left_pinch_executed', 'trial_76_combi_bleach_left_pinch_executed', 'trial_71_combi_bleach_left_pinch_simulated', 'trial_0_combi_tomato_right_palmar_simulated', 'trial_51_combi_tomato_left_pinch_executed', "trial_102_combi_cheez'it_right_palmar_simulated", 'trial_84_combi_tomato_left_palmar_executed', 'trial_60_combi_mustard_left_palmar_executed', 'trial_91_combi_mustard_right_palmar_simulated', 'trial_29_combi_mustard_left_palmar_executed', 'trial_68_combi_mustard_right_palmar_executed', "trial_57_combi_cheez'it_right_palmar_executed", "trial_66_combi_cheez'it_left_pinch_executed", 'trial_6_combi_bleach_right_pinch_executed', 'trial_30_combi_bleach_left_pinch_simulated', "trial_67_combi_cheez'it_right_palmar_simulated", 'trial_36_combi_mustard_right_pinch_executed', "trial_85_combi_cheez'it_right_palmar_executed", 'trial_101_combi_bleach_right_pinch_executed', 'trial_41_combi_mustard_left_pinch_executed', 'trial_55_combi_mustard_left_pinch_executed', 'trial_50_combi_mustard_right_palmar_simulated', 'trial_124_combi_bleach_right_pinch_simulated', 'trial_43_combi_mustard_left_palmar_simulated', 'trial_69_combi_bleach_left_palmar_executed', 'trial_23_combi_tomato_right_palmar_simulated', 'trial_46_combi_bleach_right_palmar_simulated', "trial_32_combi_cheez'it_right_pinch_executed", 'trial_111_combi_bleach_left_pinch_simulated', 'trial_92_combi_bleach_left_palmar_simulated', 'trial_19_combi_tomato_right_pinch_executed', 'trial_74_combi_bleach_left_pinch_executed', "trial_89_combi_cheez'it_left_palmar_simulated", 'trial_9_combi_bleach_left_palmar_executed', 'trial_59_combi_bleach_left_palmar_executed', 'trial_119_combi_bleach_left_palmar_executed', "trial_18_combi_cheez'it_left_pinch_simulated", 'trial_10_combi_tomato_right_palmar_executed', "trial_104_combi_cheez'it_right_pinch_simulated", 'trial_75_combi_mustard_right_pinch_simulated', 'trial_108_combi_tomato_right_pinch_executed', 'trial_33_combi_mustard_right_pinch_executed']
was trial_0_combi_tomato_right_palmar_simulated replayed ?
was trial_1_combi_mustard_left_pinch_simulated replayed ?
was trial_2_combi_mustard_left_palmar_simulated replayed ?
was trial_3_combi_bleach_right_palmar_simulated replayed ?
was trial_4_combi_bleach_left_pinch_executed replayed ?
was trial_5_combi_tomato_right_pinch_executed replayed ?
was trial_6_combi_bleach_right_pinch_executed replayed ?
was trial_7_combi_tomato_left_palmar_executed replayed ?
was trial_8_combi_cheez'it_right_pinch_simulated replayed ?
was trial_9_combi_bleach_left_palmar_executed replayed ?
was trial_10_combi_tomato_right_palmar_executed replayed ?
was trial_11_combi_mustard_left_pinch_executed replayed ?
was trial_12_combi_bleach_left_palmar_simulated replayed ?
was trial_13_combi_bleach_right_pinch_executed replayed ?
was trial_14_combi_cheez'it_left_pinch_executed replayed ?
was trial_15_combi_bleach_right_pinch_executed replayed ?
was trial_16_combi_bleach_left_palmar_simulated replayed ?
was trial_17_combi_tomato_left_pinch_simulated replayed ?
was trial_18_combi_cheez'it_left_pinch_simulated replayed ?
was trial_19_combi_tomato_right_pinch_executed replayed ?
was trial_20_combi_cheez'it_left_palmar_simulated replayed ?
was trial_21_combi_cheez'it_left_pinch_simulated replayed ?
was trial_22_combi_bleach_right_palmar_executed replayed ?
was trial_23_combi_tomato_right_palmar_simulated replayed ?
was trial_24_combi_mustard_left_palmar_simulated replayed ?
was trial_25_combi_tomato_right_pinch_simulated replayed ?
was trial_26_combi_mustard_right_palmar_simulated replayed ?
was trial_27_combi_tomato_left_palmar_executed replayed ?
was trial_28_combi_mustard_right_pinch_simulated replayed ?
was trial_29_combi_mustard_left_palmar_executed replayed ?
was trial_30_combi_bleach_left_pinch_simulated replayed ?
was trial_31_combi_mustard_left_pinch_simulated replayed ?
was trial_32_combi_cheez'it_right_pinch_executed replayed ?
was trial_33_combi_mustard_right_pinch_executed replayed ?
was trial_34_combi_cheez'it_right_pinch_simulated replayed ?
was trial_35_combi_bleach_right_palmar_executed replayed ?
was trial_36_combi_mustard_right_pinch_executed replayed ?
was trial_37_combi_tomato_left_pinch_executed replayed ?
was trial_38_combi_tomato_right_palmar_simulated replayed ?
was trial_39_combi_cheez'it_left_palmar_simulated replayed ?
was trial_40_combi_bleach_left_pinch_executed replayed ?
was trial_41_combi_mustard_left_pinch_executed replayed ?
was trial_42_combi_tomato_left_palmar_simulated replayed ?
was trial_43_combi_mustard_left_palmar_simulated replayed ?
was trial_44_combi_tomato_left_palmar_simulated replayed ?
was trial_45_combi_tomato_right_palmar_executed replayed ?
was trial_46_combi_bleach_right_palmar_simulated replayed ?
was trial_47_combi_tomato_left_pinch_simulated replayed ?
was trial_48_combi_cheez'it_right_palmar_simulated replayed ?
was trial_49_combi_tomato_right_palmar_executed replayed ?
was trial_50_combi_mustard_right_palmar_simulated replayed ?
was trial_51_combi_tomato_left_pinch_executed replayed ?
was trial_52_combi_mustard_left_pinch_simulated replayed ?
was trial_53_combi_bleach_right_pinch_simulated replayed ?
was trial_54_combi_cheez'it_right_palmar_simulated replayed ?
was trial_55_combi_mustard_left_pinch_executed replayed ?
was trial_56_combi_mustard_right_pinch_simulated replayed ?
was trial_57_combi_cheez'it_right_palmar_executed replayed ?
was trial_58_combi_mustard_left_pinch_simulated replayed ?
was trial_59_combi_bleach_left_palmar_executed replayed ?
was trial_60_combi_mustard_left_palmar_executed replayed ?
was trial_61_combi_mustard_left_palmar_executed replayed ?
was trial_62_combi_bleach_left_palmar_simulated replayed ?
was trial_63_combi_cheez'it_left_palmar_executed replayed ?
was trial_64_combi_cheez'it_right_palmar_executed replayed ?
was trial_65_combi_tomato_left_pinch_simulated replayed ?
was trial_66_combi_cheez'it_left_pinch_executed replayed ?
was trial_67_combi_cheez'it_right_palmar_simulated replayed ?
was trial_68_combi_mustard_right_palmar_executed replayed ?
was trial_69_combi_bleach_left_palmar_executed replayed ?
was trial_70_combi_cheez'it_right_pinch_executed replayed ?
was trial_71_combi_bleach_left_pinch_simulated replayed ?
was trial_72_combi_cheez'it_left_pinch_executed replayed ?
was trial_73_combi_tomato_right_palmar_executed replayed ?
was trial_74_combi_bleach_left_pinch_executed replayed ?
was trial_75_combi_mustard_right_pinch_simulated replayed ?
was trial_76_combi_bleach_left_pinch_executed replayed ?
was trial_77_combi_cheez'it_right_pinch_executed replayed ?
was trial_78_combi_cheez'it_left_palmar_executed replayed ?
was trial_79_combi_mustard_right_palmar_executed replayed ?
was trial_80_combi_bleach_right_palmar_simulated replayed ?
was trial_81_combi_tomato_right_pinch_simulated replayed ?
was trial_82_combi_cheez'it_right_pinch_simulated replayed ?
was trial_83_combi_mustard_right_palmar_executed replayed ?
was trial_84_combi_tomato_left_palmar_executed replayed ?
was trial_85_combi_cheez'it_right_palmar_executed replayed ?
was trial_86_combi_tomato_left_palmar_simulated replayed ?
was trial_87_combi_mustard_right_palmar_simulated replayed ?
was trial_88_combi_mustard_right_pinch_executed replayed ?
was trial_89_combi_cheez'it_left_palmar_simulated replayed ?
was trial_90_combi_cheez'it_left_palmar_executed replayed ?
was trial_91_combi_mustard_right_palmar_simulated replayed ?
was trial_92_combi_bleach_left_palmar_simulated replayed ?
was trial_93_combi_tomato_right_palmar_simulated replayed ?
was trial_94_combi_cheez'it_left_palmar_executed replayed ?
was trial_95_combi_cheez'it_right_pinch_executed replayed ?
was trial_96_combi_bleach_right_palmar_executed replayed ?
was trial_97_combi_mustard_left_palmar_simulated replayed ?
was trial_98_combi_tomato_right_pinch_executed replayed ?
was trial_99_combi_mustard_left_pinch_executed replayed ?
was trial_100_combi_bleach_right_pinch_simulated replayed ?
was trial_101_combi_bleach_right_pinch_executed replayed ?
was trial_102_combi_cheez'it_right_palmar_simulated replayed ?
was trial_103_combi_tomato_left_pinch_executed replayed ?
was trial_104_combi_cheez'it_right_pinch_simulated replayed ?
was trial_105_combi_tomato_left_pinch_executed replayed ?
was trial_106_combi_tomato_left_palmar_simulated replayed ?
was trial_107_combi_mustard_right_pinch_executed replayed ?
was trial_108_combi_tomato_right_pinch_executed replayed ?
was trial_109_combi_cheez'it_left_palmar_simulated replayed ?
was trial_110_combi_cheez'it_left_pinch_executed replayed ?
was trial_111_combi_bleach_left_pinch_simulated replayed ?
was trial_112_combi_mustard_right_pinch_simulated replayed ?
was trial_113_combi_tomato_left_palmar_executed replayed ?
was trial_114_combi_bleach_right_palmar_simulated replayed ?
was trial_115_combi_cheez'it_left_pinch_simulated replayed ?
was trial_116_combi_cheez'it_right_palmar_executed replayed ?
was trial_117_combi_tomato_right_pinch_simulated replayed ?
was trial_118_combi_cheez'it_left_pinch_simulated replayed ?
was trial_119_combi_bleach_left_palmar_executed replayed ?
was trial_120_combi_bleach_right_pinch_simulated replayed ?
was trial_121_combi_tomato_left_pinch_simulated replayed ?
was trial_122_combi_bleach_right_palmar_executed replayed ?
was trial_123_combi_mustard_right_palmar_executed replayed ?
was trial_124_combi_bleach_right_pinch_simulated replayed ?
was trial_125_combi_bleach_left_pinch_simulated replayed ?
was trial_126_combi_mustard_left_palmar_executed replayed ?
was trial_127_combi_tomato_right_pinch_simulated replayed ?
combinations data:
Objects ... Trial Number
0 bleach ... 1
1 tomato ... 2
2 mustard ... 3
3 mustard ... 4
4 tomato ... 5
.. ... ... ...
123 bleach ... 124
124 bleach ... 125
125 bleach ... 126
126 mustard ... 127
127 mustard ... 128
[128 rows x 6 columns]
Combinations read from '/home/emoullet/Documents/i-GRIP/DATA/Session_1/NFR4534/NFR4534_combinations.csv'
Trial folders found in '/home/emoullet/Documents/i-GRIP/DATA/Session_1/NFR4534':
["trial_71_combi_cheez'it_left_pinch_executed", 'trial_115_combi_bleach_left_pinch_simulated', 'trial_24_combi_bleach_left_pinch_executed', 'trial_94_combi_tomato_right_pinch_executed', 'trial_84_combi_tomato_left_palmar_simulated', "trial_78_combi_cheez'it_right_palmar_executed", 'trial_73_combi_bleach_left_palmar_executed', 'trial_121_combi_tomato_right_palmar_simulated', "trial_67_combi_cheez'it_right_pinch_executed", 'trial_32_combi_mustard_right_pinch_executed', 'trial_65_combi_bleach_right_pinch_simulated', 'trial_92_combi_mustard_right_palmar_executed', "trial_28_combi_cheez'it_right_palmar_simulated", 'trial_108_combi_bleach_right_palmar_executed', 'trial_1_combi_tomato_right_pinch_simulated', 'trial_38_combi_bleach_right_pinch_simulated', 'trial_97_combi_bleach_left_palmar_simulated', "trial_7_combi_cheez'it_left_palmar_simulated", 'trial_69_combi_mustard_right_palmar_executed', 'trial_42_combi_mustard_right_palmar_simulated', 'trial_25_combi_bleach_right_pinch_simulated', 'trial_21_combi_tomato_right_palmar_executed', "trial_90_combi_cheez'it_left_pinch_simulated", 'trial_52_combi_mustard_left_pinch_simulated', "trial_82_combi_cheez'it_right_pinch_simulated", 'trial_30_combi_tomato_right_palmar_executed', 'trial_104_combi_tomato_left_palmar_executed', "trial_17_combi_cheez'it_left_palmar_executed", "trial_13_combi_cheez'it_left_palmar_simulated", "trial_50_combi_cheez'it_left_pinch_executed", 'trial_80_combi_tomato_left_pinch_simulated', 'trial_119_combi_bleach_left_palmar_simulated', 'trial_70_combi_tomato_right_pinch_simulated', "trial_83_combi_cheez'it_left_palmar_executed", 'trial_56_combi_tomato_left_pinch_simulated', 'trial_60_combi_mustard_right_pinch_executed', "trial_107_combi_cheez'it_right_palmar_simulated", 'trial_106_combi_mustard_right_pinch_executed', 'trial_89_combi_bleach_right_palmar_simulated', 'trial_40_combi_mustard_left_palmar_simulated', 'trial_62_combi_bleach_left_pinch_executed', 'trial_35_combi_bleach_left_pinch_simulated', "trial_22_combi_cheez'it_left_palmar_executed", "trial_53_combi_cheez'it_right_pinch_simulated", 'trial_49_combi_tomato_left_palmar_simulated', 'trial_2_combi_mustard_right_palmar_simulated', "trial_110_combi_cheez'it_right_palmar_simulated", 'trial_55_combi_bleach_right_pinch_simulated', 'trial_63_combi_bleach_right_palmar_executed', 'trial_3_combi_mustard_left_palmar_executed', 'trial_10_combi_mustard_left_pinch_executed', 'trial_59_combi_tomato_right_palmar_simulated', 'trial_98_combi_bleach_left_pinch_executed', 'trial_77_combi_bleach_right_pinch_executed', "trial_57_combi_cheez'it_left_pinch_executed", 'trial_79_combi_tomato_left_palmar_executed', "trial_16_combi_cheez'it_right_palmar_simulated", "trial_51_combi_cheez'it_left_palmar_executed", 'trial_36_combi_bleach_left_pinch_simulated', 'trial_125_combi_bleach_left_palmar_simulated', 'trial_5_combi_tomato_left_pinch_executed', 'trial_33_combi_tomato_left_pinch_executed', 'trial_66_combi_mustard_right_pinch_simulated', "trial_41_combi_cheez'it_right_palmar_executed", 'trial_86_combi_bleach_right_palmar_simulated', "trial_15_combi_cheez'it_left_pinch_simulated", 'trial_102_combi_mustard_right_pinch_simulated', 'trial_99_combi_bleach_right_palmar_simulated', "trial_93_combi_cheez'it_left_pinch_executed", 'trial_27_combi_mustard_right_palmar_simulated', 'trial_8_combi_mustard_left_palmar_executed', 'trial_23_combi_tomato_right_pinch_simulated', 'trial_112_combi_mustard_left_pinch_simulated', 'trial_109_combi_mustard_left_palmar_executed', "trial_46_combi_cheez'it_right_palmar_executed", "trial_45_combi_cheez'it_right_pinch_simulated", 'trial_95_combi_mustard_right_pinch_simulated', 'trial_85_combi_tomato_left_palmar_executed', 'trial_114_combi_mustard_right_palmar_simulated', 'trial_100_combi_mustard_left_pinch_executed', "trial_96_combi_cheez'it_left_palmar_simulated", 'trial_12_combi_tomato_left_pinch_simulated', 'trial_81_combi_mustard_left_palmar_simulated', "trial_75_combi_cheez'it_right_pinch_executed", 'trial_11_combi_bleach_left_palmar_simulated', 'trial_103_combi_tomato_left_pinch_executed', 'trial_61_combi_tomato_right_palmar_executed', 'trial_4_combi_tomato_left_pinch_simulated', 'trial_20_combi_mustard_left_pinch_simulated', 'trial_127_combi_mustard_left_palmar_simulated', "trial_6_combi_cheez'it_left_pinch_simulated", 'trial_54_combi_tomato_right_pinch_executed', 'trial_101_combi_mustard_right_pinch_executed', 'trial_64_combi_tomato_right_pinch_simulated', 'trial_76_combi_bleach_left_pinch_executed', 'trial_39_combi_mustard_left_pinch_executed', "trial_111_combi_cheez'it_left_palmar_simulated", 'trial_58_combi_bleach_left_palmar_executed', 'trial_43_combi_tomato_right_palmar_executed', 'trial_74_combi_bleach_left_pinch_simulated', 'trial_18_combi_bleach_left_palmar_executed', 'trial_34_combi_tomato_left_palmar_simulated', "trial_37_combi_cheez'it_right_pinch_simulated", 'trial_0_combi_bleach_right_pinch_executed', 'trial_117_combi_tomato_left_palmar_executed', 'trial_91_combi_tomato_left_pinch_executed', 'trial_87_combi_tomato_right_pinch_executed', 'trial_88_combi_mustard_right_palmar_executed', 'trial_126_combi_mustard_right_pinch_simulated', 'trial_72_combi_bleach_left_palmar_executed', 'trial_29_combi_mustard_left_palmar_executed', 'trial_26_combi_mustard_right_palmar_executed', "trial_122_combi_cheez'it_right_palmar_executed", 'trial_116_combi_bleach_right_palmar_executed', 'trial_105_combi_tomato_right_palmar_simulated', 'trial_47_combi_bleach_right_palmar_executed', 'trial_113_combi_tomato_left_palmar_simulated', "trial_44_combi_cheez'it_right_pinch_executed", 'trial_14_combi_tomato_right_palmar_simulated', 'trial_19_combi_tomato_right_pinch_executed', 'trial_123_combi_bleach_right_pinch_executed', "trial_68_combi_cheez'it_right_pinch_executed", 'trial_120_combi_bleach_right_pinch_executed', 'trial_118_combi_mustard_left_pinch_executed', "trial_31_combi_cheez'it_left_pinch_simulated", 'trial_124_combi_bleach_right_palmar_simulated', 'trial_48_combi_mustard_left_pinch_simulated', 'trial_9_combi_mustard_left_palmar_simulated']
was trial_0_combi_bleach_right_pinch_executed replayed ?
was trial_1_combi_tomato_right_pinch_simulated replayed ?
was trial_2_combi_mustard_right_palmar_simulated replayed ?
was trial_3_combi_mustard_left_palmar_executed replayed ?
was trial_4_combi_tomato_left_pinch_simulated replayed ?
was trial_5_combi_tomato_left_pinch_executed replayed ?
was trial_6_combi_cheez'it_left_pinch_simulated replayed ?
was trial_7_combi_cheez'it_left_palmar_simulated replayed ?
was trial_8_combi_mustard_left_palmar_executed replayed ?
was trial_9_combi_mustard_left_palmar_simulated replayed ?
was trial_10_combi_mustard_left_pinch_executed replayed ?
was trial_11_combi_bleach_left_palmar_simulated replayed ?
was trial_12_combi_tomato_left_pinch_simulated replayed ?
was trial_13_combi_cheez'it_left_palmar_simulated replayed ?
was trial_14_combi_tomato_right_palmar_simulated replayed ?
was trial_15_combi_cheez'it_left_pinch_simulated replayed ?
was trial_16_combi_cheez'it_right_palmar_simulated replayed ?
was trial_17_combi_cheez'it_left_palmar_executed replayed ?
was trial_18_combi_bleach_left_palmar_executed replayed ?
was trial_19_combi_tomato_right_pinch_executed replayed ?
was trial_20_combi_mustard_left_pinch_simulated replayed ?
was trial_21_combi_tomato_right_palmar_executed replayed ?
was trial_22_combi_cheez'it_left_palmar_executed replayed ?
was trial_23_combi_tomato_right_pinch_simulated replayed ?
was trial_24_combi_bleach_left_pinch_executed replayed ?
was trial_25_combi_bleach_right_pinch_simulated replayed ?
was trial_26_combi_mustard_right_palmar_executed replayed ?
was trial_27_combi_mustard_right_palmar_simulated replayed ?
was trial_28_combi_cheez'it_right_palmar_simulated replayed ?
was trial_29_combi_mustard_left_palmar_executed replayed ?
was trial_30_combi_tomato_right_palmar_executed replayed ?
was trial_31_combi_cheez'it_left_pinch_simulated replayed ?
was trial_32_combi_mustard_right_pinch_executed replayed ?
was trial_33_combi_tomato_left_pinch_executed replayed ?
was trial_34_combi_tomato_left_palmar_simulated replayed ?
was trial_35_combi_bleach_left_pinch_simulated replayed ?
was trial_36_combi_bleach_left_pinch_simulated replayed ?
was trial_37_combi_cheez'it_right_pinch_simulated replayed ?
was trial_38_combi_bleach_right_pinch_simulated replayed ?
was trial_39_combi_mustard_left_pinch_executed replayed ?
was trial_40_combi_mustard_left_palmar_simulated replayed ?
was trial_41_combi_cheez'it_right_palmar_executed replayed ?
was trial_42_combi_mustard_right_palmar_simulated replayed ?
was trial_43_combi_tomato_right_palmar_executed replayed ?
was trial_44_combi_cheez'it_right_pinch_executed replayed ?
was trial_45_combi_cheez'it_right_pinch_simulated replayed ?
was trial_46_combi_cheez'it_right_palmar_executed replayed ?
was trial_47_combi_bleach_right_palmar_executed replayed ?
was trial_48_combi_mustard_left_pinch_simulated replayed ?
was trial_49_combi_tomato_left_palmar_simulated replayed ?
was trial_50_combi_cheez'it_left_pinch_executed replayed ?
was trial_51_combi_cheez'it_left_palmar_executed replayed ?
was trial_52_combi_mustard_left_pinch_simulated replayed ?
was trial_53_combi_cheez'it_right_pinch_simulated replayed ?
was trial_54_combi_tomato_right_pinch_executed replayed ?
was trial_55_combi_bleach_right_pinch_simulated replayed ?
was trial_56_combi_tomato_left_pinch_simulated replayed ?
was trial_57_combi_cheez'it_left_pinch_executed replayed ?
was trial_58_combi_bleach_left_palmar_executed replayed ?
was trial_59_combi_tomato_right_palmar_simulated replayed ?
was trial_60_combi_mustard_right_pinch_executed replayed ?
was trial_61_combi_tomato_right_palmar_executed replayed ?
was trial_62_combi_bleach_left_pinch_executed replayed ?
was trial_63_combi_bleach_right_palmar_executed replayed ?
was trial_64_combi_tomato_right_pinch_simulated replayed ?
was trial_65_combi_bleach_right_pinch_simulated replayed ?
was trial_66_combi_mustard_right_pinch_simulated replayed ?
was trial_67_combi_cheez'it_right_pinch_executed replayed ?
was trial_68_combi_cheez'it_right_pinch_executed replayed ?
was trial_69_combi_mustard_right_palmar_executed replayed ?
was trial_70_combi_tomato_right_pinch_simulated replayed ?
was trial_71_combi_cheez'it_left_pinch_executed replayed ?
was trial_72_combi_bleach_left_palmar_executed replayed ?
was trial_73_combi_bleach_left_palmar_executed replayed ?
was trial_74_combi_bleach_left_pinch_simulated replayed ?
was trial_75_combi_cheez'it_right_pinch_executed replayed ?
was trial_76_combi_bleach_left_pinch_executed replayed ?
was trial_77_combi_bleach_right_pinch_executed replayed ?
was trial_78_combi_cheez'it_right_palmar_executed replayed ?
was trial_79_combi_tomato_left_palmar_executed replayed ?
was trial_80_combi_tomato_left_pinch_simulated replayed ?
was trial_81_combi_mustard_left_palmar_simulated replayed ?
was trial_82_combi_cheez'it_right_pinch_simulated replayed ?
was trial_83_combi_cheez'it_left_palmar_executed replayed ?
was trial_84_combi_tomato_left_palmar_simulated replayed ?
was trial_85_combi_tomato_left_palmar_executed replayed ?
was trial_86_combi_bleach_right_palmar_simulated replayed ?
was trial_87_combi_tomato_right_pinch_executed replayed ?
was trial_88_combi_mustard_right_palmar_executed replayed ?
was trial_89_combi_bleach_right_palmar_simulated replayed ?
was trial_90_combi_cheez'it_left_pinch_simulated replayed ?
was trial_91_combi_tomato_left_pinch_executed replayed ?
was trial_92_combi_mustard_right_palmar_executed replayed ?
was trial_93_combi_cheez'it_left_pinch_executed replayed ?
was trial_94_combi_tomato_right_pinch_executed replayed ?
was trial_95_combi_mustard_right_pinch_simulated replayed ?
was trial_96_combi_cheez'it_left_palmar_simulated replayed ?
was trial_97_combi_bleach_left_palmar_simulated replayed ?
was trial_98_combi_bleach_left_pinch_executed replayed ?
was trial_99_combi_bleach_right_palmar_simulated replayed ?
was trial_100_combi_mustard_left_pinch_executed replayed ?
was trial_101_combi_mustard_right_pinch_executed replayed ?
was trial_102_combi_mustard_right_pinch_simulated replayed ?
was trial_103_combi_tomato_left_pinch_executed replayed ?
was trial_104_combi_tomato_left_palmar_executed replayed ?
was trial_105_combi_tomato_right_palmar_simulated replayed ?
was trial_106_combi_mustard_right_pinch_executed replayed ?
was trial_107_combi_cheez'it_right_palmar_simulated replayed ?
was trial_108_combi_bleach_right_palmar_executed replayed ?
was trial_109_combi_mustard_left_palmar_executed replayed ?
was trial_110_combi_cheez'it_right_palmar_simulated replayed ?
was trial_111_combi_cheez'it_left_palmar_simulated replayed ?
was trial_112_combi_mustard_left_pinch_simulated replayed ?
was trial_113_combi_tomato_left_palmar_simulated replayed ?
was trial_114_combi_mustard_right_palmar_simulated replayed ?
was trial_115_combi_bleach_left_pinch_simulated replayed ?
was trial_116_combi_bleach_right_palmar_executed replayed ?
was trial_117_combi_tomato_left_palmar_executed replayed ?
was trial_118_combi_mustard_left_pinch_executed replayed ?
was trial_119_combi_bleach_left_palmar_simulated replayed ?
was trial_120_combi_bleach_right_pinch_executed replayed ?
was trial_121_combi_tomato_right_palmar_simulated replayed ?
was trial_122_combi_cheez'it_right_palmar_executed replayed ?
was trial_123_combi_bleach_right_pinch_executed replayed ?
was trial_124_combi_bleach_right_palmar_simulated replayed ?
was trial_125_combi_bleach_left_palmar_simulated replayed ?
was trial_126_combi_mustard_right_pinch_simulated replayed ?
was trial_127_combi_mustard_left_palmar_simulated replayed ?
combinations data:
Objects ... Trial Number
0 cheez'it ... 1
1 cheez'it ... 2
2 tomato ... 3
3 mustard ... 4
4 mustard ... 5
.. ... ... ...
123 bleach ... 124
124 bleach ... 125
125 bleach ... 126
126 cheez'it ... 127
127 tomato ... 128
[128 rows x 6 columns]
Combinations read from '/home/emoullet/Documents/i-GRIP/DATA/Session_1/TQS3833/TQS3833_combinations.csv'
Trial folders found in '/home/emoullet/Documents/i-GRIP/DATA/Session_1/TQS3833':
['trial_51_combi_tomato_right_palmar_simulated', 'trial_125_combi_bleach_left_pinch_simulated', 'trial_99_combi_bleach_right_palmar_executed', 'trial_13_combi_tomato_left_palmar_simulated', 'trial_25_combi_mustard_left_pinch_executed', 'trial_93_combi_tomato_right_pinch_simulated', 'trial_3_combi_mustard_right_palmar_executed', "trial_56_combi_cheez'it_left_pinch_executed", 'trial_2_combi_tomato_right_pinch_simulated', 'trial_95_combi_mustard_left_palmar_simulated', 'trial_91_combi_tomato_left_palmar_simulated', "trial_77_combi_cheez'it_right_pinch_executed", 'trial_106_combi_bleach_left_pinch_executed', 'trial_60_combi_bleach_right_pinch_executed', "trial_103_combi_cheez'it_left_pinch_simulated", "trial_7_combi_cheez'it_left_pinch_simulated", 'trial_94_combi_mustard_right_pinch_simulated', 'trial_35_combi_tomato_right_pinch_simulated', 'trial_36_combi_bleach_left_palmar_executed', "trial_100_combi_cheez'it_left_palmar_simulated", 'trial_105_combi_bleach_left_palmar_executed', 'trial_101_combi_bleach_left_palmar_executed', 'trial_53_combi_bleach_right_pinch_executed', 'trial_127_combi_tomato_left_pinch_executed', 'trial_69_combi_bleach_left_pinch_executed', "trial_89_combi_cheez'it_right_pinch_simulated", 'trial_24_combi_mustard_right_palmar_executed', 'trial_112_combi_tomato_right_palmar_executed', 'trial_96_combi_bleach_left_palmar_simulated', 'trial_43_combi_mustard_left_pinch_simulated', 'trial_31_combi_tomato_right_palmar_executed', 'trial_121_combi_tomato_left_palmar_executed', 'trial_71_combi_mustard_left_palmar_simulated', 'trial_49_combi_tomato_right_palmar_executed', 'trial_72_combi_mustard_right_palmar_executed', 'trial_11_combi_bleach_right_palmar_simulated', "trial_17_combi_cheez'it_left_pinch_simulated", 'trial_98_combi_tomato_left_palmar_simulated', "trial_6_combi_cheez'it_right_pinch_executed", "trial_83_combi_cheez'it_left_palmar_executed", 'trial_88_combi_tomato_left_pinch_executed', 'trial_54_combi_bleach_right_palmar_executed', 'trial_34_combi_tomato_right_palmar_simulated', 'trial_16_combi_tomato_left_palmar_executed', 'trial_73_combi_tomato_right_palmar_simulated', "trial_48_combi_cheez'it_right_pinch_simulated", "trial_29_combi_cheez'it_right_pinch_simulated", 'trial_23_combi_bleach_right_palmar_simulated', 'trial_27_combi_tomato_left_palmar_simulated', "trial_81_combi_cheez'it_right_palmar_simulated", "trial_92_combi_cheez'it_left_palmar_simulated", 'trial_68_combi_bleach_left_pinch_simulated', 'trial_15_combi_mustard_right_pinch_executed', 'trial_19_combi_mustard_left_palmar_executed', 'trial_10_combi_mustard_left_palmar_executed', 'trial_80_combi_mustard_right_pinch_simulated', 'trial_120_combi_tomato_right_pinch_executed', "trial_39_combi_cheez'it_right_pinch_simulated", 'trial_62_combi_mustard_left_pinch_simulated', 'trial_12_combi_tomato_right_palmar_executed', "trial_76_combi_cheez'it_left_pinch_executed", 'trial_52_combi_bleach_left_palmar_executed', 'trial_61_combi_tomato_right_pinch_executed', 'trial_85_combi_tomato_right_pinch_executed', 'trial_113_combi_mustard_left_pinch_simulated', 'trial_41_combi_bleach_right_palmar_executed', "trial_122_combi_cheez'it_left_palmar_executed", 'trial_114_combi_mustard_right_palmar_simulated', "trial_38_combi_cheez'it_left_palmar_executed", "trial_66_combi_cheez'it_right_pinch_executed", "trial_109_combi_cheez'it_left_palmar_simulated", 'trial_20_combi_bleach_left_pinch_simulated', 'trial_123_combi_bleach_left_palmar_simulated', 'trial_40_combi_bleach_left_palmar_simulated', 'trial_59_combi_bleach_right_pinch_simulated', "trial_42_combi_cheez'it_right_palmar_executed", 'trial_32_combi_bleach_right_palmar_simulated', 'trial_79_combi_mustard_right_pinch_executed', 'trial_14_combi_mustard_right_pinch_executed', 'trial_65_combi_tomato_left_pinch_simulated', 'trial_37_combi_bleach_right_palmar_executed', 'trial_46_combi_mustard_left_pinch_executed', "trial_119_combi_cheez'it_left_pinch_simulated", 'trial_86_combi_bleach_right_pinch_simulated', 'trial_47_combi_tomato_right_pinch_executed', 'trial_74_combi_tomato_left_pinch_executed', 'trial_64_combi_tomato_right_pinch_simulated', 'trial_63_combi_bleach_right_palmar_simulated', "trial_45_combi_cheez'it_right_palmar_simulated", "trial_108_combi_cheez'it_left_pinch_executed", 'trial_78_combi_tomato_left_palmar_executed', 'trial_102_combi_tomato_left_pinch_simulated', 'trial_104_combi_mustard_right_pinch_simulated', "trial_0_combi_cheez'it_left_palmar_simulated", "trial_18_combi_cheez'it_right_palmar_executed", 'trial_26_combi_tomato_left_palmar_executed', "trial_97_combi_cheez'it_left_pinch_executed", "trial_1_combi_cheez'it_right_palmar_simulated", 'trial_4_combi_mustard_right_palmar_simulated', 'trial_115_combi_mustard_left_pinch_executed', 'trial_8_combi_mustard_right_palmar_simulated', 'trial_117_combi_bleach_left_pinch_executed', 'trial_84_combi_bleach_left_palmar_simulated', 'trial_90_combi_tomato_left_pinch_executed', "trial_57_combi_cheez'it_right_palmar_executed", 'trial_111_combi_bleach_right_pinch_executed', 'trial_30_combi_tomato_right_palmar_simulated', 'trial_33_combi_bleach_right_pinch_simulated', "trial_116_combi_cheez'it_left_palmar_executed", 'trial_124_combi_bleach_right_pinch_executed', 'trial_70_combi_bleach_left_pinch_simulated', 'trial_58_combi_mustard_right_palmar_simulated', 'trial_21_combi_mustard_left_pinch_simulated', 'trial_87_combi_tomato_left_pinch_simulated', 'trial_110_combi_bleach_left_pinch_executed', 'trial_44_combi_mustard_left_palmar_simulated', 'trial_118_combi_mustard_right_pinch_executed', "trial_5_combi_cheez'it_right_palmar_simulated", 'trial_107_combi_mustard_right_palmar_executed', 'trial_28_combi_bleach_right_pinch_simulated', 'trial_55_combi_tomato_left_pinch_simulated', 'trial_75_combi_mustard_right_pinch_simulated', "trial_126_combi_cheez'it_right_pinch_executed", 'trial_67_combi_mustard_left_palmar_executed', 'trial_82_combi_mustard_left_pinch_executed', 'trial_50_combi_mustard_left_palmar_executed', "trial_22_combi_cheez'it_right_palmar_executed", 'trial_9_combi_mustard_left_palmar_simulated']
was trial_0_combi_cheez'it_left_palmar_simulated replayed ?
was trial_1_combi_cheez'it_right_palmar_simulated replayed ?
was trial_2_combi_tomato_right_pinch_simulated replayed ?
was trial_3_combi_mustard_right_palmar_executed replayed ?
was trial_4_combi_mustard_right_palmar_simulated replayed ?
was trial_5_combi_cheez'it_right_palmar_simulated replayed ?
was trial_6_combi_cheez'it_right_pinch_executed replayed ?
was trial_7_combi_cheez'it_left_pinch_simulated replayed ?
was trial_8_combi_mustard_right_palmar_simulated replayed ?
was trial_9_combi_mustard_left_palmar_simulated replayed ?
was trial_10_combi_mustard_left_palmar_executed replayed ?
was trial_11_combi_bleach_right_palmar_simulated replayed ?
was trial_12_combi_tomato_right_palmar_executed replayed ?
was trial_13_combi_tomato_left_palmar_simulated replayed ?
was trial_14_combi_mustard_right_pinch_executed replayed ?
was trial_15_combi_mustard_right_pinch_executed replayed ?
was trial_16_combi_tomato_left_palmar_executed replayed ?
was trial_17_combi_cheez'it_left_pinch_simulated replayed ?
was trial_18_combi_cheez'it_right_palmar_executed replayed ?
was trial_19_combi_mustard_left_palmar_executed replayed ?
was trial_20_combi_bleach_left_pinch_simulated replayed ?
was trial_21_combi_mustard_left_pinch_simulated replayed ?
was trial_22_combi_cheez'it_right_palmar_executed replayed ?
was trial_23_combi_bleach_right_palmar_simulated replayed ?
was trial_24_combi_mustard_right_palmar_executed replayed ?
was trial_25_combi_mustard_left_pinch_executed replayed ?
was trial_26_combi_tomato_left_palmar_executed replayed ?
was trial_27_combi_tomato_left_palmar_simulated replayed ?
was trial_28_combi_bleach_right_pinch_simulated replayed ?
was trial_29_combi_cheez'it_right_pinch_simulated replayed ?
was trial_30_combi_tomato_right_palmar_simulated replayed ?
was trial_31_combi_tomato_right_palmar_executed replayed ?
was trial_32_combi_bleach_right_palmar_simulated replayed ?
was trial_33_combi_bleach_right_pinch_simulated replayed ?
was trial_34_combi_tomato_right_palmar_simulated replayed ?
was trial_35_combi_tomato_right_pinch_simulated replayed ?
was trial_36_combi_bleach_left_palmar_executed replayed ?
was trial_37_combi_bleach_right_palmar_executed replayed ?
was trial_38_combi_cheez'it_left_palmar_executed replayed ?
was trial_39_combi_cheez'it_right_pinch_simulated replayed ?
was trial_40_combi_bleach_left_palmar_simulated replayed ?
was trial_41_combi_bleach_right_palmar_executed replayed ?
was trial_42_combi_cheez'it_right_palmar_executed replayed ?
was trial_43_combi_mustard_left_pinch_simulated replayed ?
was trial_44_combi_mustard_left_palmar_simulated replayed ?
was trial_45_combi_cheez'it_right_palmar_simulated replayed ?
was trial_46_combi_mustard_left_pinch_executed replayed ?
was trial_47_combi_tomato_right_pinch_executed replayed ?
was trial_48_combi_cheez'it_right_pinch_simulated replayed ?
was trial_49_combi_tomato_right_palmar_executed replayed ?
was trial_50_combi_mustard_left_palmar_executed replayed ?
was trial_51_combi_tomato_right_palmar_simulated replayed ?
was trial_52_combi_bleach_left_palmar_executed replayed ?
was trial_53_combi_bleach_right_pinch_executed replayed ?
was trial_54_combi_bleach_right_palmar_executed replayed ?
was trial_55_combi_tomato_left_pinch_simulated replayed ?
was trial_56_combi_cheez'it_left_pinch_executed replayed ?
was trial_57_combi_cheez'it_right_palmar_executed replayed ?
was trial_58_combi_mustard_right_palmar_simulated replayed ?
was trial_59_combi_bleach_right_pinch_simulated replayed ?
was trial_60_combi_bleach_right_pinch_executed replayed ?
was trial_61_combi_tomato_right_pinch_executed replayed ?
was trial_62_combi_mustard_left_pinch_simulated replayed ?
was trial_63_combi_bleach_right_palmar_simulated replayed ?
was trial_64_combi_tomato_right_pinch_simulated replayed ?
was trial_65_combi_tomato_left_pinch_simulated replayed ?
was trial_66_combi_cheez'it_right_pinch_executed replayed ?
was trial_67_combi_mustard_left_palmar_executed replayed ?
was trial_68_combi_bleach_left_pinch_simulated replayed ?
was trial_69_combi_bleach_left_pinch_executed replayed ?
was trial_70_combi_bleach_left_pinch_simulated replayed ?
was trial_71_combi_mustard_left_palmar_simulated replayed ?
was trial_72_combi_mustard_right_palmar_executed replayed ?
was trial_73_combi_tomato_right_palmar_simulated replayed ?
was trial_74_combi_tomato_left_pinch_executed replayed ?
was trial_75_combi_mustard_right_pinch_simulated replayed ?
was trial_76_combi_cheez'it_left_pinch_executed replayed ?
was trial_77_combi_cheez'it_right_pinch_executed replayed ?
was trial_78_combi_tomato_left_palmar_executed replayed ?
was trial_79_combi_mustard_right_pinch_executed replayed ?
was trial_80_combi_mustard_right_pinch_simulated replayed ?
was trial_81_combi_cheez'it_right_palmar_simulated replayed ?
was trial_82_combi_mustard_left_pinch_executed replayed ?
was trial_83_combi_cheez'it_left_palmar_executed replayed ?
was trial_84_combi_bleach_left_palmar_simulated replayed ?
was trial_85_combi_tomato_right_pinch_executed replayed ?
was trial_86_combi_bleach_right_pinch_simulated replayed ?
was trial_87_combi_tomato_left_pinch_simulated replayed ?
was trial_88_combi_tomato_left_pinch_executed replayed ?
was trial_89_combi_cheez'it_right_pinch_simulated replayed ?
was trial_90_combi_tomato_left_pinch_executed replayed ?
was trial_91_combi_tomato_left_palmar_simulated replayed ?
was trial_92_combi_cheez'it_left_palmar_simulated replayed ?
was trial_93_combi_tomato_right_pinch_simulated replayed ?
was trial_94_combi_mustard_right_pinch_simulated replayed ?
was trial_95_combi_mustard_left_palmar_simulated replayed ?
was trial_96_combi_bleach_left_palmar_simulated replayed ?
was trial_97_combi_cheez'it_left_pinch_executed replayed ?
was trial_98_combi_tomato_left_palmar_simulated replayed ?
was trial_99_combi_bleach_right_palmar_executed replayed ?
was trial_100_combi_cheez'it_left_palmar_simulated replayed ?
was trial_101_combi_bleach_left_palmar_executed replayed ?
was trial_102_combi_tomato_left_pinch_simulated replayed ?
was trial_103_combi_cheez'it_left_pinch_simulated replayed ?
was trial_104_combi_mustard_right_pinch_simulated replayed ?
was trial_105_combi_bleach_left_palmar_executed replayed ?
was trial_106_combi_bleach_left_pinch_executed replayed ?
was trial_107_combi_mustard_right_palmar_executed replayed ?
was trial_108_combi_cheez'it_left_pinch_executed replayed ?
was trial_109_combi_cheez'it_left_palmar_simulated replayed ?
was trial_110_combi_bleach_left_pinch_executed replayed ?
was trial_111_combi_bleach_right_pinch_executed replayed ?
was trial_112_combi_tomato_right_palmar_executed replayed ?
was trial_113_combi_mustard_left_pinch_simulated replayed ?
was trial_114_combi_mustard_right_palmar_simulated replayed ?
was trial_115_combi_mustard_left_pinch_executed replayed ?
was trial_116_combi_cheez'it_left_palmar_executed replayed ?
was trial_117_combi_bleach_left_pinch_executed replayed ?
was trial_118_combi_mustard_right_pinch_executed replayed ?
was trial_119_combi_cheez'it_left_pinch_simulated replayed ?
was trial_120_combi_tomato_right_pinch_executed replayed ?
was trial_121_combi_tomato_left_palmar_executed replayed ?
was trial_122_combi_cheez'it_left_palmar_executed replayed ?
was trial_123_combi_bleach_left_palmar_simulated replayed ?
was trial_124_combi_bleach_right_pinch_executed replayed ?
was trial_125_combi_bleach_left_pinch_simulated replayed ?
was trial_126_combi_cheez'it_right_pinch_executed replayed ?
was trial_127_combi_tomato_left_pinch_executed replayed ?
combinations data:
Objects ... Trial Number
0 cheez'it ... 1
1 tomato ... 2
2 bleach ... 3
3 cheez'it ... 4
4 bleach ... 5
.. ... ... ...
123 bleach ... 124
124 bleach ... 125
125 tomato ... 126
126 tomato ... 127
127 cheez'it ... 128
[128 rows x 6 columns]
Combinations read from '/home/emoullet/Documents/i-GRIP/DATA/Session_1/ONB2325/ONB2325_combinations.csv'
Trial folders found in '/home/emoullet/Documents/i-GRIP/DATA/Session_1/ONB2325':
['trial_4_combi_bleach_right_palmar_executed', 'trial_5_combi_tomato_left_pinch_simulated', "trial_3_combi_cheez'it_left_pinch_simulated", "trial_7_combi_cheez'it_left_pinch_executed", 'trial_1_combi_tomato_left_palmar_executed', "trial_6_combi_cheez'it_left_pinch_simulated", 'trial_2_combi_bleach_right_palmar_simulated', "trial_0_combi_cheez'it_right_palmar_simulated"]
Participant 'ONB2325' missing 120 trial folders:
was trial_0_combi_cheez'it_right_palmar_simulated replayed ?
was trial_1_combi_tomato_left_palmar_executed replayed ?
was trial_2_combi_bleach_right_palmar_simulated replayed ?
was trial_3_combi_cheez'it_left_pinch_simulated replayed ?
was trial_4_combi_bleach_right_palmar_executed replayed ?
was trial_5_combi_tomato_left_pinch_simulated replayed ?
was trial_6_combi_cheez'it_left_pinch_simulated replayed ?
was trial_7_combi_cheez'it_left_pinch_executed replayed ?
combinations data:
Objects ... Trial Number
0 cheez'it ... 1
1 tomato ... 2
2 bleach ... 3
3 bleach ... 4
4 mustard ... 5
.. ... ... ...
123 mustard ... 124
124 mustard ... 125
125 mustard ... 126
126 mustard ... 127
127 mustard ... 128
[128 rows x 6 columns]
Combinations read from '/home/emoullet/Documents/i-GRIP/DATA/Session_1/GKX5203/GKX5203_combinations.csv'
Trial folders found in '/home/emoullet/Documents/i-GRIP/DATA/Session_1/GKX5203':
['trial_95_combi_bleach_left_pinch_simulated', 'trial_54_combi_tomato_left_pinch_simulated', 'trial_39_combi_tomato_left_pinch_simulated', 'trial_87_combi_tomato_right_palmar_executed', 'trial_25_combi_mustard_left_pinch_executed', 'trial_9_combi_bleach_left_pinch_executed', "trial_68_combi_cheez'it_right_pinch_simulated", "trial_23_combi_cheez'it_right_palmar_executed", "trial_80_combi_cheez'it_left_palmar_executed", 'trial_31_combi_mustard_left_palmar_executed', "trial_28_combi_cheez'it_right_palmar_executed", "trial_36_combi_cheez'it_right_pinch_simulated", 'trial_85_combi_bleach_left_pinch_simulated', "trial_77_combi_cheez'it_right_pinch_executed", "trial_73_combi_cheez'it_left_pinch_simulated", 'trial_66_combi_tomato_left_pinch_executed', 'trial_38_combi_mustard_right_palmar_executed', "trial_121_combi_cheez'it_right_pinch_simulated", 'trial_92_combi_bleach_right_pinch_executed', 'trial_101_combi_bleach_left_palmar_executed', 'trial_105_combi_mustard_right_palmar_executed', 'trial_126_combi_mustard_left_pinch_executed', 'trial_40_combi_bleach_right_palmar_executed', "trial_91_combi_cheez'it_left_pinch_executed", 'trial_109_combi_bleach_right_palmar_simulated', "trial_100_combi_cheez'it_right_pinch_executed", 'trial_60_combi_bleach_right_palmar_simulated', "trial_107_combi_cheez'it_right_palmar_executed", 'trial_7_combi_mustard_right_pinch_simulated', "trial_63_combi_cheez'it_left_palmar_executed", 'trial_32_combi_mustard_left_pinch_simulated', "trial_71_combi_cheez'it_left_palmar_simulated", 'trial_114_combi_mustard_left_palmar_executed', "trial_20_combi_cheez'it_right_pinch_executed", 'trial_122_combi_tomato_right_palmar_simulated', 'trial_21_combi_mustard_left_palmar_simulated', 'trial_89_combi_mustard_left_palmar_executed', 'trial_2_combi_bleach_right_pinch_executed', 'trial_59_combi_mustard_left_pinch_simulated', 'trial_46_combi_mustard_right_pinch_executed', "trial_29_combi_cheez'it_left_pinch_executed", 'trial_64_combi_mustard_right_pinch_executed', 'trial_10_combi_bleach_left_palmar_simulated', 'trial_97_combi_mustard_left_pinch_executed', 'trial_119_combi_tomato_right_pinch_executed', 'trial_84_combi_bleach_left_palmar_executed', 'trial_112_combi_bleach_right_palmar_executed', 'trial_117_combi_tomato_right_palmar_simulated', 'trial_13_combi_mustard_left_pinch_simulated', 'trial_79_combi_bleach_right_palmar_executed', "trial_0_combi_cheez'it_left_pinch_simulated", 'trial_55_combi_bleach_right_pinch_simulated', 'trial_56_combi_tomato_left_palmar_simulated', "trial_48_combi_cheez'it_left_palmar_simulated", "trial_81_combi_cheez'it_right_palmar_simulated", 'trial_69_combi_tomato_left_pinch_executed', 'trial_53_combi_bleach_left_palmar_simulated', 'trial_8_combi_bleach_left_palmar_simulated', 'trial_6_combi_bleach_right_pinch_simulated', 'trial_61_combi_mustard_right_pinch_simulated', 'trial_1_combi_tomato_left_palmar_executed', "trial_34_combi_cheez'it_right_pinch_simulated", 'trial_26_combi_tomato_left_palmar_simulated', "trial_94_combi_cheez'it_left_palmar_simulated", 'trial_19_combi_bleach_right_palmar_simulated', 'trial_3_combi_bleach_left_pinch_simulated', 'trial_14_combi_tomato_right_pinch_executed', 'trial_45_combi_mustard_left_pinch_executed', 'trial_88_combi_tomato_right_pinch_executed', 'trial_11_combi_tomato_left_pinch_executed', 'trial_99_combi_tomato_right_pinch_simulated', 'trial_93_combi_bleach_right_palmar_executed', 'trial_74_combi_bleach_right_pinch_executed', 'trial_124_combi_mustard_right_pinch_simulated', 'trial_125_combi_mustard_right_pinch_executed', "trial_96_combi_cheez'it_left_palmar_simulated", 'trial_37_combi_tomato_left_pinch_simulated', 'trial_15_combi_mustard_left_palmar_simulated', 'trial_76_combi_mustard_left_palmar_executed', 'trial_98_combi_tomato_left_palmar_executed', 'trial_5_combi_mustard_right_pinch_executed', 'trial_57_combi_tomato_right_pinch_executed', 'trial_43_combi_bleach_left_pinch_executed', 'trial_103_combi_tomato_left_palmar_executed', "trial_67_combi_cheez'it_left_pinch_simulated", 'trial_127_combi_mustard_right_palmar_simulated', "trial_62_combi_cheez'it_left_pinch_executed", "trial_86_combi_cheez'it_left_pinch_simulated", 'trial_123_combi_mustard_right_pinch_simulated', 'trial_106_combi_bleach_right_palmar_simulated', 'trial_51_combi_mustard_right_palmar_simulated', "trial_44_combi_cheez'it_right_palmar_executed", "trial_17_combi_cheez'it_right_pinch_executed", 'trial_42_combi_bleach_right_pinch_simulated', 'trial_58_combi_tomato_right_palmar_simulated', 'trial_110_combi_tomato_right_palmar_executed', 'trial_113_combi_tomato_right_pinch_simulated', 'trial_102_combi_tomato_left_pinch_simulated', 'trial_30_combi_tomato_left_palmar_simulated', 'trial_50_combi_bleach_left_palmar_executed', 'trial_47_combi_tomato_right_palmar_simulated', 'trial_41_combi_bleach_left_palmar_simulated', 'trial_18_combi_bleach_left_palmar_executed', 'trial_65_combi_bleach_left_pinch_simulated', 'trial_16_combi_mustard_right_palmar_executed', 'trial_90_combi_tomato_right_palmar_executed', 'trial_75_combi_bleach_right_pinch_executed', "trial_27_combi_cheez'it_left_palmar_executed", 'trial_83_combi_mustard_left_palmar_simulated', 'trial_104_combi_bleach_left_pinch_executed', 'trial_70_combi_tomato_left_pinch_executed', 'trial_24_combi_tomato_right_pinch_simulated', 'trial_22_combi_tomato_right_palmar_executed', "trial_35_combi_cheez'it_right_palmar_simulated", 'trial_115_combi_mustard_right_palmar_simulated', "trial_72_combi_cheez'it_right_palmar_simulated", 'trial_33_combi_tomato_left_palmar_executed', 'trial_4_combi_mustard_left_pinch_simulated', 'trial_118_combi_mustard_right_palmar_executed', "trial_82_combi_cheez'it_left_pinch_executed", "trial_49_combi_cheez'it_left_palmar_executed", 'trial_120_combi_bleach_left_pinch_executed', 'trial_111_combi_tomato_left_palmar_simulated', 'trial_78_combi_mustard_left_palmar_simulated', 'trial_108_combi_mustard_right_palmar_simulated', "trial_116_combi_cheez'it_right_palmar_simulated", 'trial_52_combi_tomato_right_pinch_simulated', 'trial_12_combi_bleach_right_pinch_simulated']
was trial_0_combi_cheez'it_left_pinch_simulated replayed ?
was trial_1_combi_tomato_left_palmar_executed replayed ?
was trial_2_combi_bleach_right_pinch_executed replayed ?
was trial_3_combi_bleach_left_pinch_simulated replayed ?
was trial_4_combi_mustard_left_pinch_simulated replayed ?
was trial_5_combi_mustard_right_pinch_executed replayed ?
was trial_6_combi_bleach_right_pinch_simulated replayed ?
was trial_7_combi_mustard_right_pinch_simulated replayed ?
was trial_8_combi_bleach_left_palmar_simulated replayed ?
was trial_9_combi_bleach_left_pinch_executed replayed ?
was trial_10_combi_bleach_left_palmar_simulated replayed ?
was trial_11_combi_tomato_left_pinch_executed replayed ?
was trial_12_combi_bleach_right_pinch_simulated replayed ?
was trial_13_combi_mustard_left_pinch_simulated replayed ?
was trial_14_combi_tomato_right_pinch_executed replayed ?
was trial_15_combi_mustard_left_palmar_simulated replayed ?
was trial_16_combi_mustard_right_palmar_executed replayed ?
was trial_17_combi_cheez'it_right_pinch_executed replayed ?
was trial_18_combi_bleach_left_palmar_executed replayed ?
was trial_19_combi_bleach_right_palmar_simulated replayed ?
was trial_20_combi_cheez'it_right_pinch_executed replayed ?
was trial_21_combi_mustard_left_palmar_simulated replayed ?
was trial_22_combi_tomato_right_palmar_executed replayed ?
was trial_23_combi_cheez'it_right_palmar_executed replayed ?
was trial_24_combi_tomato_right_pinch_simulated replayed ?
was trial_25_combi_mustard_left_pinch_executed replayed ?
was trial_26_combi_tomato_left_palmar_simulated replayed ?
was trial_27_combi_cheez'it_left_palmar_executed replayed ?
was trial_28_combi_cheez'it_right_palmar_executed replayed ?
was trial_29_combi_cheez'it_left_pinch_executed replayed ?
was trial_30_combi_tomato_left_palmar_simulated replayed ?
was trial_31_combi_mustard_left_palmar_executed replayed ?
was trial_32_combi_mustard_left_pinch_simulated replayed ?
was trial_33_combi_tomato_left_palmar_executed replayed ?
was trial_34_combi_cheez'it_right_pinch_simulated replayed ?
was trial_35_combi_cheez'it_right_palmar_simulated replayed ?
was trial_36_combi_cheez'it_right_pinch_simulated replayed ?
was trial_37_combi_tomato_left_pinch_simulated replayed ?
was trial_38_combi_mustard_right_palmar_executed replayed ?
was trial_39_combi_tomato_left_pinch_simulated replayed ?
was trial_40_combi_bleach_right_palmar_executed replayed ?
was trial_41_combi_bleach_left_palmar_simulated replayed ?
was trial_42_combi_bleach_right_pinch_simulated replayed ?
was trial_43_combi_bleach_left_pinch_executed replayed ?
was trial_44_combi_cheez'it_right_palmar_executed replayed ?
was trial_45_combi_mustard_left_pinch_executed replayed ?
was trial_46_combi_mustard_right_pinch_executed replayed ?
was trial_47_combi_tomato_right_palmar_simulated replayed ?
was trial_48_combi_cheez'it_left_palmar_simulated replayed ?
was trial_49_combi_cheez'it_left_palmar_executed replayed ?
was trial_50_combi_bleach_left_palmar_executed replayed ?
was trial_51_combi_mustard_right_palmar_simulated replayed ?
was trial_52_combi_tomato_right_pinch_simulated replayed ?
was trial_53_combi_bleach_left_palmar_simulated replayed ?
was trial_54_combi_tomato_left_pinch_simulated replayed ?
was trial_55_combi_bleach_right_pinch_simulated replayed ?
was trial_56_combi_tomato_left_palmar_simulated replayed ?
was trial_57_combi_tomato_right_pinch_executed replayed ?
was trial_58_combi_tomato_right_palmar_simulated replayed ?
was trial_59_combi_mustard_left_pinch_simulated replayed ?
was trial_60_combi_bleach_right_palmar_simulated replayed ?
was trial_61_combi_mustard_right_pinch_simulated replayed ?
was trial_62_combi_cheez'it_left_pinch_executed replayed ?
was trial_63_combi_cheez'it_left_palmar_executed replayed ?
was trial_64_combi_mustard_right_pinch_executed replayed ?
was trial_65_combi_bleach_left_pinch_simulated replayed ?
was trial_66_combi_tomato_left_pinch_executed replayed ?
was trial_67_combi_cheez'it_left_pinch_simulated replayed ?
was trial_68_combi_cheez'it_right_pinch_simulated replayed ?
was trial_69_combi_tomato_left_pinch_executed replayed ?
was trial_70_combi_tomato_left_pinch_executed replayed ?
was trial_71_combi_cheez'it_left_palmar_simulated replayed ?
was trial_72_combi_cheez'it_right_palmar_simulated replayed ?
was trial_73_combi_cheez'it_left_pinch_simulated replayed ?
was trial_74_combi_bleach_right_pinch_executed replayed ?
was trial_75_combi_bleach_right_pinch_executed replayed ?
was trial_76_combi_mustard_left_palmar_executed replayed ?
was trial_77_combi_cheez'it_right_pinch_executed replayed ?
was trial_78_combi_mustard_left_palmar_simulated replayed ?
was trial_79_combi_bleach_right_palmar_executed replayed ?
was trial_80_combi_cheez'it_left_palmar_executed replayed ?
was trial_81_combi_cheez'it_right_palmar_simulated replayed ?
was trial_82_combi_cheez'it_left_pinch_executed replayed ?
was trial_83_combi_mustard_left_palmar_simulated replayed ?
was trial_84_combi_bleach_left_palmar_executed replayed ?
was trial_85_combi_bleach_left_pinch_simulated replayed ?
was trial_86_combi_cheez'it_left_pinch_simulated replayed ?
was trial_87_combi_tomato_right_palmar_executed replayed ?
was trial_88_combi_tomato_right_pinch_executed replayed ?
was trial_89_combi_mustard_left_palmar_executed replayed ?
was trial_90_combi_tomato_right_palmar_executed replayed ?
was trial_91_combi_cheez'it_left_pinch_executed replayed ?
was trial_92_combi_bleach_right_pinch_executed replayed ?
was trial_93_combi_bleach_right_palmar_executed replayed ?
was trial_94_combi_cheez'it_left_palmar_simulated replayed ?
was trial_95_combi_bleach_left_pinch_simulated replayed ?
was trial_96_combi_cheez'it_left_palmar_simulated replayed ?
was trial_97_combi_mustard_left_pinch_executed replayed ?
was trial_98_combi_tomato_left_palmar_executed replayed ?
was trial_99_combi_tomato_right_pinch_simulated replayed ?
was trial_100_combi_cheez'it_right_pinch_executed replayed ?
was trial_101_combi_bleach_left_palmar_executed replayed ?
was trial_102_combi_tomato_left_pinch_simulated replayed ?
was trial_103_combi_tomato_left_palmar_executed replayed ?
was trial_104_combi_bleach_left_pinch_executed replayed ?
was trial_105_combi_mustard_right_palmar_executed replayed ?
was trial_106_combi_bleach_right_palmar_simulated replayed ?
was trial_107_combi_cheez'it_right_palmar_executed replayed ?
was trial_108_combi_mustard_right_palmar_simulated replayed ?
was trial_109_combi_bleach_right_palmar_simulated replayed ?
was trial_110_combi_tomato_right_palmar_executed replayed ?
was trial_111_combi_tomato_left_palmar_simulated replayed ?
was trial_112_combi_bleach_right_palmar_executed replayed ?
was trial_113_combi_tomato_right_pinch_simulated replayed ?
was trial_114_combi_mustard_left_palmar_executed replayed ?
was trial_115_combi_mustard_right_palmar_simulated replayed ?
was trial_116_combi_cheez'it_right_palmar_simulated replayed ?
was trial_117_combi_tomato_right_palmar_simulated replayed ?
was trial_118_combi_mustard_right_palmar_executed replayed ?
was trial_119_combi_tomato_right_pinch_executed replayed ?
was trial_120_combi_bleach_left_pinch_executed replayed ?
was trial_121_combi_cheez'it_right_pinch_simulated replayed ?
was trial_122_combi_tomato_right_palmar_simulated replayed ?
was trial_123_combi_mustard_right_pinch_simulated replayed ?
was trial_124_combi_mustard_right_pinch_simulated replayed ?
was trial_125_combi_mustard_right_pinch_executed replayed ?
was trial_126_combi_mustard_left_pinch_executed replayed ?
was trial_127_combi_mustard_right_palmar_simulated replayed ?
combinations data:
Objects ... Trial Number
0 mustard ... 1
1 mustard ... 2
2 tomato ... 3
3 cheez'it ... 4
4 bleach ... 5
.. ... ... ...
123 mustard ... 124
124 tomato ... 125
125 bleach ... 126
126 mustard ... 127