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.

excess_error

gammapy.stats.excess_error(n_on, n_off, alpha)[source]

Estimate error on excess for an on-off measurement.

Δμexcess=non+α2×noff

TODO: Implement better error and limit estimates (Li & Ma, Rolke)!

Parameters
n_onarray_like

Observed number of counts in the on region

n_offarray_like

Observed number of counts in the off region

alphaarray_like

On / off region exposure ratio for background events

Returns
excess_errornumpy.ndarray

Excess error estimate

Examples

>>>
>>> excess_error(n_on=10, n_off=20, alpha=0.1)
3.1937438845342623...
>>> excess_error(n_on=4, n_off=9, alpha=0.5)
2.5