DahmSF
For each answer i get from the forum i give an answer to the forum.
About
- Username
- DahmSF
- Joined
- Visits
- 730
- Last Active
- Roles
- Member
Comments
-
Hey geraldine, It's the way you opened it. Open Excel. Go on "Data" --> "open text" Then choose your file. Select "seperated". Select "by comma". Should work. By the way: Better you open your data in a s…
-
You 're welcome :) PD: Do not forget to save/log your variables in the script. And have in mind that loggers in the while loop slow down its performance ;) Chears Stephan
-
Hi Lison, if i understand it you want to show a variable number of stimuli (with always one response) during a certain time (12s). you may try it with an inline script like that: seq=['put your stimuli here, the highest number you might expect']t…
-
Dear rampriya, Please specify your question. As far as i know there is one response (go) or cero responses (no-go) in this task. Do you want to present feedback? Is it that what you mean with "a error response following it if they fail to act a…
-
Is there something you may implement in Open Sesame to deactivate the Windows key while it is running? I know there is a way to deactivate it this key manually on the computer. But it would be so much nicer if it just does not work when i run Open S…
-
Thanks for your motivation boys! :p @eduard : That's exactly what i do now. However, as you said there is data missing. sunny greetings from the snow-covered Alps
-
@sebastiaan: >What are you trying to investigate, if I may ask? On your question: I want to implement a serial reaction time (SRT) task in mental practice (MP). Hence in the MP group participants press shift when they imagine to press the target…
-
Hi Sebastiaan, many thanks for your answer on a 2nd Sunday of Advent! This script is just a simplified version of my actual script ;) The second part is not really satisfactory. a) I wonder whether it is only the refresh rate? When the 'f' key is …
-
I noticed it is 'g' in combination with 'h'. But i have no clue why.
-
Do not use log.write_vars() within the loop. It makes the loop too slow. Here is an alternative. kb = keyboard(keylist = ['f','g','h','j','<','-','d','k'])Break = canvas()Break.text('')A = canvas()A.text('A')B = canvas()B.text('B')seq = [A,B]*5…
-
I solved it. Here is a version that works fine. Mind: 1. Do not use USB connections for your keyboard. 2. Do not use SHIFT or CTRL keys kb = keyboard(keylist = ['f','g','h','j','<','-','d','k'])Break = canvas()Break.text('')A = canvas()A.text('…
-
It was the keyboard connection. USB is too slow or sends the information something different. The old purple keyboard connection works fine.
-
The above mentioned script works fine on my computer at home (Win10). But in my office (Win7, uni network) from simultaneous key presses only one is registered. Any ideas why this is the case?
-
@eduard YOU SAVED MY DAY! Great this works when i set it to 0 (and if i do not use shift or ctrl). kb1 = keyboard(keylist = ['f','g','h','j','<','-','d','k']) kb2 = keyboard(keylist = ['f','g','h','j','<','-','d','k']) A = canvas() A.text('A'…
-
@Pascal Thanks Pascal for your remark of the upper-case letters. I did not notice that yet. At least we know now that the presses are recognized in some way. Although not logged. I have now changed it to LCTRL and RCTRL. (they shall press it with t…
-
Hi shamshir, set "duration" to infinite. put a keyboard_response item afterwards. http://osdoc.cogsci.nl/3.1/manual/response/keyboard/ Greetz Stephan
-
You are right, your lists are nested. Option 1: Write the list unnested: pairing_real_pos = [x, y, z, ...] #all items as one Option 2: Draw from the nested list like this if var.condition==1: var.CS_rating = pairing_real_pos[0][0] #the first is …
-
As i do not find a solution I have now tried to use the coroutines function and rewrote the old script for the inline_script. def Simultan(): kb = keyboard(keylist = ['f','g','h','j','LSHIFT','RSHIFT','d','k']) A = canvas() …
-
Hi Anna, i just remember that the accuracy variable calculates something strange that you usually don't need in that form. What do you need it for? With the correct_response you can afterwards calculate your percentage of correct responses. And if y…
-
see here http://forum.cogsci.nl/index.php?p=/discussion/2525/logger-file-not-registering-reaction-time-or-accuracy#latest
-
Hi avkasdan, make a new variable in your loop: Correct_resp there you set 1 and 2 correspondingly. In allowed responses you put the new variable by [Correct_resp] Greetz Stephan
-
Just an idea for the forum. In some occasions scientists really have time pressure ;-) and it would be nice to to know whether someone is already working on an answer to your question. Hence i thought whether it is possible to mark a comment with &…
-
Is there something like a debounce time which i have to set to 0?
-
I played a little around and found out that the problem lies (at least) in the trial when shift is pressed first. I could imagine that it has to do with the refresh rate of the next stimulus. (Just a guess) At the moment shift is pressed the next s…
-
Hi Char, Here is a manual way to repeat 'a practice block'. (In my example it is simple question which is repeated.) You insert a question (picture or text) with two response options (eg. x and n). If the first is pressed, the experiment goes on.…
-
That is how my output should look like (and looks like when i do not press in synchrony).
-
Dear Eduard and Josh, after 3 days of hard work i found a very nice solution. :) Nevertheless i still have one last problem. A fundamental problem. When the presses are perfomed synchroneously, it does not log anything. I believe that there is a mi…
-
Thanks Josh for the very quick answer. I am not sure whether a second get_key command will bring the desired result, as I do not expect the following stimulus to appear with the first response anymore. I like to see the experiment go on as it alread…
-
Hi Daniel, it tells me "no such file or directory". Before I get lost in apple-space, I think i am gonna use the easy way and let them start the program and run with the run button. Participants should be able to insert the subject_nr cor…
-
Hi Daniel, I am not sure whether i understood all of your answer. First, yes i found opensesamerun in the /Applications folder in the bin. That's where i created the alias, which i copied on the desktop. However, when i go to properties (which are …