Wilbert's website at SocSci

> jsPsych> 3 Retrieving data

jspsych/03retrieving.html 2020-05-11

Programming in JavaScript with jsPsych, Retrieving your data

Now go back to Radcloud Mini experiment page. You are probably still logged in. If not, log in. Click your experiment id. It will take you to the next page:

First check if your data is there. Click show data. Is it there? Choose your preferred download format. If your analysis software supports JSON, please use this. Otherwise select the csv dialect that your software supports.

If you use for instance Python pandas, you can load json files with the following few lines of code into a dataframe:

import pandas as pd
df = pd.read_json ("/tmp/data.json")

Chapter 2, Saving data - previous — next - Chapter 4, Participants