Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jungheejung committed Jun 14, 2024
2 parents c204d78 + 0672e92 commit a018a66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spacetop_prep/events/bidsify_fractional.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,14 @@
subset_belief['event_type'] = "stimulus"
subset_belief['value'] = "falsebelief"
subset_belief['response_accuracy'] = "n/a"
subset_belief['stim_file'] = task_name + '/' + subset_beh.loc[subset_beh.event02_filetype == 'false_belief', 'event02_filename']
subset_belief['stim_file'] = "task-" + task_name + '/' + subset_beh.loc[subset_beh.event02_filetype == 'false_belief', 'event02_filename']

subset_photo['onset'] = subset_beh.loc[subset_beh.event02_filetype == 'false_photo', 'event02_story_onset']
subset_photo['duration'] = 11
subset_photo['event_type'] = "stimulus"
subset_photo['value'] = "falsephoto"
subset_photo['response_accuracy'] = "n/a"
subset_photo['stim_file'] = task_name + '/' + subset_beh.loc[subset_beh.event02_filetype == 'false_photo', 'event02_filename']
subset_photo['stim_file'] = "task-" + task_name + '/' + subset_beh.loc[subset_beh.event02_filetype == 'false_photo', 'event02_filename']

subset_beliefrating['onset'] = subset_beh.loc[subset_beh.event02_filetype == 'false_belief', 'event03_question_onset']
subset_beliefrating['duration'] = subset_beh.loc[subset_beh.event02_filetype == 'false_belief', 'event04_RT']
Expand Down

0 comments on commit a018a66

Please sign in to comment.