Source code for beast.plotting.plot_toothpick_details

import matplotlib.pyplot as plt

from beast.tools import beast_settings
from beast.observationmodel.noisemodel import toothpick
from beast.plotting.beastplotlib import set_params

__all__ = ["plot_toothpick_details"]


[docs]def plot_toothpick_details(asts_filename, settings_filename, savefig=False): """ Plot the details of the toothpick noisemodel creation for each filter. These plots show the individual AST results as points as (flux_in - flux_out)/flux_in. In addition, the binned values of these points are plotted giving the bias term in the observation model. Error bars around the binned bias values give the binned sigma term of the observation model. Finally, as a separate column of plots the binned completeness in each filter is plotted. Parameters ---------- asts_filename : str filename with the AST results settings_filename : str filename with the SED grid (used just for the filter information) savefig : str (default=False) to save the figure, set this to the file extension (e.g., 'png', 'pdf') """ settings = beast_settings.beast_settings(settings_filename) # read in AST results model = toothpick.MultiFilterASTs(asts_filename, settings.filters) # set the column mappings as the external file is BAND_VEGA or BAND_IN model.set_data_mappings(upcase=True, in_pair=("in", "in"), out_pair=("out", "rate")) # compute binned biases, uncertainties, and completeness as a function of band flux ast_nonrecovered_ratio = 2.0 model.fit_bins( nbins=50, ast_nonrecovered_ratio=ast_nonrecovered_ratio, ) nfilters = len(settings.filters) figsize_y = nfilters * 3 fig, ax = plt.subplots(nrows=nfilters, ncols=2, figsize=(14, figsize_y), sharex=True) set_params() for i, cfilter in enumerate(settings.filters): mag_in = model.data[model.filter_aliases[cfilter + "_in"]] flux_out = model.data[model.filter_aliases[cfilter + "_out"]] flux_in = (10 ** (-0.4 * mag_in)) * model.vega_flux[i] flux_out *= model.vega_flux[i] gvals = flux_out != 0.0 ax[i, 0].plot( flux_in[gvals], flux_out[gvals] / flux_in[gvals], "ko", alpha=0.1, markersize=2, ) # not all bins are filled with good data ngbins = model._nasts[i] ax[i, 0].plot( model._fluxes[0:ngbins, i], 1. + model._biases[0:ngbins, i] / model._fluxes[0:ngbins, i], "b-", ) ax[i, 0].errorbar( model._fluxes[0:ngbins, i], 1. + model._biases[0:ngbins, i] / model._fluxes[0:ngbins, i], yerr=model._sigmas[0:ngbins, i] / model._fluxes[0:ngbins, i], fmt="bo", markersize=2, alpha=0.5, ) if ast_nonrecovered_ratio is not None: ax[i, 0].axhline( ast_nonrecovered_ratio, linestyle="--", alpha=0.25, color="k" ) ax[i, 0].set_ylim(-10, 2.5) ax[i, 0].set_ylabel(r"$F_o/F_i$") ax[i, 1].plot( model._fluxes[0:ngbins, i], model._compls[0:ngbins, i], "b-", ) ax[i, 1].yaxis.tick_right() ax[i, 1].yaxis.set_label_position("right") ax[i, 1].set_ylim(0, 1) ax[i, 1].set_xscale("log") sfilt = cfilter.split("_")[-1] ax[i, 1].set_ylabel(f"C({sfilt})") ax[nfilters - 1, 0].set_xlabel(r"$F_i$") ax[nfilters - 1, 1].set_xlabel(r"$F_i$") # add in the zero line # do after all the data has been plotted to get the full x range pxrange = ax[0, 0].get_xlim() for i, cfilter in enumerate(settings.filters): ax[i, 0].plot(pxrange, [1.0, 1.0], "k--", alpha=0.5) # figname basename = asts_filename.replace(".fits", "_plot") fig.tight_layout() # save or show fig if savefig: fig.savefig("{}.{}".format(basename, savefig)) else: plt.show()