Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Supported by

Attentional blink

Hello, I made an AB experiment based on this template http://osdoc.cogsci.nl/3.1/tutorials/advanced/. When running, the experiment gets frozen on the "ask_T2" question. It doesn't react to any answer.

I am attaching the file with the experiment. Could you please help me?

Comments

  • Hi freeo,

    Remove the " from Allowed responses like this:

    Best,
    Jarik

  • Thanks! It works.

  • Could anyone please help me with changing T1 and T2 in this experiment from letters to the numbers? The experiment I am working on doesn't have the control condition either - every trial T1 and T2 are present.

  • Hi Freeo,

    Changing the stimuli from letters to numbers should be relatively straightforward. In step 9 of the tutorial you could swap the list with letters to a list with numbers:

    letters = list(string.ascii_uppercase)
    

    for

    numbers = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
    

    Then, for the sake of clarity, replace every instance of 'letters' with 'numbers':

    E.g. stim_list = random.sample(letters, var.stream_len) becomes stim_list = random.sample(numbers, var.stream_len)

    If you just have an experimental condition, simply remove the control condition from the experiment. Let me know how it works out.

    Best,
    Laurent

Sign In or Register to comment.