You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
practice_feedback_text="<br>Please take this time to read your feedback and to take a short break."// Press enter to continue"
563
+
564
+
if(accuracy>accuracy_thresh){
565
+
delay=2
566
+
stims=createTrialTypes(practice_len,delay)
567
+
practice_feedback_text="Your delay for this block is "+delay+". Please match the current letter to the letter that appeared "+delay+" trial(s) ago."
568
+
returnfalse
569
+
570
+
}elseif(accuracy<accuracy_thresh){
571
+
if(missed_responses>missed_thresh){
572
+
practice_feedback_text+=
573
+
'</p><p class = block-text>You have not been responding to some trials. Please respond on every trial that requires a response.'
574
+
}
575
+
576
+
if(ave_rt>rt_thresh){
577
+
practice_feedback_text+=
578
+
'</p><p class = block-text>You have been responding too slowly.'
579
+
}
580
+
581
+
if(mismatch_press_percentage>=0.90){
582
+
practice_feedback_text+=
583
+
'</p><p class = block-text>Please do not simply press your "'+possible_responses[1][0]+'" to every stimulus. Please try to identify the matches and press your "'+possible_responses[0][0]+'" when they occur.'
584
+
}
585
+
586
+
if(practiceCount==practice_thresh){
587
+
// practice_feedback_text +=
588
+
// '</p><p class = block-text>Done with this practice. The test session will begin shortly.'
589
+
delay=2
590
+
stims=createTrialTypes(practice_len,delay)
591
+
practice_feedback_text="Your delay for this block is "+delay+". Please match the current letter to the letter that appeared "+delay+" trial(s) ago."
592
+
returnfalse
593
+
}
594
+
595
+
practice_feedback_text+=
596
+
'</p><p class = block-text>We are going to try practice again to see if you can achieve higher accuracy. Remember: <br>'+prompt_text_list+
597
+
'</p><p class = block-text>When you are ready to continue, please press the spacebar.</p>'
598
+
599
+
600
+
returntrue
601
+
602
+
}
603
+
604
+
}
605
+
}
606
+
607
+
varpracticeCount=0
608
+
varpracticeNode2={
525
609
timeline: practiceTrials,
526
610
loop_function: function(data){
527
611
practiceCount+=1
@@ -606,7 +690,6 @@ var practiceNode = {
606
690
}
607
691
}
608
692
609
-
610
693
/* ************************************ */
611
694
/* Set up Experiment */
612
695
/* ************************************ */
@@ -616,7 +699,8 @@ var n_back_single_task_network__practice_experiment = []
0 commit comments