Priming and lexical decision task - HELP!


Author
Message
jschiralli
jschiralli
Associate Member (102 reputation)Associate Member (102 reputation)Associate Member (102 reputation)Associate Member (102 reputation)Associate Member (102 reputation)Associate Member (102 reputation)Associate Member (102 reputation)Associate Member (102 reputation)Associate Member (102 reputation)
Group: Forum Members
Posts: 1, Visits: 8
Hi all,

I'm hoping to get some help with programming a lexical decision task (LDT) with 3 primes.  The existing LDT script (Lepore & Brown, 2002) does not include the use of primes, so it would need to be added to the script (this is where I'm struggling).  I've consulted previous threads on similar topics but not all of them are relevant, and my complete lack of coding/programming experience limits my understanding.

Essentially, this is the design of the task: 
- 3 primes (the primes will be words - YOUNG, OLD, or XXXX)
- 4 word lists (containing 11 words each) and 1 non-word list (containing 44 non-words)

There should be 176 trials divided into 4 blocks of 44 trials each.  The 44 traits (real words) should be paired with each of the 3 primes, yielding a total of 132 word trials.  The word and non-word trials should be presented randomly across the 4 blocks.  I would appreciate any feedback on how difficult this would be to program, particularly for a person who has no programming or Inquisit experience.

The goal is to be able to look at response/reaction time to each word list (category) depending on which prime was presented before it.  From what I understand, I need to be able to see all 132 columns in the results to make these comparison.

The code currently does not run at all because the primes I added did not exist before (no idea if I have even written them correctly).  There are other errors too, since I have added new words and lists.  Please excuse any ignorance - I have zero programming experience.
 
This is all I have so far:
<item targetAlabel>
/1 = "YOUNG"
</item>

<item targetBlabel>
/1 = "OLD"
</item>

<item targetCabel>
/1 = "XXXX"
</item>


<item list1> #oldpositive
/ 1 = "EXPERIENCED"
/ 2 = "WISE"
/ 3 = "SAGE"
/ 4 = "SENTIMENTAL"
/ 5 = "GENEROUS"
/ 6 = "PATIENT"
/ 7 = "CAUTIOUS"
/ 8 = "LEARNED"
/ 9 = "KNOWLEDGEABLE"
/ 10 = "PRACTICAL"
/ 11 = "MATURE"

</item>

<item list2> #oldnegative
/ 1 = "SENILE"
/ 2 = "FORGETFUL"
/ 3 = "FRAGILE"
/ 4 = "FEEBLE"
/ 5 = "TIRED"
/ 6 = "NEGLECTED"
/ 7 = "INFLEXIBLE"
/ 8 = "AFRAID"
/ 9 = "BITTER"
/ 10 = "LONELY"
/ 11 = "HELPLESS"

</item>

<item list3> #youngpositive
/ 1 = "ENERGETIC"
/ 2 = "HEALTHY"
/ 3 = "ADVENTUROUS"
/ 4 = "EXCITED"
/ 5 = "CAREFREE"
/ 6 = "CURIOUS"
/ 7 = "EAGER"
/ 8 = "VIGOROUS"
/ 9 = "AMBITIOUS"
/ 10 = "OPTIMISTIC"
/ 11 = "FLEXIBLE"

</item>

<item list4> #youngnegative
/ 1 = "INEXPERIENCED"
/ 2 = "RECKLESS"
/ 3 = "REBELLIOUS"
/ 4 = "LAZY"
/ 5 = "WASREFUL"
/ 6 = "GREEDY"
/ 7 = "DISRESPECTFUL"
/ 8 = "VAIN"
/ 9 = "LOUD"
/ 10 = "IRRESPONSIBLE"
/ 11 = "IMPATIENT"

</item>

<item list5nonword>
/ 1 = "HAPARD"
/ 2 = "PRAFIX"
/ 3 = "ITER"
/ 4 = "JAINT"
/ 5 = "LEBEND"
/ 6 = "LABOREN"
/ 7 = "MOTIE"
/ 8 = "MALICT"
/ 9 = "OPPHID"
/ 10 = "PATEMENT"
/ 11 = "SAMBLE"
/ 12 = "SLATERY"
/ 13 = "KERTLE"
/ 14 = "ALDRESS"
/ 15 = "CURAL"
/ 16 = "BIRACALL"
/ 17 = "CRUCKET"
/ 18 = "ELEPT"
/ 19 = "QUELT"
/ 20 = "PRECESS"
/ 21 = "ACORG"
/ 22 = "KNOM"
/ 23 = "STRITE"
/ 24 = "GELLON"
/ 25 = "DEDACTION"
/ 26 = "EVIPENCE"
/ 27 = "FETONY"
/ 28 = "GANDSTER"
/ 29 = "GARLANT"
/ 30 = "ACAREMY"
/ 31 = "BRIEKLY"
/ 32 = "CHAMSER"
/ 33 = "DRELLING"
/ 34 = "ROPANCE"
/ 35 = "SNOG"
/ 36 = "TOWEN"
/ 37 = "MADANE"
/ 38 = "HOSMILITY"
/ 39 = "ISITATION"
/ 40 = "LANKERN"
/ 41 = "FRONGE"
/ 42 = "GALAGE"
/ 43 = "ORPIAN"
/ 44 = "VIRDICT"
</item>


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: 12K, Visits: 98K
jschiralli - Thursday, September 28, 2017
Hi all,

