Create a contour plot of the fit and residuals
contour_fit_resid([id,] [replot=False,] [overcontour=False]])
The contour_fit_resid command creates a contour plot of the fit to
2D data and the residuals.
To plot other contour components at the same time (e.g.
fit, source, and residuals), use the contour command
("ahelp contour")
.
-
id - the id of the dataset to use; if not given, uses the default dataset id (id=1 by default, see "ahelp get_default_id")
-
replot - should the cached arrays be used in the plot?
False (default)=do the calculation, True=redisplay the
existing values
-
overcontour - overplot the contour?
default=False
(clear the window before plotting)
The plot is displayed in a ChIPS plotting window. If there is
no plotting window open, one is created. If a plotting window
exists, the overcontour parameter value determines whether the
new plot is overlaid on any existing plots in the window or if
the window is cleared before the plot is drawn.
ChIPS commands may be used within Sherpa to modify plot
characteristics and create hardcopies; refer to the ChIPS website for
information.
sherpa> contour_fit_resid()
Create a contour plot of the fit and residuals for the
default dataset.
sherpa> contour_fit_resid("src", overcontour=True)
Make a contour plot of the fit and residuals for dataset
"src", overplotting if there is an existing ChIPS window.
|