Synopsis
Set the values of a column in a crate.
Syntax
set_colvals(crate, colname, values) set_colvals(crate, colnum, values)
Description
Argument | Description |
---|---|
crate | The table crate. |
colname | The column name (case insensitive). |
colnum | The column number, where the first column is numbered 0. |
values | An array of values; both Python lists or NumPy arrays can be used. |
The set_colvals command sets the values of the specified column within the crate. To create an entirely new column, use the add_col command.
Only the crate is changed; the input file is unaffected. The write_file command can be used to save the modified crate to a file.
Examples
Example 1
>>> cr = read_file("evt2.fits") >>> energy = copy_colvals(cr, "energy") >>> nenergy = energy + 2.3 * np.random.random_sample(energy.shape) >>> set_colvals(cr, "energy", nenergy) >>> write_file(cr, "energy_evt2.fits")
Here we add on a random number between 0 and 2.3 (uniformly distributed) to each energy value. The new values are written out in the file energy_evt.fits.
More information on random-number support in NumPy can be found at http://docs.scipy.org/doc/numpy/reference/routines.random.html.
Example 2
>>> cr = read_file("table.fits") >>> nrows = get_number_rows(cr) >>> set_colvals(cr, 1, np.arange(nrows)+1) >>> write_file(cr, "rowct.fits")
The second column in the crate (counting from 0) is edited to contain the row number value (starting count at 1). The edited crate is written out to the file rowct.fits.
Bugs
See the bug pages on the CIAO website for an up-to-date listing of known bugs.
Refer to the CIAO bug pages for an up-to-date listing of known issues.
See Also
- contrib
- add_colvals
- crates
- add_col, col_exists, copy_colvals, delete_col, get_col, get_col_names, get_colvals, get_number_cols, is_virtual, set_key, set_keyval, set_piximgvals