《実験1》という名前のRoutineを挿入し、《Sotsuron.xlsx》という表のデータをLoopさせています。このRoutineを、30秒間動かした後、終了して、次の《休憩》という名前のRoutineを動かしたいのですが、どうすれば良いですか?
codeのRoutine終了時タブに以下のコードを記入しています。
if t >= 30.0:
continueRoutine = False # ルーチン終了
text_trial.text = “” # テキストをクリア
text_trial.status = STARTED # テキストのステータスを再度STARTEDに設定
text_trial.setAutoDraw(True) # テキストを再表示
if event.getKeys(): # キー入力を監視
continueRoutine = False # ルーチン終了
A routine named “Experiment 1” is inserted and the data from the table “Sotsuron.xlsx” is looped. I want to run this Routine for 30 seconds, then end it and run the next Routine called “Break”. What should I do?
The following code is entered in the Routine end tab of code.
if t >= 30.0:
continueRoutine = False # End routine
text_trial.text = "" # clear text
text_trial.status = STARTED # Set the text status to STARTED again
text_trial.setAutoDraw(True) # Redraw text
if event.getKeys(): # Monitor keystrokes
continueRoutine = False # End routine