Avatar

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Supported by

michedini

About

Username
michedini
Joined
Visits
20
Last Active
Roles
Member

Comments

  • Thank you for your reply, Eduard. I will try to explain more clearly what I am attempting to do, as being pretty new to OpenSesame, I am not even sure that it is the right process. Basically, I am trying to recreate a digital version of the Symbol-D…
  • So, after some trial and error, I was able to define the variables using this syntax: import numpy as np exp.set('numbers_list', list(np.arange(1,10,1))) exp.set('symbols_list', []) However, after running a loop containing the following inline code…
  • Nevermind, I manged to make it work by rebuilding the experiment from scratch, so I guess I had done something along the way which caused an error with JATOS. Still, it would be useful if someone could share some knowledge on what might cause this k…
  • Thank you, I was able to load the JSON file as pandas dataframes using the jsonlines package as you suggested. Here is the code I used: import jsonlines import pandas as pd json_filename = #name of json file (as a string)  with jsonlines.open(json…
  • https://forum.cogsci.nl/uploads/632/FDPKE7LV7CQG.txt I have attached the output file I am currently having trouble with, maybe it can help you find the issue more easily. It contains the results of 3 trials.
  • Thank you for your help, Elisa. So far, I have run just a couple of trials to test data export and conversion. If I export the single trial from JATOS, I am able to access it without issues using python's pandas.read_json function. However, when I …