| AHELP for CIAO 4.5 Sherpa v1 | save_error |
Context: saving |
Synopsis
Save total errors to a FITS table or ASCII file
Syntax
save_error( [id=1], filename, [bkg_id=1,ascii=False,clobber=False] )
Description
The save_error command saves the array of total errors associated with the counts in a data set to a column in a FITS table file or column-based ASCII file, by data set id. The total errors are computed by adding the statistical and systematic errors in quadrature; they may be viewed with the get_error command.
- id - the id of the data set to use; if not given, uses the default data set id (id=1 by default, see "ahelp get_default_id")
- filename - name of outfile
- bkd_id - the id of the background data set to use (e.g., bkg_id=1 represents the first background data set loaded in association with the source data set specified in the 'id' argument)
- ascii - outfile format specification; True to save outfile in ASCII format, False for FITS, default=False
- clobber - clobber outfile; default=False (do not clobber if file exists)
Example 1
sherpa> save_error("tot_error.fits")The save_error function can be called with just a filename, in which case all the default arguments will be used. In this example, the total error array associated with the counts in data set 1 is written to the FITS table file 'tot_error.fits'.
ciao% dmlist tot_error.fits blocks
--------------------------------------------------------------------------------
Dataset: tot_error.fits
--------------------------------------------------------------------------------
Block Name Type Dimensions
--------------------------------------------------------------------------------
Block 1: PRIMARY Null
Block 2: TABLE Table 2 cols x 46 rows
ciao% dmlist tot_error.fits data
--------------------------------------------------------------------------------
Data for Table Block TABLE
--------------------------------------------------------------------------------
ROW X ERR
1 0.00146000005770 5.2130748866
2 0.24819999933243 4.9686269666
3 0.30660000443459 5.0926763859
4 0.46720001101494 4.9686269666
5 0.56940001249313 5.0926763859
6 0.64240002632141 4.9686269666
7 0.70080000162125 5.3301270189
8 0.74459999799728 5.3301270189
9 0.78839999437332 4.9686269666
.
.
.
[rest of output omitted]
Example 2
sherpa> save_error(2, "tot_error.txt", ascii=True)
Here, the optional 'ascii' argument is set to True in order to produce an outfile in ASCII format (overriding the default setting ascii=False). The total error array associated with the counts in data set 2 is written to the text file 'tot_error.txt'.
Example 3
sherpa> save_error(2,"tot_error_bkg.fits", bkg_id=1, clobber=True)
The total error array associated with the first background data set loaded for source data set 2 is written to FITS file tot_error_bkg.fits (note the 'ascii' parameter default is False).
See Also
- contrib
- save_chart_spectrum
- data
- copy_data, dataspace1d, dataspace2d, delete_data, fake, get_axes, get_bkg_plot, get_counts, get_data, get_data_plot, get_dep, get_dims, get_error, get_quality, get_specresp, get_staterror, get_syserror, group, load_arf, load_arrays, load_ascii, load_bkg, load_bkg_arf, load_bkg_rmf, load_data, load_grouping, load_image, load_multi_arfs, load_multi_rmfs, load_pha, load_quality, load_rmf, load_staterror, load_syserror, load_table, pack_image, pack_pha, pack_table, set_data, set_quality, ungroup, unpack_arf, unpack_arrays, unpack_ascii, unpack_bkg, unpack_data, unpack_image, unpack_pha, unpack_rmf, unpack_table
- filtering
- get_filter, load_filter, set_filter
- info
- get_default_id, list_bkg_ids, list_data_ids, list_response_ids
- modeling
- add_model, add_user_pars, clean, load_table_model, load_template_model, load_user_model, save_model, save_source
- plotting
- plot_data, set_xlinear, set_xlog, set_ylinear, set_ylog
- saving
- restore, save, save_all, save_arrays, save_data, save_delchi, save_filter, save_grouping, save_image, save_pha, save_quality, save_resid, save_staterror, save_syserror, save_table, script
- statistics
- load_user_stat
- utilities
- calc_data_sum, calc_data_sum2d, calc_ftest, calc_kcorr, calc_mlr, calc_model_sum2d, calc_source_sum2d, get_rate
- visualization
- contour, contour_data, contour_ratio, get_ratio, get_resid, histogram1d, histogram2d, image_data, rebin

![[Sherpa Logo]](../imgs/sherpa_logo_navbar.gif)