Hi everyone,
I ran into some issues with list creation within the experiment, i.e., merging two lists:
stimlist A = [“1a.jpg”,“2a.jpg”,…,“192a.jpg”]
stimlistB = [“1b.jpg”,“2b.jpg”,…,“192b.jpg”]
into a table with “stimlistA” and “stimlistB” as variable/column names. This table should be shuffled row-wise/pair-wise, resulting in something like this:
Then I would like to split the shuffled table into two (now shuffled) lists:
stimlistA_shuffled = [“2a.jpg”,“192a.jpg”,…,“1a.jpg”]
stimlistB_shuffled = [“2b.jpg”,“192b.jpg”,…,“1b.jpg”]
When running on my local machine, the following Py code does the job:
stimlist = list(zip(stimlistA,stimlistB))
shuffle(stimlist)
shuffledstimlist = stimlist
stimlistA_shuffled, stimlistB_shuffled = map(list, zip(*stimlist))
However, I have not managed to translate this into JS to be used in an online experiment …
What I´ve tried so far:
stimlist = zip(stimlistA, stimlistB);
shuffle(stimlist);
after inserting the following code at the beginning of the experiment:
shuffle = util.shuffle;
Array.prototype.append = [ ].push;const zip = (…arr) => {
const zipped = [ ];
arr.forEach((element, ind) => {
element.forEach((el, index) => {
if(!zipped[index]){
zipped[index] = [ ];
};
if(!zipped[index][ind]){
zipped[index][ind] = [ ];
}
zipped[index][ind] = el || ‘’;
})
});
return zipped;
};
URL of experiment: https://run.pavlovia.org/fapsySRHHD/mstps_20210628
Any help is greatly appreciated!