Eimear
|
|
Group: Awaiting Activation
Posts: 19,
Visits: 148
|
Ah I thought showsummaryfeedback meant show it to participants. Thank you very very much!
Eimear
|
|
|
Dave
|
|
Group: Administrators
Posts: 13K,
Visits: 104K
|
As per your values settings
<values> /showsummaryfeedback = false </values>
<block iat1summary> /skip = [values.showsummaryfeedback == false] ... </block>
you are skipping all the summary blocks. Thus those variables cannot possibly be properly updated (the /onblockend attributes are never executed). Remove the /skip attribute from those <block>s and move it to the summary <trial> elements instead.
|
|
|
Eimear
|
|
Group: Awaiting Activation
Posts: 19,
Visits: 148
|
Ok, I deleted that part in each IAT script but still get one set of d scores in the final summary output.
|
|
|
Dave
|
|
Group: Administrators
Posts: 13K,
Visits: 104K
|
The problem is that you are re-setting those values back to zero, which of course you should *not* do.
<block iat1summary> /skip = [values.showsummaryfeedback == false] / trials = [1=iat1summary] / recorddata = true / onblockend = [values.iat1_d = expressions.d; values.iat1_da = expressions.da; values.iat1_db = expressions.db] / onblockend = [values.sum1a=0; values.sum2a=0; values.sum1b=0; values.sum2b=0; values.n1a=0; values.n2a=0; values.n1b=0; values.n2b=0;values.ss1a=0; values.ss2a=0; values.ss1b=0; values.ss2b=0;values.magnitude="unknown"; values.iat1_d=0; values.iat1_da=0; values.iat1_db=0] </block>
|
|
|
Eimear
|
|
Group: Awaiting Activation
Posts: 19,
Visits: 148
|
I'm not sure where I'm going wrong but the summary file I get at the end still only has one set of d scores (and lots of empty value columns).
I've attached my zip file of scripts and example summary output for your info - if you wouldn't mind taking a look at what I've done I'd really appreciate it.
|
|
|
Dave
|
|
Group: Administrators
Posts: 13K,
Visits: 104K
|
> So do I add the above (and other items e.g. iat1_da = 0; iat1_db = 0; iat2_d = 0 etc.) to the 'include' file?
You add it to the <values> element that exists in your main file.
> I'm not sure how to do the above. Should I end up with something like the following for IAT1: > <block IAT1summary> > ... > / onblockend = [values.iat1_d = expressions.d; values.iat1_da = expressions.da; values.iat1_db = > expressions.db> ] > / onblockend = [values.sum1a=0; values.sum2a=0; values.sum1b=0; > values.sum2b=0; values.n1a=0; values.n2a=0; values.n1b=0; > values.n2b=0;values.ss1a=0; values.ss2a=0; values.ss1b=0; > values.ss2b=0;values.magnitude="unknown"; ... what goes here??] > ... > </block>
Yes, that's what you should end up with. Re. "what goes here??": Any other values you need to reset to zero between IATs.
|
|
|
Eimear
|
|
Group: Awaiting Activation
Posts: 19,
Visits: 148
|
Sorry Dave, still struggling with this. What you need to do is capture the relevant data for the three IATs in separate variables and have the existing, single <summarydata> element log those. I.e., add <values> ... / iat1_d = 0 ... </values>
So do I add the above (and other items e.g. iat1_da = 0; iat1_db = 0; iat2_d = 0 etc.) to the 'include' file?
Then, in the summary <block> belonging to IAT1, first store the result of expressions.d in values.iat1_d and then reset the values before the start of the next IAT: <block IAT1summary> ... / onblockend = [values.iat1_d = expressions.d; ...] / onblockend = [values.sum1a=0; values.sum2a=0; values.sum1b=0; values.sum2b=0; values.n1a=0; values.n2a=0; values.n1b=0; values.n2b=0;values.ss1a=0; values.ss2a=0; values.ss1b=0; values.ss2b=0;values.magnitude="unknown"; ...] ... </block> Do the same for the other variables you are interested in (expressions.da, expressions.db, etc.) as well as the other IATs (IAT2, IAT3).
I'm not sure how to do the above. Should I end up with something like the following for IAT1: <block IAT1summary> ... / onblockend = [values.iat1_d = expressions.d; values.iat1_da = expressions.da; values.iat1_db = expressions.db ] / onblockend = [values.sum1a=0; values.sum2a=0; values.sum1b=0; values.sum2b=0; values.n1a=0; values.n2a=0; values.n1b=0; values.n2b=0;values.ss1a=0; values.ss2a=0; values.ss1b=0; values.ss2b=0;values.magnitude="unknown"; ... what goes here??] ... </block>
Finally log those values to the summary file <summarydata> / columns = [..., values.iat1_d, ...] ... </summarydata>
So the full summary file in the 'include' part could be something like: <summarydata> / columns = [..., values.iat1_d, values.iat1_da, values.iat1_db, values.iat2_d, values.iat2_da, values.iat2_db, values.iat3_d, values.iat3_da, values.iat3_db] ... </summarydata>
Thanks again.
|
|
|
Dave
|
|
Group: Administrators
Posts: 13K,
Visits: 104K
|
You cannot have your script output multiple summary files.
What you need to do is capture the relevant data for the three IATs in separate variables and have the existing, single <summarydata> element log those. I.e., add
<values> ... / iat1_d = 0 ... </values>
Then, in the summary <block> belonging to IAT1, first store the result of expressions.d in values.iat1_d and then reset the values before the start of the next IAT:
<block IAT1summary> ... / onblockend = [values.iat1_d = expressions.d; ...] / onblockend = [values.sum1a=0; values.sum2a=0; values.sum1b=0; values.sum2b=0; values.n1a=0; values.n2a=0; values.n1b=0; values.n2b=0;values.ss1a=0; values.ss2a=0; values.ss1b=0; values.ss2b=0;values.magnitude="unknown"; ...] ... </block>
Do the same for the other variables you are interested in (expressions.da, expressions.db, etc.) as well as the other IATs (IAT2, IAT3).
Finally log those values to the summary file
<summarydata> / columns = [..., values.iat1_d, ...] ... </summarydata>
|
|
|
Eimear
|
|
Group: Awaiting Activation
Posts: 19,
Visits: 148
|
Hi Dave,
I have a quick follow-up question about the data files when using the 'include' element. With my script I run a demographic survey, then a questionnaire, IAT, questionnaire, IAT, questionnaire, IAT. With the data output I get a demographic file, a data file with all the questionnaire and IAT info, and a summary file for whichever IAT is listed first in the 'iinclude' file.
I was wondering if there is a way of generating a summary file that summarises all three IAT scores for each participant? Or three separate summary files with this info per participant? It doesn't work if I specify a summary file in each of the three individual IAT files and then run the overall 'include' script.
Thanks, Eimear
|
|
|
Eimear
|
|
Group: Awaiting Activation
Posts: 19,
Visits: 148
|
Hi Dave,
Thanks so much - I had the expt in the separate files as well as the main ones. It doesn't repeat now that I've removed them.
Thanks for the info about the other files too!
Eimear
|
|
|