How to put the same picture in multiple survey pages?


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: 107K
Sean L. - Saturday, September 15, 2018
Hi all,

I would like to put a single same picture, which is randomized and selected, in multiple survey pages.

Here's the issue:

If I randomized and selected pictures just like

<picture picC>
/items = targetComb
/ size = (70%, 70%)
/ position = (70%, 60%)
/ select = noreplace(30)
</picture>

and put this picC into different survey pages (I would like to separate surveypages),

<surveypage slider>
/ stimulusframes = [1= noreplace(picC)]
</surveypage>

<surveypage radio>
/ stimulusframes = [1= noreplace(picC)]
</surveypage>


Inquisit selected different pictures from picC and put those pictures into each survey pages - I think Inquisit randomized piC pictures every time (maybe due to noreplace element in surveypages).
I am going to run multiple surveys by combining two surveypages (slider & radio).

Is there any way that I can randomize and select pictures and save those pictures in certain element so that I do not need to use noreplace?
 

Yes, you need a <list> containing the item numbers and a value for selection. Sample an item number from the list in the 1st surveypage (and only the 1st page), store it in a value, and you'll have the same item displayed on both pages.


<picture picC>
/items = targetComb
/ select = values.piccitemnumber
/ size = (70%, 70%)
/ position = (70%, 60%)
</picture>

// we have 30 items, numbered 1 to 30
<list piccitemnumbers>
/ poolsize = 30
</list>

<values>
/ piccitemnumber = 1
</values>


<surveypage slider>
/ ontrialbegin = [
    values.piccitemnumber = list.piccitemnumbers.nextindex;
]

/ stimulusframes = [1= picC]
</surveypage>

<surveypage radio>
/ stimulusframes = [1= picC]
</surveypage>

<block myblock>
/ trials = [1-30 = sequence(slider, radio)]
</block>

Sean L.
Sean L.
Esteemed Member (1.5K reputation)Esteemed Member (1.5K reputation)Esteemed Member (1.5K reputation)Esteemed Member (1.5K reputation)Esteemed Member (1.5K reputation)Esteemed Member (1.5K reputation)Esteemed Member (1.5K reputation)Esteemed Member (1.5K reputation)Esteemed Member (1.5K reputation)
Group: Forum Members
Posts: 18, Visits: 64
Hi all,

I would like to put a single same picture, which is randomized and selected, in multiple survey pages.

Here's the issue:

If I randomized and selected pictures just like

<picture picC>
/items = targetComb
/ size = (70%, 70%)
/ position = (70%, 60%)
/ select = noreplace(30)
</picture>

and put this picC into different survey pages (I would like to separate surveypages),

<surveypage slider>
/ stimulusframes = [1= noreplace(picC)]
</surveypage>

<surveypage radio>
/ stimulusframes = [1= noreplace(picC)]
</surveypage>


Inquisit selected different pictures from picC and put those pictures into each survey pages - I think Inquisit randomized piC pictures every time (maybe due to noreplace element in surveypages).
I am going to run multiple surveys by combining two surveypages (slider & radio).

Is there any way that I can randomize and select pictures and save those pictures in certain element so that I do not need to use noreplace?
 

GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Reading This Topic

Explore
Messages
Mentions
Search