tutorials.rst 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. *********
  2. Tutorials
  3. *********
  4. These tutorials provide narrative explanations, sample code, and expected
  5. output for some of the neurophysiological analyses in Elephant. You can browse
  6. the tutorials or launch them in mybinder to change and interact with the code.
  7. Introductory
  8. ------------
  9. * Statistics of spike trains.
  10. Covers ``statistics`` module with an introduction to
  11. `Neo <https://neo.readthedocs.io/en/stable/>`_ input-output data types like
  12. `SpikeTrain`, `AnalogSignal`, etc.
  13. :doc:`View the notebook <../tutorials/statistics>` or run interactively:
  14. .. image:: https://mybinder.org/badge.svg
  15. :target: https://mybinder.org/v2/gh/NeuralEnsemble/elephant/master?filepath=doc/tutorials/statistics.ipynb
  16. Advanced
  17. --------
  18. * Unitary Event Analysis.
  19. The analysis detects coordinated spiking activity that occurs significantly
  20. more often than predicted by the firing rates of neurons alone. It's superior
  21. to simple statistics.
  22. :doc:`View the notebook <../tutorials/unitary_event_analysis>` or run
  23. interactively:
  24. .. image:: https://mybinder.org/badge.svg
  25. :target: https://mybinder.org/v2/gh/NeuralEnsemble/elephant/master?filepath=doc/tutorials/unitary_event_analysis.ipynb
  26. * Gaussian Process Factor Analysis (GPFA).
  27. GPFA is a dimensionality reduction method for neural trajectory visualization
  28. of parallel spike trains.
  29. :doc:`View the notebook <../tutorials/gpfa>` or run interactively:
  30. .. image:: https://mybinder.org/badge.svg
  31. :target: https://mybinder.org/v2/gh/NeuralEnsemble/elephant/master?filepath=doc/tutorials/gpfa.ipynb
  32. * Analysis of Sequences of Synchronous EvenTs (ASSET)
  33. :doc:`View the notebook <../tutorials/asset>` or run interactively:
  34. .. image:: https://mybinder.org/badge.svg
  35. :target: https://mybinder.org/v2/gh/NeuralEnsemble/elephant/master?filepath=doc/tutorials/asset.ipynb
  36. Additional
  37. ----------
  38. * Parallel
  39. ``elephant.parallel`` module provides a simple interface to parallelize
  40. multiple calls to any user-specified function.
  41. :doc:`View the notebook <../tutorials/parallel>` or run interactively:
  42. .. image:: https://mybinder.org/badge.svg
  43. :target: https://mybinder.org/v2/gh/NeuralEnsemble/elephant/master?filepath=doc/tutorials/parallel.ipynb