This Jupyter notebook can be downloaded from noise-fitting-example.ipynb, or viewed as a python script at noise-fitting-example.py.

PINT Noise Fitting Examples

[1]:
from pint.models import get_model
from pint.simulation import make_fake_toas_uniform
from pint.logging import setup as setup_log
from pint.fitter import Fitter

import numpy as np
from io import StringIO
from astropy import units as u
from matplotlib import pyplot as plt
[2]:
setup_log(level="WARNING")
[2]:
1

Fitting for EFAC and EQUAD

[3]:
# Let us begin by simulating a dataset with an EFAC and an EQUAD.
# Note that the EFAC and the EQUAD are set as fit parameters ("1").
par = """
    PSR             TEST1
    RAJ             05:00:00    1
    DECJ            15:00:00    1
    PEPOCH          55000
    F0              100         1
    F1              -1e-15      1
    EFAC tel gbt    1.3         1
    EQUAD tel gbt   1.1         1
    TZRMJD          55000
    TZRFRQ          1400
    TZRSITE         gbt
    EPHEM           DE440
    CLOCK           TT(BIPM2019)
    UNITS           TDB
"""

m = get_model(StringIO(par))

ntoas = 200

# EFAC and EQUAD cannot be measured separately if all TOA uncertainties
# are the same. So we must set a different toa uncertainty for each TOA.
# This is how it is in real datasets anyway.
toaerrs = np.random.uniform(0.5, 2, ntoas) * u.us

t = make_fake_toas_uniform(
    startMJD=54000,
    endMJD=56000,
    ntoas=ntoas,
    model=m,
    obs="gbt",
    error=toaerrs,
    add_noise=True,
    include_bipm=True,
)
[4]:
# Now create the fitter. The `Fitter.auto()` function creates a
# Downhill fitter. Noise parameter fitting is only available in
# Downhill fitters.
ftr = Fitter.auto(t, m)
[5]:
# Now do the fitting.
ftr.fit_toas()
[6]:
# Print the post-fit model. We can see that the EFAC and EQUAD have been
# and the uncertainties are listed.
print(ftr.model)
# Created: 2026-08-21T20:04:52.102716
# PINT_version: 1.1.6+68.g7d55691
# User: docs
# Host: build-34177976-project-85767-nanograv-pint
# OS: Linux-7.0.0-1004-aws-x86_64-with-glibc2.35
# Python: 3.11.15 (main, Jun 25 2026, 19:09:59) [GCC 11.4.0]
# Format: pint
# read_time: 2026-08-21T20:04:49.305929
# allow_tcb: False
# convert_tcb: False
# allow_T2: False
# ell1h_shapiro: full
PSR                                 TEST1
EPHEM                               DE440
CLOCK                        TT(BIPM2019)
UNITS                                 TDB
START            53999.999999986189502366
FINISH           56000.000000005571736111
DILATEFREQ                              N
DMDATA                                  N
NTOA                                  200
CHI2                   199.99991836431423
CHI2R                  1.0362690070689857
TRES                    2.065241906048721
RAJ                      5:00:00.00001826 1 0.00000758872392919964
DECJ                    14:59:59.99931517 1 0.00066778302973307768
PMRA                                  0.0
PMDEC                                 0.0
PX                                    0.0
F0                  99.999999999999916574 1 2.8632272013217401147e-13
F1               -9.99987634546697816e-16 1 1.3265305492402643205e-20
PEPOCH           55000.000000000000000000
TZRMJD           55000.000000000000000000
TZRSITE                               gbt
TZRFRQ                             1400.0
PLANET_SHAPIRO                          N
EFAC            tel gbt        1.4687539688476683 1 0.18277439979751314
EQUAD           tel gbt        0.8269273749545353 1 0.27246473905083685

[7]:
# Let us plot the injected and measured noise parameters together to
# compare them.
plt.scatter(m.EFAC1.value, m.EQUAD1.value, label="Injected", marker="o", color="blue")
plt.errorbar(
    ftr.model.EFAC1.value,
    ftr.model.EQUAD1.value,
    xerr=ftr.model.EFAC1.uncertainty_value,
    yerr=ftr.model.EQUAD1.uncertainty_value,
    marker="+",
    label="Measured",
    color="red",
)
plt.xlabel("EFAC_tel_gbt")
plt.ylabel("EQUAD_tel_gbt (us)")
plt.legend()
plt.show()
../_images/examples_noise-fitting-example_8_0.png

