-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy path__init__.py
More file actions
76 lines (71 loc) · 2.7 KB
/
Copy path__init__.py
File metadata and controls
76 lines (71 loc) · 2.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
from autofit.non_linear.plot import (
corner_cornerpy,
corner_anesthetic,
subplot_parameters,
log_likelihood_vs_iteration,
output_figure,
)
# ---------------------------------------------------------------------------
# Standalone plot helpers (autoarray)
# ---------------------------------------------------------------------------
from autogalaxy.util.plot_utils import plot_array, plot_grid, fits_array
from autoarray.dataset.plot.imaging_plots import (
subplot_imaging_dataset,
subplot_imaging_dataset_list,
fits_imaging,
)
from autoarray.dataset.plot.interferometer_plots import (
subplot_interferometer_dirty_images,
fits_interferometer,
)
# ---------------------------------------------------------------------------
# Galaxy / profile subplots (autogalaxy)
# ---------------------------------------------------------------------------
from autogalaxy.plot import (
subplot_galaxy_light_profiles,
subplot_galaxy_mass_profiles,
subplot_basis_image,
subplot_galaxies,
subplot_galaxy_images,
subplot_adapt_images,
subplot_fit_imaging_of_galaxy,
subplot_fit_dirty_images,
subplot_fit_real_space,
subplot_fit_quantity,
subplot_fit_ellipse,
subplot_ellipse_errors,
)
# ---------------------------------------------------------------------------
# subplot_* public API
# ---------------------------------------------------------------------------
from autolens.lens.plot.tracer_plots import (
subplot_tracer,
subplot_lensed_images,
subplot_galaxies_images,
)
from autolens.imaging.plot.fit_imaging_plots import (
subplot_fit as subplot_fit_imaging,
subplot_fit_log10 as subplot_fit_imaging_log10,
subplot_fit_x1_plane as subplot_fit_imaging_x1_plane,
subplot_fit_log10_x1_plane as subplot_fit_imaging_log10_x1_plane,
subplot_of_planes as subplot_fit_imaging_of_planes,
subplot_tracer_from_fit as subplot_fit_imaging_tracer,
subplot_fit_combined,
subplot_fit_combined_log10,
)
from autolens.interferometer.plot.fit_interferometer_plots import (
subplot_fit as subplot_fit_interferometer,
subplot_fit_real_space as subplot_fit_interferometer_real_space,
subplot_tracer_from_fit as subplot_fit_interferometer_tracer,
)
from autolens.point.plot.fit_point_plots import subplot_fit as subplot_fit_point
from autolens.point.plot.point_dataset_plots import subplot_dataset as subplot_point_dataset
from autolens.lens.plot.subhalo_plots import (
subplot_detection_imaging,
subplot_detection_fits,
)
from autolens.lens.plot.sensitivity_plots import (
subplot_tracer_images as subplot_sensitivity_tracer_images,
subplot_sensitivity,
subplot_figures_of_merit_grid as subplot_sensitivity_figures_of_merit,
)