{% extends "otree/BaseAdminRegular.html" %} {% block head_title %}Export data{% endblock %} {% block title %}Export data{% endblock %} {% block content %} {% if db_is_empty %}

No sessions have taken place yet.

{% else %}

Citation requirement

If you publish research conducted using oTree, you are required by the oTree license to cite this paper.

Citation:

Chen, D.L., Schonger, M., Wickens, C., 2016. oTree - An open-source platform for laboratory, online and field experiments. Journal of Behavioral and Experimental Finance, vol 9: 88-97


All apps (wide format)

Data for all apps in one file. There is one row per participant; different apps and rounds are stacked horizontally. This format is useful if you want to correlate participants' behavior in one app with their behavior in another app.

{% for row in wide_table %} {% endfor %}
{{ row.name }} CSV Excel CSV
Show API URLs
CSV {{ row.csv_url }}
Excel CSV {{ row.excel_url }}
One session only {{ row.example_session_url }}

Per-app data

One row per player in the given app. If there are multiple rounds, there will be multiple rows for the same participant.

{% for row in app_table %} {% endfor %}
{{ row.name }} CSV Excel CSV
Show API URLs
CSV {{ row.csv_url }}
Excel CSV {{ row.excel_url }}
One session only {{ row.example_session_url }}

Custom exports

{% if custom_export_table %} {% for row in custom_export_table %} {% endfor %}
{{ row.name }} CSV Excel CSV
Show API URLs
CSV {{ row.csv_url }}
Excel CSV {{ row.excel_url }}
One session only {{ row.example_session_url }}
{% else %}

No custom exports found.

{% endif %}

Other exports

{% for row in other_exports %} {% endfor %}
{{ row.name }} CSV Excel CSV
Show API URLs {% if row.example_session_url %} {% endif %}
CSV {{ row.api_csv_url }}
Excel CSV {{ row.api_excel_url }}
One session only {{ row.example_session_url }}
{% endif %}

Notes

{% endblock %} {% block scripts %} {% endblock %}