__init__.py 793 B

123456789101112131415161718192021222324252627282930
  1. # -*- coding: utf-8 -*-
  2. """
  3. Elephant is a package for the analysis of neurophysiology data, based on Neo.
  4. :copyright: Copyright 2014-2016 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. sta,
  19. conversion,
  20. neo_tools)
  21. try:
  22. from . import pandas_bridge
  23. from . import asset
  24. except ImportError:
  25. pass
  26. __version__ = "0.4.1"