Flanker Task


Author
Message
Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 13K, Visits: 109K
And if you hit any roadblock, don't hesitate to add your question(s) to this thread. Please try to make any questions as concrete as possible (i.e. give sufficient (technical) detail about what you are aiming to achieve, include example code, etc.). The more specific you phrase your questions, the better.

daphne golden
daphne golden
Partner Member (583 reputation)Partner Member (583 reputation)Partner Member (583 reputation)Partner Member (583 reputation)Partner Member (583 reputation)Partner Member (583 reputation)Partner Member (583 reputation)Partner Member (583 reputation)Partner Member (583 reputation)
Group: Awaiting Activation
Posts: 13, Visits: 475
Thanks, I'll see what I can do. 
Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 13K, Visits: 109K
The very first thing you ought to do is complete all the tutorials included in the documentation (if you haven't done so already). Once you've absorbed that and gotten a basic a basic handle on how to express a procedure in Inquisit syntax, you can move on to study some more elaborate scripts as can be found in the task library. Then start building your own procedure.

Important: If the flanker task you are trying to implement is substantially different from existing ones, it may be way easier to build it from scratch instead of trying to modify an existing script.

As to the concrete questions you've alluded to: You'll want to use the /beginresponsetime attribute to allow for responses prior to full completion of a given <trial> element's stimulus presentation sequence as given in the /stimulustimes or /stimulusframes attribute. You'll want to handle the "responded to early" message by /branch'ing to a separate <trial> element based on latency.

Example:

<block myblock>
/ trials = [1-10=mytrial]
</block>

<trial mytrial>
/ stimulustimes = [0=a; 5000=b]
/ beginresponsetime = 0
/ validresponse = (57)
/ timeout = 10000
/ branch = [if (trial.mytrial.latency < 5000) trial.tooearly]
</trial>

<text a>
/ items = ("A")
</text>

<text b>
/ items = ("B")
</text>

<trial tooearly>
/ stimulusframes = [1=tooearlymsg]
/ trialduration = 500
</trial>

<text tooearlymsg>
/ items = ("You responded too early.")
</text>


daphne golden
daphne golden
Partner Member (583 reputation)Partner Member (583 reputation)Partner Member (583 reputation)Partner Member (583 reputation)Partner Member (583 reputation)Partner Member (583 reputation)Partner Member (583 reputation)Partner Member (583 reputation)Partner Member (583 reputation)
Group: Awaiting Activation
Posts: 13, Visits: 475
THe ANT by Fan is on the download library on the inquisit website.
daphne golden
daphne golden
Partner Member (583 reputation)Partner Member (583 reputation)Partner Member (583 reputation)Partner Member (583 reputation)Partner Member (583 reputation)Partner Member (583 reputation)Partner Member (583 reputation)Partner Member (583 reputation)Partner Member (583 reputation)
Group: Awaiting Activation
Posts: 13, Visits: 475
Dave, Thanks for your response. I am using the current child's arrow flanker, however, it is too long for my population.
I found another flanker that is much shorter. I am trying to script this, however, my skills are very limited at this.

It originally came from the ANT that is already scripted by Fan.

My problem is being able to put a limit on the stimulus response time.
Yet if a response is prior to this time, it will go to the next trial.

In addition, if they respond to quickly they receive feed back indicating that.

Basically, I am drowning. 
I don't know if anyone else has tried this test, or know how to script it... 
Any help or direction is welcome.

Thank you, Daphne



Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 13K, Visits: 109K
> With this I need to be able to give a time limit to the stimulus, fish or arrow. But if they hit the button prior to that time, it will go to the next trial.Also if it is hit too early it will respond "too early"

Could you please elaborate what exactly you are having trouble with here?

> It a modification of the ANT (Fan etal) already scripted. It needs the removal of stimulus and the ability to move to the next trial before everything is timed out.


Not sure what the question is here (if there is any at all). Please clarify.

daphne golden
daphne golden
Partner Member (583 reputation)Partner Member (583 reputation)Partner Member (583 reputation)Partner Member (583 reputation)Partner Member (583 reputation)Partner Member (583 reputation)Partner Member (583 reputation)Partner Member (583 reputation)Partner Member (583 reputation)
Group: Awaiting Activation
Posts: 13, Visits: 475
Hi. I am trying to modify the flanker task, so that it is similar to that used in Christ, 2011. This is used for children and is more realistic in time than the Arrowflanker already scripted.
With this I need to be able to give a time limit to the stimulus, fish or arrow. But if they hit the button prior to that time, it will go to the next trial.
Also if it is hit too early it will respond "too early"

Any help would be great. Maybe somebody has already done this test.

It a modification of the ANT (Fan etal) already scripted. It needs the removal of stimulus and the ability to move to the next trial before everything is timed out.

Please help.... Thanks Daphne

GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Reading This Topic

Explore
Messages
Mentions
Search