|
- PsychoPy: Conditional but random selection from list across two . . .
PsychoPy Builder explicitly imports shuffle() from numpy random, so it is available directly by name in code components – Michael MacAskill Commented May 4, 2015 at 22:26
- PsychoPy Builder - How to I take a rest part way through a set of . . .
PsychoPy Builder uses the TrialHandler class and you can make use of its attributes to do control when you want to take a rest Assuming you're trial loop is utilising an Excel csv file to get the trial data then make use of trialHandler's attribute : thisTrialN e g
- python - Exiting PsychoPy Window - Stack Overflow
from psychopy import visual w1 = visual Window() w1 close() # do other things here, perhaps a GUI w2 = visual Window() # another, new window pops open Multiple windows closing and reopening is not common usage--if you find yourself doing it, there's probably a better way
- python - Getting keyboard response in Psychopy - Stack Overflow
Please note that the community forum at https: discourse psychopy org is probably a better place to get support like this StackOverflow is more oriented towards code-based questions and answers that will be of general interest to others, and that can be answered with a single question answer format (whereas the forum allows for to-and-fro
- psychopy - How to display stimulus accurately using frames - Stack Overflow
The timing discrepancy might be due to the frame rate not being exactly 60Hz Try using myWin getActualFrameRate() (PsychoPy documentation) to get the actual frame rate Multiplying the real frame rate by 5 0 seconds should theoretically allow you to draw for exactly 5 0 seconds
- python - Variable Trial Conditions in PsychoPy - Stack Overflow
The layout of your Excel conditions file will probably need to change somewhat PsychoPy is structured around treating each row in that file as corresponding to a trial, whereas you are currently spreading a trial across multiple rows That will make it harder to store and collect responses appropriately with their corresponding stimuli
- python - Psychopy no response keyboard - Stack Overflow
I'm doing an experimentation where the participant needs to pressed the keyboard I would like to know if the participant : 1) pressed the good key 2) wrong key 3) no response I have this line of
- python - visual analogue scale psychopy - Stack Overflow
I'm developing a metacognition experiment in PsychoPy (v 1 90 1) and I need a visual analogue scale to measure confidence However, I can't find a way to remove the numeric values (0 and 1) from the
|
|
|