Data and analysis code for Zamboni et al (2016) manuscript. "Do perceptual biases emerge early or late in visual processing?"
Data and analysis code for Zamboni et al (2016) manuscript.
Do perceptual biases emerge early or late in visual processing?
Elisa Zamboni, Timothy Ledgeway, Paul V McGraw & Denis Schluppeck
School of Psychology, University of Nottingham University Park, Nottingham, NG7 2RD, UK
Data files are provided as comma-separated files. The conventions for the data files included with this code are:
subject[ID]-discrimination.csv
Each row contains data obtained at particular stimulus direction (data were pooled across a 5º range of stimulus directions). There are 4 columns:
subject[ID]-reference-[absent|present|shifted].csv
subjectA-reference-absent.csv
Each row contains a trial. For present|absent data, there are 3 columns:
For the data obtained in the "shifted" condition, there are 4 columns
If you just want to have a quick look at an example output from running one of the notebooks, you have a look at a rendered version in the github preview.
To run the model and visualize the data:
git clone https://github.com/schluppeck/zamboni-2016.git
git
), download a zip archive of the repository and unpack it. https://github.com/schluppeck/zamboni-2016/archive/master.zip
/Applications/Julia.app
). Alternatively, you could create an command line alias with alias julia='/Applications/Julia-0.4.2.app/Contents/Resources/julia/bin/julia'
cd zamboni-2016
julia # to start julia
Then, from inside the Julia shell, launch the notebook server:
# install and update packages
Pkg.add("IJulia")
Pkg.update()
# start using them
using IJulia
notebook()
# this will launch the Jupyter notebook interface in your web browser
Select the notebook in the browser window
... and start stepping through the code by executing cells in turn (Shift-Return).