I'm hoping to get some help with programming a lexical decision task (LDT) with 3 primes.  The existing LDT script (Lepore & Brown, 2002) does not include the use of primes, so it would need to be added to the script (this is where I'm struggling).  I've consulted previous threads on similar topics but not all of them are relevant, and my complete lack of coding/programming experience limits my understanding.

Essentially, this is the design of the task: 
- 3 primes (the primes will be words - YOUNG, OLD, or XXXX)
- 4 word lists (containing 11 words each) and 1 non-word list (containing 44 non-words)

There should be 176 trials divided into 4 blocks of 44 trials each.  The 44 traits (real words) should be paired with each of the 3 primes, yielding a total of 132 word trials.  The word and non-word trials should be presented randomly across the 4 blocks.  I would appreciate any feedback on how difficult this would be to program, particularly for a person who has no programming or Inquisit experience.

The goal is to be able to look at response/reaction time to each word list (category) depending on which prime was presented before it.  From what I understand, I need to be able to see all 132 columns in the results to make these comparison.

The code currently does not run at all because the primes I added did not exist before (no idea if I have even written them correctly).  There are other errors too, since I have added new words and lists.  Please excuse any ignorance - I have zero programming experience.
 
This is all I have so far:
<item targetAlabel>
/1 = "YOUNG"
</item>

<item targetBlabel>
/1 = "OLD"
</item>

<item targetCabel>
/1 = "XXXX"
</item>


<item list1> #oldpositive
/ 1 = "EXPERIENCED"
/ 2 = "WISE"
/ 3 = "SAGE"
/ 4 = "SENTIMENTAL"
/ 5 = "GENEROUS"
/ 6 = "PATIENT"
/ 7 = "CAUTIOUS"
/ 8 = "LEARNED"
/ 9 = "KNOWLEDGEABLE"
/ 10 = "PRACTICAL"
/ 11 = "MATURE"

</item>

<item list2> #oldnegative
/ 1 = "SENILE"
/ 2 = "FORGETFUL"
/ 3 = "FRAGILE"
/ 4 = "FEEBLE"
/ 5 = "TIRED"
/ 6 = "NEGLECTED"
/ 7 = "INFLEXIBLE"
/ 8 = "AFRAID"
/ 9 = "BITTER"
/ 10 = "LONELY"
/ 11 = "HELPLESS"

</item>

<item list3> #youngpositive
/ 1 = "ENERGETIC"
/ 2 = "HEALTHY"
/ 3 = "ADVENTUROUS"
/ 4 = "EXCITED"
/ 5 = "CAREFREE"
/ 6 = "CURIOUS"
/ 7 = "EAGER"
/ 8 = "VIGOROUS"
/ 9 = "AMBITIOUS"
/ 10 = "OPTIMISTIC"
/ 11 = "FLEXIBLE"

</item>

<item list4> #youngnegative
/ 1 = "INEXPERIENCED"
/ 2 = "RECKLESS"
/ 3 = "REBELLIOUS"
/ 4 = "LAZY"
/ 5 = "WASREFUL"
/ 6 = "GREEDY"
/ 7 = "DISRESPECTFUL"
/ 8 = "VAIN"
/ 9 = "LOUD"
/ 10 = "IRRESPONSIBLE"
/ 11 = "IMPATIENT"

</item>

<item list5nonword>
/ 1 = "HAPARD"
/ 2 = "PRAFIX"
/ 3 = "ITER"
/ 4 = "JAINT"
/ 5 = "LEBEND"
/ 6 = "LABOREN"
/ 7 = "MOTIE"
/ 8 = "MALICT"
/ 9 = "OPPHID"
/ 10 = "PATEMENT"
/ 11 = "SAMBLE"
/ 12 = "SLATERY"
/ 13 = "KERTLE"
/ 14 = "ALDRESS"
/ 15 = "CURAL"
/ 16 = "BIRACALL"
/ 17 = "CRUCKET"
/ 18 = "ELEPT"
/ 19 = "QUELT"
/ 20 = "PRECESS"
/ 21 = "ACORG"
/ 22 = "KNOM"
/ 23 = "STRITE"
/ 24 = "GELLON"
/ 25 = "DEDACTION"
/ 26 = "EVIPENCE"
/ 27 = "FETONY"
/ 28 = "GANDSTER"
/ 29 = "GARLANT"
/ 30 = "ACAREMY"
/ 31 = "BRIEKLY"
/ 32 = "CHAMSER"
/ 33 = "DRELLING"
/ 34 = "ROPANCE"
/ 35 = "SNOG"
/ 36 = "TOWEN"
/ 37 = "MADANE"
/ 38 = "HOSMILITY"
/ 39 = "ISITATION"
/ 40 = "LANKERN"
/ 41 = "FRONGE"
/ 42 = "GALAGE"
/ 43 = "ORPIAN"
/ 44 = "VIRDICT"
</item>


I don't necessarily think you should use the existing LDT script as a basis. Sometimes things are easier to build from scratch. Since you're new to Inquisit, I'd suggest you start with this priming-related tutorial: http://www.millisecond.com/support/docs/v5/html/tutorials/subliminal/subliminaltutorial.htm

Then, perhaps, take a look at  this simple primed LDT example: https://www.millisecond.com/forums/FindPost18946.aspx

GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Reading This Topic

Explore
Messages
Mentions
Search