show_bkg_model

sherpa.astro.ui.show_bkg_model(id=None, bkg_id=None, outfile=None, clobber=False)

Display the background model expression used to fit a data set.

This displays the model used to the the background data set, that is, the expression set by set_bkg_model or set_bkg_source combined with any instrumental responses, together with the parameter values for the model. The show_bkg_source function displays just the background model, without the instrument components (if any).

Parameters:
  • id (int or str, optional) – The data set. If not given then all background expressions are displayed.
  • bkg_id (int or str, optional) – The background component to display. The default is all components.
  • outfile (str, optional) – If not given the results are displayed to the screen, otherwise it is taken to be the name of the file to write the results to.
  • clobber (bool, optional) – If outfile is not None, then this flag controls whether an existing file can be overwritten (True) or if it raises an exception (False, the default setting).
Raises:

sherpa.utils.err.IOErr – If outfile already exists and clobber is False.

See also

list_model_ids()
List of all the data sets with a source expression.
set_bkg_model()
Set the background model expression for a data set.
show_all()
Report the current state of the Sherpa session.
show_model()
Display the model expression used to fit a data set.
show_bkg_source()
Display the background model expression for a data set.

Notes

When outfile is None, the text is displayed via an external program to support paging of the information. The program used is determined by the PAGER environment variable. If PAGER is not found then ‘/usr/bin/more’ is used.