save_quality
- sherpa.astro.ui.save_quality(id, filename=None, bkg_id: IdType | None = None, ascii=True, clobber=False) None
Save the quality array to a file.
The output is a two-column file, containing the channel and quality columns from the data set.
- Parameters:
id (int or str, optional) – The identifier for the data set to use. If not given then the default identifier is used, as returned by
get_default_id.filename (str) – The name of the file to write the array to. The format is determined by the
asciiargument.bkg_id (int, str, or None, optional) – Set if the quality array should be taken from the background associated with the data set.
ascii (bool, optional) – If
Falsethen the data is written as a FITS format binary table. The default isTrue. The exact format of the output file depends on the I/O library in use (Crates or AstroPy).clobber (bool, optional) – If
outfileis notNone, 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
filenamealready exists andclobberisFalse.
See also
get_qualityReturn the quality array for a PHA data set.
load_qualityLoad the quality array from a file and add to a PHA data set.
set_qualityApply a set of quality flags to a PHA data set.
Notes
The function does not follow the normal Python standards for parameter use, since it is designed for easy interactive use. When called with a single un-named argument, it is taken to be the
filenameparameter. If given two un-named arguments, then they are interpreted as theidandfilenameparameters, respectively. The remaining parameters are expected to be given as named arguments.The column names are ‘CHANNEL’ and ‘QUALITY’.
Examples
Save the channel and quality columns from the default data set to the file ‘quality.dat’ as an ASCII file:
>>> save_quality('quality.dat')
Over-write the ‘qual.fits’ file, if it exists, and write out the quality array from the ‘jet’ data set, as a FITS format file:
>>> save_quality('jet', 'qual.fits', ascii=False, clobber=True)