__init__.py 744 B

12345678910111213141516
  1. """Individual analyses.
  2. Importing this package runs each module's ``@register`` decorator, which is what
  3. populates :data:`analysis.registry.ANALYSES`. Import order is run order, so the
  4. cheap summaries come first and the heavier noise analyses last.
  5. To add an analysis: create a module here with a ``@register``-decorated function
  6. taking an :class:`~analysis.context.AnalysisContext`, then import it below.
  7. """
  8. from analysis.plots import model_report # noqa: F401
  9. from analysis.plots import ensemble_size # noqa: F401
  10. from analysis.plots import bootstrap_ci # noqa: F401
  11. from analysis.plots import coverage # noqa: F401
  12. from analysis.plots import noise_performance # noqa: F401
  13. from analysis.plots import noise_correlation # noqa: F401