在我的任务中,我一直允许使用数字键盘(例如'num_1')以及键盘顶部的常规数字(例如'1')进行响应。当我稍后使用ratingScale
询问评分时,我也希望这两个选项都可用,但我不知道如何实现这一点。
按原样,ratingScale
不接受使用数字小键盘的响应。我可以使用respKeys
更改此设置,但我必须提供“用于按所需顺序选择选项的键列表”。这意味着我不能同时允许'1'和'num_1'选择第一个评级(例如,使用respKeys = ['1','num_1, '2', 'num_2', ...]
'1'将选择第一个评级,'num_1'将选择第一个评级,等等。
我真的坚持使用respKeys = ['1','2','3','4','5']
或respKeys = ['num_1','num_2','num_3','num_4','num_5']
吗?
感谢您的帮助!
答案 0 :(得分:2)
我不认为visual.RatingScale
有任何内置方式可以为同一比例位置提供多个键盘键。
如果你正在使用编码器,那么黑客就可以使用event.getKeys()
和visual.RatingScale.setMarkerPos()
。因此,对于具有三个职位的评级量表的简单案例:
# Initiate psychopy stuff
from psychopy import visual, event
win = visual.Window()
scale = visual.RatingScale(win, low=1, high=3)
# A list of lists, each sublist being the keys which represents this location
keysLocation = [['1', 'num_1'], ['2', 'num_2'], ['3', 'num_3']]
respKeys = [key for keysLoc in keysLocation for key in keysLoc] # looks complicated but it simply flattens the list to be non-nested
# Present the ratingscale and wait for a response
currentPos = 1
while scale.noResponse:
response = event.getKeys(keyList=respKeys) # only accept respKeys
if response and response[0] in respKeys:
# Then loop through sublists and update currentPos to where the match is
for i, loc in enumerate(keysLocation):
if response[0] in loc:
currentPos = i
# Set the marker position and draw
scale.setMarkerPos(currentPos)
scale.draw()
win.flip()
我的解决方案看起来很复杂,但大部分只是处理keysLocation
列表并搜索匹配项。对不起/不明确的变量名称感到抱歉,但我现在无法想出更好的东西。
此解决方案可能也适用于Builder。只需删除"启动心理调查"将scale
更改为RatingScale的名称,然后将代码粘贴到RatingScale上方的代码组件中。