Studies of functional fixedness and shifting between different sets of construals during planning.
This repo is organized into the following high-level directories:
experiments, which contains the data (zipped), analysis, and modeling files for experiments 1 and 2construal_shifting, which is a python package that includes code used for modelingpsiturkapp, which is the javascript application for the experiments (requires psiturk)
It is easiest to run the notebooks in a Python virtual environment. These steps are one way to do it:
- Set up the appropriate virtual environment (from root). For example:
$ virtualenv -p python3 env
- Load the virtual environment:
$ source env/bin/activate
- Install dependencies:
$ pip install -r requirements.txt
- Install project code as a python package (
-eflag tracks edits):
$ pip install -e construal_shifting