group
- sherpa.astro.ui.group(id: IdType | None = None, bkg_id: IdType | None = None) None
Turn on the grouping for a PHA data set.
A PHA data set can be grouped either because it contains grouping information, which is automatically applied when the data is read in with
load_phaorload_data, or because thegroupset of routines has been used to dynamically re-group the data. Theungroupfunction removes this grouping (however it was created). Thegroupfunction re-applies this grouping. The grouping scheme can be changed dynamically, using thegroup_xxxseries of routines.Changed in version 4.15.1: The filter is now reported, noting any changes the new grouping scheme has made.
- Parameters:
id (int, str, or None, optional) – The identifier for the data set to use. If not given then the default identifier is used, as returned by
get_default_id.bkg_id (int, str, or None, optional) – Set to group the background associated with the data set.
- Raises:
sherpa.utils.err.ArgumentErr – If the data set does not contain a PHA data set.
See also
fitFit one or more data sets.
group_adaptAdaptively group to a minimum number of counts.
group_adapt_snrAdaptively group to a minimum signal-to-noise ratio.
group_binsGroup into a fixed number of bins.
group_countsGroup into a minimum number of counts per bin.
group_snrGroup into a minimum signal-to-noise ratio.
group_widthGroup into a fixed bin width.
set_groupingApply a set of grouping flags to a PHA data set.
set_qualityApply a set of quality flags to a PHA data set.
ungroupTurn off the grouping for a PHA data set.
Notes
PHA data is often grouped to improve the signal to noise of the data, by decreasing the number of bins, so that a chi-square statistic can be used when fitting the data. After calling
group, anything that uses the data set - such as a plot, fit, or error analysis - will use the grouped data values. Models should be re-fit ifgroupis called; the increase in the signal of the bins may mean that a chi-square statistic can now be used.The grouping is implemented by separate arrays to the main data - the information is stored in the
groupingandqualityarrays of the PHA data set - so that a data set can be grouped and ungrouped many times, without losing information. Thegroupcommand does not create this information; this is either created by modifying the PHA file before it is read in, or by using thegroup_xxxroutines once the data has been loaded.The
groupedfield of a PHA data set is set toTruewhen the data is grouped.References
K. A. Arnaud, I. M. George & A. F. Tennant, “The OGIP Spectral File Format”
Examples
Group the data in the default data set:
>>> group() >>> get_data().grouped True
Group the first background component of the ‘core’ data set:
>>> group('core', bkg_id=1) >>> get_bkg('core', bkg_id=1).grouped True
The data is fit using the ungrouped data, and then plots of the data and best-fit, and the residuals, are created. The first plot uses the ungrouped data, and the second plot uses the grouped data.
>>> ungroup() >>> fit() >>> plot_fit_resid() >>> group() >>> plot_fit_resid()