Commit 0a439609 authored by Julia Sadka's avatar Julia Sadka

_

parent 19defb2d
File added
File added
This diff is collapsed.
N-back task
--------------
The experiment:
In this experiment participants are required to respond whenever the stimulus (square) location matches its location the previous trial (N-back-1). N-back-2 trials involve responding whenever the location of the square is the same as its location 2 trials before. This task is based on Kirchner (1958) experiment. This experiment differs from the original experiment in number of trials.
Analysing your data:
Data is stored in the excel file produced by PsychoPy in the data folder. response.corr column includes data from N-back-1 trials. 1 represents correct response and 0 reperesents incorrect response. response.rt column includes the reaction time for each trial. response_2.corr and response_2.rt include the data from the N-back-2 trials.
References:
Kirchner, W. K. (1958). Age differences in short-term retention of rapidly changing information. Journal of Experimental Psychology, 55(4), 352-358.
\ No newline at end of file
grid.png

23.9 KB

This diff is collapsed.
This diff is collapsed.
<!doctype html>
<html>
<head>
<title>N-back [PsychoPy]</title>
<meta charset="UTF-8">
<meta name="viewport" content="user-scalable=no">
<!-- styles -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.css">
<link rel="stylesheet" href="https://lib.pavlovia.org/psychojs.css">
</head>
<body>
<div id="root"></div>
<!-- external libraries -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/seedrandom/3.0.1/seedrandom.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/pixi.js/4.8.7/pixi.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/PreloadJS/1.0.1/preloadjs.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/xlsx/0.14.2/xlsx.full.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/log4javascript/1.4.9/log4javascript.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/tone/13.8.6/Tone.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/howler/2.1.2/howler.min.js"></script>
<!-- experiment -->
<script type='module' src='./N-back.js'></script>
<!-- older browsers -->
<script nomodule type="text/javascript" src="https://unpkg.com/@ungap/url-search-params"></script>
<script nomodule type="text/javascript" src="https://lib.pavlovia.org/psychojs.js"></script>
<script nomodule type="text/javascript" src="./N-backNoModule.js"></script>
</body>
</html>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment