Hello,
I am very novice in Psychopy and programming in general but trying to use a rating scale to rate a picture randomly out of the three pictures I have. However, the rating scale is shown in my picture and does not look good at all. Is there any way I can present two items (my picture and the rating scale) in a proper way? Thank you much.
win=psychopy.visual.Window ([1000,1000], fullscr=False,checkTiming=True, color='black')
my_rating = visual.RatingScale(win, low=0, high=100, labels= ('no', 'yes'), stretch = 2, lineColor = 'Black', markerColor = 'Black', textColor = 'Black', singleClick = True, mouseOnly = True)
item= psychopy.visual.ImageStim (win=win, image=var2, units='norm', size=[2,2])
for i in images:
my_rating.setDescription(scale = i)
my_rating.reset()
while my_rating.noResponse:
item.draw()
my_rating.draw()
win.flip()
rating = my_rating.getRating()
decisionTime = my_rating.getRT()
print (var2, rating, decisionTime)