plot_params_2d

sedfitter.plot_params_2d(input_fits, parameter_x, parameter_y, output_dir=None, select_format=('N', 1), log_x=False, log_y=True, bounds=None, label_x=None, label_y=None, additional=None, plot_name=True, format='pdf', dpi=None)

Make histogram plots of parameters

Parameters:
input_fits : str or sedfitter.fit_info.FitInfo or iterable

This should be either a file containing the fit information, a sedfitter.fit_info.FitInfo instance, or an iterable containing sedfitter.fit_info.FitInfo instances.

parameter_x : str

The parameter to plot on the x-axis

parameter_y : str

The parameter to plot on the y-axis

output_dir : str, optional

If specified, plots are written to that directory

select_format : tuple, optional

Tuple specifying which fits should be plotted. See the documentation for a description of the tuple syntax.

log_x : bool, optional

Whether to plot the x-axis values in log space

log_y : bool, optional

Whether to plot the y-axis values in log space

label_x : str, optional

The x-axis label (if not specified, the parameter name is used)

label_y : str, optional

The y-axis label (if not specified, the parameter name is used)

additional : Table

A dictionary specifying additional parameters not listed in the parameter list for the models. Each item of the dictionary should itself be a dictionary giving the values for each model (where the key is the model name).

plot_name: bool, optional

Whether to show the source name on the plot(s).

format: str, optional

The file format to use for the plot, if output_dir is specified.

dpi : int, optional

The resolution of the figure to save