agen judi bola , sportbook, casino, togel, number game, singapore, tangkas, basket, slot, poker, dominoqq,
agen bola. Semua permainan bisa dimainkan hanya dengan 1 ID. minimal deposit 50.000 ,- bonus cashback hingga 10% , diskon togel hingga 66% bisa bermain di android dan IOS kapanpun dan dimana pun. poker , bandarq , aduq, domino qq ,
dominobet. Semua permainan bisa dimainkan hanya dengan 1 ID. minimal deposit 10.000 ,- bonus turnover 0.5% dan bonus referral 20%. Bonus - bonus yang dihadirkan bisa terbilang cukup tinggi dan memuaskan, anda hanya perlu memasang pada situs yang memberikan bursa pasaran terbaik yaitu
http://45.77.173.118/ Bola168. Situs penyedia segala jenis permainan poker online kini semakin banyak ditemukan di Internet, salah satunya TahunQQ merupakan situs Agen Judi Domino66 Dan
BandarQ Terpercaya yang mampu memberikan banyak provit bagi bettornya. Permainan Yang Di Sediakan Dewi365 Juga sangat banyak Dan menarik dan Peluang untuk memenangkan Taruhan Judi online ini juga sangat mudah . Mainkan Segera Taruhan Sportbook anda bersama
Agen Judi Bola Bersama Dewi365 Kemenangan Anda Berapa pun akan Terbayarkan. Tersedia 9 macam permainan seru yang bisa kamu mainkan hanya di dalam 1 ID saja. Permainan seru yang tersedia seperti Poker, Domino QQ Dan juga
BandarQ Online. Semuanya tersedia lengkap hanya di ABGQQ. Situs ABGQQ sangat mudah dimenangkan, kamu juga akan mendapatkan mega bonus dan setiap pemain berhak mendapatkan cashback mingguan. ABGQQ juga telah diakui sebagai
Bandar Domino Online yang menjamin sistem FAIR PLAY disetiap permainan yang bisa dimainkan dengan deposit minimal hanya Rp.25.000. DEWI365 adalah
Bandar Judi Bola Terpercaya & resmi dan terpercaya di indonesia. Situs judi bola ini menyediakan fasilitas bagi anda untuk dapat bermain memainkan permainan judi bola. Didalam situs ini memiliki berbagai permainan taruhan bola terlengkap seperti Sbobet, yang membuat DEWI365 menjadi situs judi bola terbaik dan terpercaya di Indonesia. Tentunya sebagai situs yang bertugas sebagai
Bandar Poker Online pastinya akan berusaha untuk menjaga semua informasi dan keamanan yang terdapat di POKERQQ13. Kotakqq adalah situs
Judi Poker Online Terpercayayang menyediakan 9 jenis permainan sakong online, dominoqq, domino99, bandarq, bandar ceme, aduq, poker online, bandar poker, balak66, perang baccarat, dan capsa susun. Dengan minimal deposit withdraw 15.000 Anda sudah bisa memainkan semua permaina pkv games di situs kami. Jackpot besar,Win rate tinggi, Fair play, PKV Games
Comments
Hi @opensesame,
If what you'd like to do is to be able to set the duration of a sketchpad to vary it from trial to trial, the simplest solution is to include a column in your loop table that will contain the duration of your sketchpad and then call upon that variable when setting up your sketchpad.
(I'm assuming that you're just referring to displaying sketchpads only, not displaying sketchpads and collecting responses. If you're after collecting a response to the sketchpad, you'd need a different solution).
Set up the loop to include the duration as a variable. You can call this variable anything. Here I call it
duration
.Then set up the duration of your sketchpad to retrieve the value from that variable:
You can download my example here (note that it is very basic; e.g., it does not contain a logger or take responses; the purpose is just to show you how to vary the duration of a sketchpad):
Good luck!
Fabrice.
Hello @Fab
Thank you very much! It was very helpful. However, I have now run into a different issue:
I have variables in the loop that I would like to present randomly, however, I intend for the duration of the sketchpad to follow a sequential order. Is there any way to do this? Perhaps an image would explain it better:
The variable stimulus is ties to correct_response, and I would like them to be presented randomly
I have tried to use the shuffle cue but cannot figure out how to get 2 columns to vary together
Thank you!
Hi @opensesame,
In order to achieve what you're after, you'll have to use some code (Python or Javascript if you're running your experiment in OS, and Javascript if you're aiming to run it with OSWeb).
The general idea is to declare an array where the elements to be randomized are stored, shuffle it (if need be applying some conditions), and then output them to the loop as the task runs.
Have a look at these examples to see how this works: https://forum.cogsci.nl/discussion/comment/23977#Comment_23977, https://forum.cogsci.nl/discussion/comment/24005#Comment_24005, https://forum.cogsci.nl/discussion/comment/23974#Comment_23974
You'd also have to set the order property of the loop table to "sequential" so that duration of the sketchpad follows the order appearing in the table (the rest of the columns will be randomized using the code).
Hope this helps,
Fabrice.
Hi @Fab
Thank you very much! Will try it out.
Hi @opensesame,
Here's an implementation of the solution I posted here: https://forum.cogsci.nl/discussion/comment/23974#Comment_23974
I'm using Javascript code to (1) create an array containing the list of possible stimuli, (2) shuffle it, and (3) retrieve an element of the shuffled array to present it in the current trial.
Here's the Javascript code used to create a function that shuffles the elements of an array (
function shuffleArray(array)
), create an array containing five stimuli (A, B, C, D, E) (let arr = ["A", "B", "C", "D", "E"];
) and shuffles it (arr = shuffleArray(arr);
). I also use code to ouput the shuffled array to the console, for monitoring.With this method, note that the
stimulus
variable in the loop no longer needs to contain any information (the order method is set tosequential
to make sure that theduration
ispresented in the order specified in the loop table)...... for it will be populated on the fly using the code contained in the
retrieves_trial_info
:The method could be applied to other variables if you need to randomize several variables independently.
Good luck,
Fabrice.
Modified example: