Background Modeling

When fitting a spectrum with a background, it is invalid to simply subtract off the background if the background is part of the data's generative model van Dyk et al. (2001). Therefore, we are often left with the task of modeling the statistical process of the background along with our source.

In typical spectral modeling, we find a few common cases when background is involved. If we have total counts ($S_i$) in $i^{\rm th}$ on $N$ bins observed for an exposure of $t_{\rm s}$ and also a measurement of $B_i$ background counts from looking off source for $t_{\rm b}$ seconds, we can then suppose a model for the source rate ($m_i$) and background rate ($b_i$).

Poisson source with Poisson background

This is described by a likelihood of the following form:

$$ L = \prod^N_{i=1} \frac{(t_{\rm s}(m_i+b_i))^{S_i} e^{-t_{\rm s}(m_i+b_i)}}{S_i!} \times \frac{(t_{\rm b} b_i)^{B_i} e^{-t_{\rm b}b_i}}{B_i!} $$

which is a Poisson likelihood for the total model ($m_i +b_i$) conditional on the Poisson distributed background observation. This is the typical case for e.g. aperture x-ray instruments that observe a source region and then a background region. Both observations are Poisson distributed.

Poisson source with Gaussian background

This likelihood is similar, but the conditonal background distribution is described by Gaussian:

$$ L = \prod^N_{i=1} \frac{(t_{\rm s}(m_i+b_i))^{S_i} e^{-t_{\rm s}(m_i+b_i)}}{S_i!} \times \frac{1}{\sigma_{b,i}\sqrt{2 \pi}} \exp \left[ \frac{({B_i} - t_{\rm b} b_i)^2} {2 \sigma_{b,i}^2} \right] $$

where the $\sigma_{b,i}$ are the measured errors on $B_i$. This situation occurs e.g. when the background counts are estimated from a fitted model such as time-domain instruments that estimate the background counts from temporal fits to the lightcurve.

In 3ML, we can fit a background model along with the the source model which allows for arbitrarily low background counts (in fact zero) in channels. The alternative is to use profile likelihoods where we first differentiate the likelihood with respect to the background model

$$ \frac{ \partial L}{{\partial b_i}} = 0$$

and solve for the $b_i$ that maximize the likelihood. Both the Poisson and Gaussian background profile likelihoods are described in the XSPEC statistics guide. This implicitly yields $N$ parameters to the model thus requiring at least one background count per channel. These profile likelihoods are the default Poisson likelihoods in 3ML when a background model is not used with a SpectrumLike (and its children, DispersionSpectrumLike and OGIPLike) plugin.

Let's examine how to handle both cases.


In [1]:
from threeML import *

%matplotlib inline

import warnings

warnings.simplefilter('ignore')


Configuration read from /home/giacomov/.threeML/threeML_config.yml
Plotter is MatPlotlib

First we will create an observation where we have a simulated broken power law source spectrum along with an observed background spectrum. The background is a powerl law continuum with a Gaussian line.


In [2]:
# create the simulated observation

energies = np.logspace(1,4,151)

low_edge = energies[:-1]
high_edge = energies[1:]

# get a BPL source function
source_function = Broken_powerlaw(K=2,xb=300,piv=300, alpha=0., beta=-3.)

# power law background function
background_function = Powerlaw(K=.5,index=-1.5, piv=100.) + Gaussian(F=50,mu=511,sigma=20)

spectrum_generator = SpectrumLike.from_function('fake',
                                               source_function=source_function,
                                               background_function=background_function,
                                               energy_min=low_edge,
                                               energy_max=high_edge)


spectrum_generator.view_count_spectrum()


Using a profile likelihood

We have very few counts counts in some channels (in fact sometimes zero), but let's assume we do not know the model for the background. In this case, we will use the profile Poisson likelihood.


In [3]:
# instance our source spectrum
bpl = Broken_powerlaw(piv=300,xb=500)

# instance a point source
ra, dec = 0,0
ps_src = PointSource('source',ra,dec,spectral_shape=bpl)

# instance the likelihood model
src_model = Model(ps_src)

# pass everything to a joint likelihood object
jl_profile = JointLikelihood(src_model,DataList(spectrum_generator))


# fit the model
_ = jl_profile.fit()

# plot the fit in count space
_ = spectrum_generator.display_model(step=False)


Best fit values:

result unit
parameter
source.spectrum.main.Broken_powerlaw.K 1.940 +/- 0.11 1 / (cm2 keV s)
source.spectrum.main.Broken_powerlaw.xb (2.952 +/- 0.014) x 10^2 keV
source.spectrum.main.Broken_powerlaw.alpha (-5.000 +/- 7) x 10^-2
source.spectrum.main.Broken_powerlaw.beta -3.090 +/- 0.15
Correlation matrix:

