OS (e.g. Win10): Win 10
PsychoPy version (e.g. 1.84.x): v2021.2.3
Standard Standalone? (y/n) If not then what?: no
What are you trying to achieve?: I presented image stimuli, randomly to the left or right of fixation. I’ve been trying to recover the position but have been unable to find the data (as I did not explicitly save it, unfortunately). Is there a way to somehow recover this data?
What did you try to make it work?:
My code to randomize left/right image stimulus presentation is:
if random() > 0.5:
LR = 1
else:
LR = -1
if position == 1:
pos = 0.5 * LR
else:
pos = 0
And “Position[x,y]” was determined by $(pos,0).
What specifically went wrong when you tried that?: I cannot find the information anywhere, I wondered if I am missing something, or it is too late.
Thank you so much for your help.