Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions autolens/plot/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
from autofit.non_linear.plot.nest_plotters import NestPlotter
from autofit.non_linear.plot.mcmc_plotters import MCMCPlotter
from autofit.non_linear.plot.mle_plotters import MLEPlotter
from autofit.non_linear.plot import (
corner_cornerpy,
corner_anesthetic,
subplot_parameters,
log_likelihood_vs_iteration,
output_figure,
)

# ---------------------------------------------------------------------------
# Standalone plot helpers (autoarray)
Expand Down
18 changes: 8 additions & 10 deletions docs/api/plot.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,22 +83,20 @@ Create figures and subplots showing quantities of standard **PyAutoLens** object
subplot_sensitivity
subplot_sensitivity_figures_of_merit

Non-linear Search Plotters [aplt]
---------------------------------
Non-linear Search Plot Functions [aplt]
---------------------------------------

Create figures and subplots of non-linear search specific visualization of every search algorithm supported
by **PyAutoGalaxy**.
Module-level functions for visualizing non-linear search results.

.. currentmodule:: autogalaxy.plot
.. currentmodule:: autofit.plot

.. autosummary::
:toctree: _autosummary
:template: custom-class-template.rst
:recursive:

NestPlotter
MCMCPlotter
MLEPlotter
corner_cornerpy
corner_anesthetic
subplot_parameters
log_likelihood_vs_iteration

Plot Customization [aplt]
-------------------------
Expand Down
Loading