Skip to content

wkvong/gae-experiment-base

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

74 Commits
 
 
 
 
 
 
 
 

Repository files navigation

gae-experiment-base

Base experiment code for web experiments hosted on Google App Engine For Python (2.7)

Requires:

  • Python 2.7
  • Google AppEngineLauncher for Python: here
  • Google App command line tools (for downloading data from server). This must be done when starting Google AppEngineLauncher

Files and what they do:

  • In exp folder:
    • app.yaml: (often needs to be changed - app name and version number)

      • defines app name and version number (along with what version of python to use)
      • Handlers section - specify how URLs should be routed to the files in your folder (can be left alone)
      • Libraries section - which libraries are used (can be left alone)
      • Builtins - turns remote_api on (necessary for data download)
    • backend.py: (can be left alone in most cases)

      • loads index.html (via JINJA) and displays it
      • defines the structure of the data to save (DataObject section)
      • is the code that first gets called when people go to the experiment page
    • backend.pyc: is automatically generated by python based on backend.py

    • bulkloader.yaml: (can be left alone)

      • tells the data downloader how the data from Google will be formatted
      • must match backend.py
    • index.html: actual html of the experiment that is loaded by backend.py (often will be changed to add new buttons/sliders/etc)

    • In css folder:

      • style.css: specifies css for index.html and experiment.s (usually can be left alone)
    • In html folder:

      • many files that are loaded by experiment.js during the experiment
    • In js folder:

      • experiment.js: guts of the experiment. Loaded by index.html, loads content from html files in html folder. Will need to be changed for your experiment.
  • In analysis folder:
    • read.R: read in a file named raw_data.csv (presumeably downloaded from App Engine) and parse the JSON to create (and save) an RData object
    • JSON_parser_function.R: helper function for read.R that takes a vector or list of JSON encoded experimental variables and returns a data frame. One row for each entry in the original vector (or list) and a column for each experimental variable that existed.

How to run locally for testing (in Chrome)?

  1. Open Google AppEngineLauncher
  2. File -> Add Existing Application
  3. Navigate to this folder
  4. Click Add
  5. Click Run in AppEngineLauncher
  6. Navigate in browser to localhost:8080
  7. Generate some data
  8. To inspect the data you created, in the App Engine Launcher click on SDK Console and then on Datastore Viewer

How to upload your experiment to the google server

  1. Go to https://appengine.google.com/ and click Create Application
  2. Application Identifier - only you use it but you need to know it for later
  3. Application Title - this will appear as the label on the tab in the web browser of your experiment
  4. Edit the first line of app.yaml to match your Application Identifier
  5. In Google App Engine, click on Deploy and then enter the necessary credentials

How to upload a new version of your experiment

  1. change whatever you needed to change in the experiment
  2. Edit app.yaml to have a new version number (usually by adding one)
  3. In Google App Engine, click Deploy
  4. click Dashboard
  5. On the dashboard, click Versions (under Main in the left bar)
  6. Set your new version as Default

How to check on the data once deployed to the web

  1. Open the dashboard for your experiment (via Google App Engine)
  2. Click Datastore Viewer (under Data in the left bar)
  3. Enjoy

How to download data from the webpage:

enter this at the command line:

appcfg.py download_data --config_file=bulkloader.yaml --filename=<app_name>.csv --kind=DataObject --url=http://<app_name>.appspot.com/_ah/remote_api

Note: The local testing in Google App Engine currently doesn't support batch download

If you change the data being written:

  1. you'll have to re-create the download data file (bulkloader.yaml)
appcfg.py create_bulkloader_config --filename=bulkloader.yaml --url=http://<app_name>.appspot.com/_ah/remote_api

Then set the line in the new bulkloader.yaml connector: to connector: csv

Notes about the experiment code

How does the experiment code work?

Different sections of the experiment call each other in sequence. Currently the order is:

  1. collect demographics information
  2. provide instructions
  3. test instruction comprehension
  4. for each block within the experiment:
    - display training trials
    - display test trials
  5. display thank you message and feedback for MTurk users

Notes for modifying the experiment code

  • all locations in experiment.js where the slider is referenced are marked with a comment SLIDER comment.
  • all locations in experiment.js where between-subject conditions are referenced are marked with CONDITION comment.

About

Experiment code for psychology exps hosed on Google App Engine and Datastore

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 81.8%
  • R 9.7%
  • Python 7.1%
  • CSS 1.4%