load_ascii

sherpa.astro.ui.load_ascii(id, filename=None, ncols=2, colkeys=None, dstype=<class 'sherpa.data.Data1D'>, sep=' ', comment='#')

Load an ASCII file as a data set.

The standard behavior is to create a single data set, but multiple data sets can be loaded with this command, as described in the sherpa.astro.datastack module.

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 read in. Selection of the relevant column depends on the I/O library in use (Crates or AstroPy).

  • ncols (int, optional) – The number of columns to read in (the first ncols columns in the file). The meaning of the columns is determined by the dstype parameter.

  • colkeys (array of str, optional) – An array of the column name to read in. The default is None.

  • sep (str, optional) – The separator character. The default is ' '.

  • comment (str, optional) – The comment character. The default is '#'.

  • dstype (optional) – The data class to use. The default is Data1D.

See also

load_ascii_with_errors

Load an ASCII file with asymmetric errors as a data set.

load_table

Load a FITS binary file as a data set.

load_image

Load an image as a data set.

set_data

Set a data set.

unpack_ascii

Unpack an ASCII file 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 filename parameter. If given two un-named arguments, then they are interpreted as the id and filename parameters, respectively. The remaining parameters are expected to be given as named arguments.

The column order for the different data types are as follows, where x indicates an independent axis and y the 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_ascii('sources.dat')

Read in the first three columns (the third column is taken to be the error on the dependent variable):

>>> load_ascii('sources.dat', ncols=3)

Read in from columns ‘RMID’ and ‘SUR_BRI’ into data set ‘prof’:

>>> load_ascii('prof', 'rprof.dat',
...            colkeys=['RMID', 'SUR_BRI'])

The first three columns are taken to be the two independent axes of a two-dimensional data set (x0 and x1) and the dependent value (y):

>>> load_ascii('fields.txt', ncols=3,
...            dstype=sherpa.astro.data.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 colkeys parameter, as shown above:

>>> load_ascii('prof',
...            'rprof.dat[cols rmid,sur_bri,sur_bri_err]',
...            ncols=3)