contour_model¶
-
sherpa.astro.ui.
contour_model
(id=None, **kwargs)¶ Contour the values of the model, including any PSF.
Parameters: - id (int or str, optional) – The data set that provides the model. If not given then the default identifier is used, as returned by get_default_id.
- replot (bool, optional) – Set to
True
to use the values calculated by the last call to contour_model. The default isFalse
. - overcontour (bool, optional) – If
True
then add the data to an exsiting plot, otherwise create a new contour plot. The default isFalse
.
See also
get_model_contour()
- Return the data used by contour_model.
get_model_contour_prefs()
- Return the preferences for contour_model.
get_default_id()
- Return the default data set identifier.
contour()
- Create one or more plot types.
sherpa.astro.ui.set_coord()
- Set the coordinate system to use for image analysis.
set_psf()
- Add a PSF model to a data set.
Examples
Plot the model from the default data set:
>>> contour_model()
Compare the model without and with the PSF component, for the “img” data set:
>>> contour_source("img") >>> contour_model("img", overcontour=True)