Note

You are not reading the most up to date version of Gammapy documentation.
Access the latest stable version v1.3 or the list of Gammapy releases.

background_error

gammapy.stats.background_error(n_off, alpha)[source]

Estimate standard error on background in the on region from an off-region observation.

Δμbkg=α×noff
Parameters
n_offarray_like

Observed number of counts in the off region

alphaarray_like

On / off region exposure ratio for background events

Returns
backgroundnumpy.ndarray

Background estimate for the on region

Examples

>>>
>>> background_error(n_off=4, alpha=0.1)
0.2
>>> background_error(n_off=9, alpha=0.2)
0.6