1.00-0.090.69-0.50
-0.091.00-0.06-0.08
0.69-0.061.00-0.34
-0.50-0.08-0.341.00
Values of -log(likelihood) at the minimum:

-log(likelihood)
fake 421.250886
total 421.250886
Values of statistical measures:

statistical measures
AIC 850.777634
BIC 862.544313

Our fit recovers the simulated parameters. However, we should have binned the spectrum up such that there is at least one background count per spectral bin for the profile to be valid.


In [4]:
spectrum_generator.rebin_on_background(1)

spectrum_generator.view_count_spectrum()

_ = jl_profile.fit()

_ = spectrum_generator.display_model(step=False)


Best fit values:

result unit
parameter
source.spectrum.main.Broken_powerlaw.K 1.970 +/- 0.16 1 / (cm2 keV s)
source.spectrum.main.Broken_powerlaw.xb (2.910 +/- 0.14) x 10^2 keV
source.spectrum.main.Broken_powerlaw.alpha (-2.000 +/- 8) x 10^-2
source.spectrum.main.Broken_powerlaw.beta -2.990 +/- 0.17
Correlation matrix:

1.00-0.670.790.12
-0.671.00-0.52-0.63
0.79-0.521.000.09
0.12-0.630.091.00
Values of -log(likelihood) at the minimum:

-log(likelihood)
fake 306.555704
total 306.555704
Values of statistical measures:

statistical measures
AIC 621.387271
BIC 633.153950

Modeling the background

Now let's try to model the background assuming we know that the background is a power law with a Gaussian line. We can extract a background plugin from the data by passing the original plugin to a classmethod of spectrum like.


In [5]:
# extract the background from the spectrum plugin.
# This works for OGIPLike plugins as well, though we could easily also just read 
# in a bakcground PHA
background_plugin = SpectrumLike.from_background('bkg',spectrum_generator)


Auto-probed noise models:
- observation: poisson
- background: None

This constructs a new plugin with only the observed background so that we can first model it.


In [6]:
background_plugin.view_count_spectrum()


We now construct our background model and fit it to the data. Let's assume we know that the line occurs at 511 keV, but we are unsure of its strength an width. We do not need to bin the data up because we are using a simple Poisson likelihood which is valid even when we have zero counts Cash (1979).


In [7]:
# instance the spectrum setting the line's location to 511
bkg_spectrum = Powerlaw(piv=100) +  Gaussian(F=50,mu=511)

# setup model parameters
# fix the line's location
bkg_spectrum.mu_2.fix = True

# nice parameter bounds
bkg_spectrum.K_1.bounds = (1E-4, 10)
bkg_spectrum.F_2.bounds = (0., 1000)
bkg_spectrum.sigma_2.bounds = (2,30)

ps_bkg = PointSource('bkg',0,0,spectral_shape=bkg_spectrum)

bkg_model = Model(ps_bkg)


jl_bkg = JointLikelihood(bkg_model,DataList(background_plugin))


_ = jl_bkg.fit()

_ = background_plugin.display_model(step=False, data_color='#1A68F0', model_color='#FF9700')


Best fit values:

result unit
parameter
bkg.spectrum.main.composite.K_1 (3.28 -0.23 +0.25) x 10^-1 1 / (cm2 keV s)
bkg.spectrum.main.composite.index_1 -1.400 +/- 0.04
bkg.spectrum.main.composite.F_2 9.000 +/- 6 1 / (cm2 s)
bkg.spectrum.main.composite.sigma_2 4.000 +/- 4 keV
Correlation matrix:

1.000.16-0.09-0.09
0.161.00-0.09-0.09
-0.09-0.091.000.90
-0.09-0.090.901.00
Values of -log(likelihood) at the minimum:

-log(likelihood)
bkg 213.488783
total 213.488783
Values of statistical measures:

statistical measures
AIC 435.253428
BIC 447.020107

We now have a model and estimate for the background which we can use when fitting with the source spectrum. We now create a new plugin with just the total observation and pass our background plugin as the background argument.


In [8]:
modeled_background_plugin = SpectrumLike('full',
                                         # here we use the original observation
                                         observation=spectrum_generator.observed_spectrum,
                                         # we pass the background plugin as the background!
                                         background=background_plugin)


Background modeled from plugin: bkg
Auto-probed noise models:
- observation: poisson
- background: poisson

