load_table
- sherpa.astro.ui.load_table(id, filename=None, ncols=2, colkeys=None, dstype=<class 'sherpa.data.Data1D'>) None
Load a FITS binary file as a 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 – Identify the file to read: a file name, or a data structure representing the data to use, as used by the I/O backend in use by Sherpa: a
TABLECratefor crates, as used by CIAO, or a list of AstroPy HDU objects.ncols (int, optional) – The number of columns to read in (the first
ncolscolumns in the file). The meaning of the columns is determined by thedstypeparameter.colkeys (array of str, optional) – An array of the column name to read in. The default is
None.dstype (optional) – The data class to use. The default is
Data1D.
See also
load_arraysCreate a data set from array values.
load_asciiLoad an ASCII file as a data set.
load_imageLoad an image as a data set.
set_dataSet a data set.
unpack_tableUnpack a FITS binary table into a data structure.
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 order for the different data types are as follows, where
xindicates an independent axis andythe dependent axis:Identifier
Required Fields
Optional Fields
Data1D
x, y
statistical error, systematic error
Data1DInt
xlo, xhi, y
statistical error, systematic error
Data2D
x0, x1, y
shape, statistical error, systematic error
Data2DInt
x0lo, x1lo, x0hi, x1hi, y
shape, statistical error, systematic error
Examples
Read in the first two columns of the file, as the independent (X) and dependent (Y) columns of the default data set:
>>> load_table('sources.fits')
Read in the first three columns (the third column is taken to be the error on the dependent variable):
>>> load_table('sources.fits', ncols=3)
Read in from columns ‘RMID’ and ‘SUR_BRI’ into data set ‘prof’:
>>> load_table('prof', 'rprof.fits', ... colkeys=['RMID', 'SUR_BRI'])
The first three columns are taken to be the two independent axes of a two-dimensional data set (
x0andx1) and the dependent value (y):>>> load_table('fields.fits', ncols=3, ... dstype=Data2D)
When using the Crates I/O library, the file name can include CIAO Data Model syntax, such as column selection. This can also be done using the
colkeysparameter, as shown above:>>> load_table('prof', ... 'rprof.fits[cols rmid,sur_bri,sur_bri_err]', ... ncols=3)
Read in a data set using Crates:
>>> cr = pycrates.read_file('table.fits') >>> load_table(cr)
Read in a data set using AstroPy:
>>> hdus = astropy.io.fits.open('table.fits') >>> load_table(hdus)