Group: Administrators
Posts: 13K,
Visits: 108K
|
The code you posted, namely
/trials=[1-16=noreplace(Rred, Rblue, Ryellow, Rgreen, Ured, Ublue, Uyellow, Ugreen, Yred, Yblue, Yyellow, Ygreen, Gred, Gblue, Gyellow, Ggreen)]
*will* present each of the listed <trial> elements exactly once. You are drawing 16 samples (1-16) from a pool of 16 elements (Rred, ..., Ggreen) randomly without replacement (noreplace). If you examine the data file's trialcode column, I'm sure you'll find that this is exactly the case. There'll be exactly one instance of trial Rred, one instance of Rblue, one instance of trial Ryellow, etc.
Note that the sampling of trials at the block level *has nothing to do* with how those trial elements may sample from any *stimulus elements* they display.
|