.. -*- mode: rst; fill-column: 78; indent-tabs-mode: nil -*-
.. vi: set ft=rst sts=4 ts=4 sw=4 et tw=79:
  ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ###
  #
  #   See COPYING file distributed along with the PyMVPA package for the
  #   copyright and license terms.
  #
  ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ###

.. index:: Tutorial
.. _chap_tutorial:

*******************************
Tutorial Introduction to PyMVPA
*******************************

This chapter offers a tutorial introduction into PyMVPA. In the tutorial we are
going to take a look at all major parts of PyMVPA, introduce the most important
concepts, and explore particular functionality in real-life analysis examples.

Please note that this tutorial is only concerned with aspects directly related
to PyMVPA.  It does **not** teach basic Python_ programming. If you are new to
Python, it is recommend that you take a look at the
:ref:`chap_tutorial_prerequisites` for information about what you should know
and how to obtain that knowledge.

Throughout the tutorial there will be little exercises with tasks that are
meant to deepen the understanding of a particular problem or to train
important skills. However, even without a dedicated exercise the reader is
advised to run the tutorial code interactively and explore code snippets
beyond what is touched by the tutorial. Typically, only the most important
aspects will be mentioned and each building block in PyMVPA can be used in
more flexible ways than what is shown. Enjoy the ride.

Through the course of the tutorial we would analyze :ref:`real BOLD fMRI data
<datadb_tutorial_data>`. Therefore, to be able to run the code in this
tutorial, you need to download the :ref:`corresponding data from the PyMVPA
website <datadb_tutorial_data>`. Once downloaded, extract the tarball, open a
terminal, go into the directory with the extracted tarball content and run:
:command:`./start_tutorial_session.sh`.

If you want to prevent yourself from re-typing all code snippets into the
terminal window, you might want to investigate IPython's ``%cpaste``
command.

.. _Python: http://www.python.org

.. toctree::
   :maxdepth: 2

   tutorial_prerequisites
   tutorial_start
   tutorial_datasets
   tutorial_mappers
   tutorial_classifiers
   tutorial_searchlight
   tutorial_sensitivity
   tutorial_eventrelated
   tutorial_significance
