get_data_contour
- sherpa.astro.ui.get_data_contour(id: IdType | None = None, recalc=True)
Return the data used by contour_data.
- Parameters:
id (int, str, or None, optional) – The data set. If not given then the default identifier is used, as returned by
get_default_id.recalc (bool, optional) – If
Falsethen the results from the last call tocontour_data(orget_data_contour) are returned, otherwise the data is re-generated.
- Returns:
resid_data – The
yattribute contains the residual values and thex0andx1arrays contain the corresponding coordinate values, as one-dimensional arrays.- Return type:
a
sherpa.plot.DataContourinstance- Raises:
sherpa.utils.err.DataErr – If the data set is not 2D.
sherpa.utils.err.IdentifierErr – If the data set does not exist or a source expression has not been set.
See also
get_data_imageReturn the data used by image_data.
contour_dataContour the values of an image data set.
image_dataDisplay a data set in the image viewer.
Examples
Return the data for the default data set:
>>> dinfo = get_data_contour()