__init__.py 925 B

12345678910111213141516171819202122232425262728293031323334
  1. # -*- coding: utf-8 -*-
  2. """
  3. Elephant is a package for the analysis of neurophysiology data, based on Neo.
  4. :copyright: Copyright 2014-2018 by the Elephant team, see AUTHORS.txt.
  5. :license: Modified BSD, see LICENSE.txt for details.
  6. """
  7. from . import (statistics,
  8. spike_train_generation,
  9. spike_train_correlation,
  10. unitary_event_analysis,
  11. cubic,
  12. spectral,
  13. kernels,
  14. spike_train_dissimilarity,
  15. spike_train_surrogates,
  16. signal_processing,
  17. current_source_density,
  18. change_point_detection,
  19. phase_analysis,
  20. sta,
  21. conversion,
  22. neo_tools,
  23. spade,
  24. cell_assembly_detection)
  25. try:
  26. from . import pandas_bridge
  27. from . import asset
  28. except ImportError:
  29. pass
  30. __version__ = "0.6.0"