Fitting for ECORRs

[8]:
# Note the explicit offset (PHOFF) in the par file below.
# Implicit offset subtraction is typically not accurate enough when
# ECORR (or any other type of correlated noise) is present.
# i.e., PHOFF should be a free parameter when ECORRs are being fit.
par = """
    PSR             TEST2
    RAJ             05:00:00    1
    DECJ            15:00:00    1
    PEPOCH          55000
    F0              100         1
    F1              -1e-15      1
    PHOFF           0           1
    EFAC tel gbt    1.3         1
    ECORR tel gbt   1.1         1
    TZRMJD          55000
    TZRFRQ          1400
    TZRSITE         gbt
    EPHEM           DE440
    CLOCK           TT(BIPM2019)
    UNITS           TDB
"""

m = get_model(StringIO(par))

# ECORRs only apply when there are multiple TOAs per epoch.
# This can be simulated by providing multiple frequencies and
# setting the `multi_freqs_in_epoch` option. The `add_correlated_noise`
# option should also be set because correlated noise components
# are not simulated by default.

ntoas = 500
toaerrs = np.random.uniform(0.5, 2, ntoas) * u.us
freqs = np.linspace(1300, 1500, 4) * u.MHz

t = make_fake_toas_uniform(
    startMJD=54000,
    endMJD=56000,
    ntoas=ntoas,
    model=m,
    obs="gbt",
    error=toaerrs,
    freq=freqs,
    add_noise=True,
    add_correlated_noise=True,
    include_bipm=True,
    multi_freqs_in_epoch=True,
)
[9]:
ftr = Fitter.auto(t, m)
[10]:
ftr.fit_toas()
[10]:
True
[11]:
print(ftr.model)
# Created: 2026-08-21T20:05:06.978830
# PINT_version: 1.1.6+68.g7d55691
# User: docs
# Host: build-34177976-project-85767-nanograv-pint
# OS: Linux-7.0.0-1004-aws-x86_64-with-glibc2.35
# Python: 3.11.15 (main, Jun 25 2026, 19:09:59) [GCC 11.4.0]
# Format: pint
# read_time: 2026-08-21T20:04:52.282959
# allow_tcb: False
# convert_tcb: False
# allow_T2: False
# ell1h_shapiro: full
PSR                                 TEST2
EPHEM                               DE440
CLOCK                        TT(BIPM2019)
UNITS                                 TDB
START            53999.999999986243599537
FINISH           55984.000000056526643519
DILATEFREQ                              N
DMDATA                                  N
NTOA                                  500
CHI2                    500.0127938975175
CHI2R                   1.016286166458369
TRES                   1.6292529665861222
RAJ                      4:59:59.99999749 1 0.00000571328323664325
DECJ                    15:00:00.00051496 1 0.00049696423011912549
PMRA                                  0.0
PMDEC                                 0.0
PX                                    0.0
F0                    100.000000000000502 1 2.2413766852322615243e-13
F1              -9.9998035324851172735e-16 1 1.024426682475779963e-20
PEPOCH           55000.000000000000000000
ECORR           tel gbt         1.076644804056291 1 0.09291877244881555
EFAC            tel gbt        1.2337758645041412 1 0.04495658050988979
TZRMJD           55000.000000000000000000
TZRSITE                               gbt
TZRFRQ                             1400.0
PHOFF               6.188379212304078e-05 1 1.700177904736351e-05
PLANET_SHAPIRO                          N

[12]:
# Let us plot the injected and measured noise parameters together to
# compare them.
plt.scatter(m.EFAC1.value, m.ECORR1.value, label="Injected", marker="o", color="blue")
plt.errorbar(
    ftr.model.EFAC1.value,
    ftr.model.ECORR1.value,
    xerr=ftr.model.EFAC1.uncertainty_value,
    yerr=ftr.model.ECORR1.uncertainty_value,
    marker="+",
    label="Measured",
    color="red",
)
plt.xlabel("EFAC_tel_gbt")
plt.ylabel("ECORR_tel_gbt (us)")
plt.legend()
plt.show()
../_images/examples_noise-fitting-example_14_0.png