When we look at out count spectrum now, we will see the predicted background, rather than the measured one:


In [9]:
modeled_background_plugin.view_count_spectrum()


Now we simply fit the spectrum as we did in the profiled case. The background plugin's parameters are stored in our new plugin as nuissance parameters:


In [10]:
modeled_background_plugin.nuisance_parameters


Out[10]:
OrderedDict([('cons_full', Parameter cons_full = 1.0 []
              (min_value = 0.8, max_value = 1.2, delta = 0.05, free = False)),
             ('bkg_bkg_position_ra_full', Parameter ra = 0.0 [deg]
              (min_value = 0.0, max_value = 360.0, delta = 0.1, free = False)),
             ('bkg_bkg_position_dec_full', Parameter dec = 0.0 [deg]
              (min_value = -90.0, max_value = 90.0, delta = 0.1, free = False)),
             ('bkg_bkg_spectrum_main_composite_K_1_full',
              Parameter K_1 = 0.327553504263 [1 / (cm2 keV s)]
              (min_value = 0.0001, max_value = 10.0, delta = 0.1, free = True)),
             ('bkg_bkg_spectrum_main_composite_piv_1_full',
              Parameter piv_1 = 100.0 [keV]
              (min_value = None, max_value = None, delta = 0.1, free = False)),
             ('bkg_bkg_spectrum_main_composite_index_1_full',
              Parameter index_1 = -1.39602396743 []
              (min_value = -10.0, max_value = 10.0, delta = 0.2, free = True)),
             ('bkg_bkg_spectrum_main_composite_F_2_full',
              Parameter F_2 = 9.18344599769 [1 / (cm2 s)]
              (min_value = 0.0, max_value = 1000.0, delta = 0.1, free = True)),
             ('bkg_bkg_spectrum_main_composite_mu_2_full',
              Parameter mu_2 = 511.0 [keV]
              (min_value = None, max_value = None, delta = 0.1, free = False)),
             ('bkg_bkg_spectrum_main_composite_sigma_2_full',
              Parameter sigma_2 = 4.36228233613 [keV]
              (min_value = 2.0, max_value = 30.0, delta = 0.1, free = True)),
             ('bkg_cons_bkg_full', Parameter cons_bkg = 1.0 []
              (min_value = 0.8, max_value = 1.2, delta = 0.05, free = False))])

and the fitting engine will use them in the fit. The parameters will still be connected to the background plugin and its model and thus we can free/fix them there as well as set priors on them.


In [11]:
# instance the source model... the background plugin has it's model already specified
bpl = Broken_powerlaw(piv=300,xb=500)

bpl.K.bounds = (1E-5,1E1)
bpl.xb.bounds = (1E1,1E4)

ps_src = PointSource('source',0,0,bpl)

src_model = Model(ps_src)


jl_src = JointLikelihood(src_model,DataList(modeled_background_plugin))

_ = jl_src.fit()


Best fit values:

result unit
parameter
source.spectrum.main.Broken_powerlaw.K 1.880 +/- 0.16 1 / (cm2 keV s)
source.spectrum.main.Broken_powerlaw.xb (2.920 +/- 0.13) x 10^2 keV
source.spectrum.main.Broken_powerlaw.alpha (0.000 +/- 1.2) x 10^-1
source.spectrum.main.Broken_powerlaw.beta -3.000 +/- 0.21
K_1 (4.300 +/- 0.7) x 10^-1 1 / (cm2 keV s)
index_1 -1.350 +/- 0.06
F_2 (2.100 +/- 1.0) x 10 1 / (cm2 s)
sigma_2 (2.100 +/- 1.3) x 10 keV
Correlation matrix:

1.00-0.650.740.030.24-0.270.000.00
-0.651.00-0.45-0.50-0.070.30-0.14-0.12
0.74-0.451.00-0.140.66-0.240.030.02
0.03-0.50-0.141.00-0.46-0.49-0.16-0.11
0.24-0.070.66-0.461.000.180.090.07
-0.270.30-0.24-0.490.181.000.100.07
0.00-0.140.03-0.160.090.101.000.61
0.00-0.120.02-0.110.070.070.611.00
Values of -log(likelihood) at the minimum:

-log(likelihood)
full 331.960017
total 331.960017
Values of statistical measures:

statistical measures
AIC 680.941310
BIC 704.005116

In [12]:
# over plot the joint background and source fits
fig = modeled_background_plugin.display_model(step=False)

_ = background_plugin.display_model(data_color='#1A68F0', model_color='#FF9700',model_subplot=fig.axes,step=False)



In [ ]: