save_resid
- sherpa.ui.save_resid(id, filename=None, clobber=False, sep=' ', comment='#', linebreak='\n', format='%g') None
Save the residuals (data-model) to a file.
- Parameters:
- id
intorstr,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.
- clobberbool,
optional If
filenameis notNone, then this flag controls whether an existing file can be overwritten (True) or if it raises an exception (False, the default setting).- sep
str,optional The separator character. The default is
' '.- comment
str,optional The comment character. The default is
'#'.- linebreak
str,optional Indicate a new line. The default is
'\n'.- format
str,optional The format used to write out the numeric values. The default is
'%g%'.
- id
- Raises:
sherpa.utils.err.IdentifierErrIf no model has been set for this data set.
sherpa.utils.err.IOErrIf
filenamealready exists andclobberisFalse.
See also
save_dataSave the data to a file.
save_delchiSave the ratio of residuals (data-model) to error to a file.
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 output file contains the columns
XandRESID. The residuals array respects any filter setting for the data set.Examples
Write the residuals to the file “resid.dat”:
>>> save_resid('resid.dat')
Write the residuals from the data set ‘jet’ to the file “resid.dat”:
>>> save_resid('jet', "resid.dat", clobber=True)