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