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.

Estimator

class gammapy.estimators.Estimator[source]

Bases: abc.ABC

Abstract estimator base class.

Attributes Summary

Methods Summary

copy()

Copy estimator

get_sqrt_ts(ts, norm)

Compute sqrt(TS) value.

run(datasets)

Attributes Documentation

config_parameters

Config parameters

selection_optional
tag

Methods Documentation

copy()[source]

Copy estimator

static get_sqrt_ts(ts, norm)[source]

Compute sqrt(TS) value.

Compute sqrt(TS) as defined by:

TS={TS:if norm<0TS:else
Parameters
tsndarray

TS value.

normndarray

norm value

Returns
——-
sqrt_tsndarray

Sqrt(TS) value.

abstract run(datasets)[source]