autocti.plot.FitDataset1DPlotter#
- class autocti.plot.FitDataset1DPlotter(fit: ~autocti.dataset_1d.fit.FitDataset1D, mat_plot_1d: ~autoarray.plot.mat_plot.one_d.MatPlot1D = <autoarray.plot.mat_plot.one_d.MatPlot1D object>, visuals_1d: ~autoarray.plot.visuals.one_d.Visuals1D = <autoarray.plot.visuals.one_d.Visuals1D object>, include_1d: ~autoarray.plot.include.one_d.Include1D = <autoarray.plot.include.one_d.Include1D object>)[source]#
Bases:
PlotterPlots the attributes of FitDataset1D 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:
fit – The fit to the dataset of a 1D dataset 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.
Methods
close_subplot_figurePlots the individual attributes of the plotter's FitDataset1D object in 1D.
get_subplot_figsizeGet the size of a sub plotter in (total_y_pixels, total_x_pixels), based on the number of subplots that are going to be plotted.
get_visuals_1dopen_subplot_figureSetup a figure for plotting an image.
set_filenameset_formatset_mat_plot_1d_for_multi_plotset_mat_plots_for_subplotset_titlePlots the individual attributes of the plotter's FitDataset1D object in 1D on a subplot.
Standard subplot of the attributes of the plotter's FitDataset1D object.
subplot_of_plotters_figuretext_manual_dict_fromtext_manual_dict_y_fromtitle_str_2d_fromtitle_str_fromAttributes
extract_region_fromget_1dget_2dis_for_subplot- figures_1d(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, post_cti_data: bool = False, residual_map: bool = False, residual_map_logy: bool = False, normalized_residual_map: bool = False, chi_squared_map: bool = False)[source]#
Plots the individual attributes of the plotter’s FitDataset1D object in 1D.
The API is such that every plottable attribute of the FitDataset1D 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.
signal_to_noise_map – Whether to make a 1D plot (via plot) of the signal-to-noise map.
pre_cti_data – Whether to make a 1D plot (via plot) of the pre-cti data.
post_cti_data – Whether to make a 1D plot (via plot) of the post-cti data.
residual_map – Whether to make a 1D plot (via plot) of the residual map, with the noise-map values included as error bars.
residual_map_logy – Whether to make a 1D plot (via plot) of the residual map, with the noise-map values included as error bars and the y-axis on a log10 scale.
normalized_residual_map – Whether to make a 1D plot (via plot) of the normalized residual map.
chi_squared_map – Whether to make a 1D plot (via plot) of the chi-squared map.
- subplot(data: bool = False, noise_map: bool = False, signal_to_noise_map: bool = False, pre_cti_data: bool = False, post_cti_data: bool = False, residual_map: bool = False, normalized_residual_map: bool = False, chi_squared_map: bool = False, auto_filename='subplot_fit', **kwargs)[source]#
Plots the individual attributes of the plotter’s FitDataset1D object in 1D on a subplot.
The API is such that every plottable attribute of the FitDataset1D 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.
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.
post_cti_data – Whether to include a 1D plot (via plot) of the post-cti data.
residual_map – Whether to include a 1D plot (via plot) of the residual map.
normalized_residual_map – Whether to include a 1D plot (via plot) of the normalized residual map.
chi_squared_map – Whether to include a 1D plot (via plot) of the chi-squared map.