Randomiszation in Pavlovia

Hi All!

We are trying to implement our offline study into Pavlovia currently.
Since we can’t use the python packages anymore and none of us are proficient enough in javascript, we we are using the inbuilt randomization tools of python, but we are struggling with getting it to work.

What kind of randomization do you usually use when conducting through Pavlovia, if you want to avoid javascript?

We’re talking about very basic randomization akin to the random package.

Thanks!
Best,
Andi

I write very little in JavaScript when running experiments online. Mostly I rely on the auto translation tool, and write in simple Python.

One of my favourite ways to randomise is with the shuffle function. For example:

Begin Experiment

isiList = [.3,.4,.5,.6]

Begin Routine

shuffle(isiList)
thisExp.addData('ISI',isiList[0])

Thank you, wake :slight_smile: