Source code for autocti.dataset_1d.plot.dataset_1d_plotters

from typing import Callable, Optional

import autoarray.plot as aplt

from autoarray.plot.auto_labels import AutoLabels

from autocti.plot.abstract_plotters import Plotter
from autocti.dataset_1d.dataset_1d.dataset_1d import Dataset1D


[docs]class Dataset1DPlotter(Plotter): def __init__( self, dataset: Dataset1D, mat_plot_1d: aplt.MatPlot1D = aplt.MatPlot1D(), visuals_1d: aplt.Visuals1D = aplt.Visuals1D(), include_1d: aplt.Include1D = aplt.Include1D(), ): """ Plots the attributes of `Dataset1D` objects using the matplotlib method `line()` and many other matplotlib functions which customize the plot's appearance. The `mat_plot_1d` attribute wraps matplotlib function calls to make the figure. By default, the settings passed to every matplotlib function called are those specified in the `config/visualize/mat_wrap/*.ini` files, but a user can manually input values into `MatPlot1d` to customize the figure's appearance. Overlaid on the figure are visuals, contained in the `Visuals1D` object. Attributes may be extracted from the `Imaging` and plotted via the visuals object, if the corresponding entry is `True` in the `Include1D` object or the `config/visualize/include.ini` file. Parameters ---------- dataset The dataset 1d the plotter plots. mat_plot_1d Contains objects which wrap the matplotlib function calls that make 1D plots. visuals_1d Contains 1D visuals that can be overlaid on 1D plots. include_1d Specifies which attributes of the `ImagingCI` are extracted and plotted as visuals for 1D plots. """ super().__init__( dataset=dataset, mat_plot_1d=mat_plot_1d, include_1d=include_1d, visuals_1d=visuals_1d, ) def get_visuals_1d(self) -> aplt.Visuals1D: return self.visuals_1d @property def extract_region_from(self) -> Callable: return self.dataset.layout.extract_region_from
[docs] def figures_1d( self, region: Optional[str] = None, data: bool = False, data_logy: bool = False, noise_map: bool = False, signal_to_noise_map: bool = False, pre_cti_data: bool = False, ): """ Plots the individual attributes of the plotter's `Dataset1D` object in 1D. The API is such that every plottable attribute of the `Imaging` object is an input parameter of type bool of the function, which if switched to `True` means that it is plotted. If a `region` string is input, the 1D plots correspond to regions in 1D on the 1D dataset, which are binned up to produce a1D plot. For example, for the input `region=fpr`, this function extracts the FPR over each charge region and bins them such that the 1D plot shows the average FPR. The API is such that every plottable attribute of the `Dataset1D` object is an input parameter of type bool of the function, which if switched to `True` means that it is plotted. Parameters ---------- region The region on the 1D dataset where data is extracted and binned {fpr", "eper"} data Whether to make a 1D plot (via `plot`) of the image data extracted and binned over the region, with the noise-map values included as error bars. data_logy Whether to make a 1D plot (via `plot`) of the image data extracted and binned over the region, with the noise-map values included as error bars and the y-axis on a log10 scale. noise_map Whether to make a 1D plot (via `plot`) of the noise-map extracted and binned over the region. pre_cti_data Whether to make a 1D plot (via `plot`) of the pre-cti data extracted and binned over the region. signal_to_noise_map Whether to make a 1D plot (via `plot`) of the signal-to-noise map data extracted and binned over the region. """ suffix = f"_{region}" if region is not None else "" title_str = self.title_str_from(region=region) should_plot_zero = self.should_plot_zero_from(region=region) if data: y = self.extract_region_from(array=self.dataset.data, region=region) y_errors = self.extract_region_from( array=self.dataset.noise_map, region=region ) self.mat_plot_1d.plot_yx( y=y, x=range(len(y)), plot_axis_type_override="errorbar", y_errors=y_errors, visuals_1d=self.get_visuals_1d(), should_plot_zero=should_plot_zero, text_manual_dict=self.text_manual_dict_from(region=region), text_manual_dict_y=self.text_manual_dict_y_from(region=region), auto_labels=AutoLabels( title=f"Data 1D {title_str}", yunit="e-", filename=f"data{suffix}", ), ) if data_logy: y = self.extract_region_from(array=self.dataset.data, region=region) y_errors = self.extract_region_from( array=self.dataset.noise_map, region=region ) self.mat_plot_1d.plot_yx( y=y, x=range(len(y)), plot_axis_type_override="errorbar_logy", y_errors=y_errors, visuals_1d=self.get_visuals_1d(), text_manual_dict=self.text_manual_dict_from(region=region), text_manual_dict_y=self.text_manual_dict_y_from(region=region), auto_labels=AutoLabels( title=f"Data 1D {title_str} [log10]", yunit="e-", filename=f"data_logy{suffix}", ), ) if noise_map: y = self.extract_region_from(array=self.dataset.noise_map, region=region) self.mat_plot_1d.plot_yx( y=y, x=range(len(y)), visuals_1d=self.visuals_1d, auto_labels=AutoLabels( title=f"Noise Map {title_str}", yunit="e-", filename=f"noise_map{suffix}", ), ) if pre_cti_data: y = self.extract_region_from(array=self.dataset.pre_cti_data, region=region) self.mat_plot_1d.plot_yx( y=y, x=range(len(y)), visuals_1d=self.visuals_1d, auto_labels=AutoLabels( title=f"CI Pre CTI {title_str}", yunit="e-", filename=f"pre_cti_data{suffix}", ), ) if signal_to_noise_map: y = self.extract_region_from( array=self.dataset.signal_to_noise_map, region=region ) self.mat_plot_1d.plot_yx( y=y, x=range(len(y)), visuals_1d=self.visuals_1d, auto_labels=AutoLabels( title=f"Signal To Noise Map {title_str}", yunit="", filename=f"signal_to_noise_map{suffix}", ), )
[docs] def subplot( self, data: bool = False, data_logy: bool = False, noise_map=False, signal_to_noise_map=False, pre_cti_data=False, auto_filename="subplot_dataset", **kwargs, ): """ Plots the individual attributes of the plotter's `Dataset1D` object in 1D on a subplot. The API is such that every plottable attribute of the `Imaging` object is an input parameter of type bool of the function, which if switched to `True` means that it is included on the subplot. Parameters ---------- data Whether to make a 1D plot (via `plot`) of the image data extracted and binned over the region, with the noise-map values included as error bars. data_logy Whether to make a 1D plot (via `plot`) of the image data extracted and binned over the region, with the noise-map values included as error bars and the y-axis on a log10 scale. noise_map Whether to include a 1D plot (via `plot`) of the noise map. signal_to_noise_map Whether to include a 1D plot (via `plot`) of the signal-to-noise map. pre_cti_data Whether to include a 1D plot (via `plot`) of the pre-cti data. """ region = kwargs.get("region", None) suffix = f"_{region}" if region is not None else "" self._subplot_custom_plot( data=data, data_logy=data_logy, noise_map=noise_map, signal_to_noise_map=signal_to_noise_map, pre_cti_data=pre_cti_data, auto_labels=AutoLabels(filename=f"{auto_filename}{suffix}"), **kwargs, )
[docs] def subplot_dataset(self, region: Optional[str] = None): """ Standard subplot of the attributes of the plotter's `Dataset1D` object. """ self.subplot( region=region, data=True, noise_map=True, signal_to_noise_map=True, pre_cti_data=True, )