Transit signals detection among correlated noises
Project description
nuance
Efficient detection of planets transiting active stars
nuance uses linear models and Gaussian processes (using the JAX-based tinygp) to simultaneously search for planetary transits while modeling correlated noises (e.g. stellar variability) in a tractable way. See the paper for more details.
When to use nuance?
- To detect single or periodic transits
- When correlated noises are present in the data (e.g. stellar variability or instrumental systematics)
- For space-based or sparse ground-based observations
- To effectively find transits in light curves from multiple instruments
Documentation at nuance.readthedocs.io
Example
from nuance import Nuance, utils
import numpy as np
(time, flux, error), X, gp = utils.simulated()
nu = Nuance(time, flux, gp=gp, X=X)
# linear search
epochs = time.copy()
durations = np.linspace(0.01, 0.2, 15)
nu.linear_search(epochs, durations)
# periodic search
periods = np.linspace(0.3, 5, 2000)
search = nu.periodic_search(periods)
t0, D, P = search.best
Installation
nuance
is written for python 3 and can be installed using pip
pip install nuance
or from sources
git clone https://github.com/lgrcia/nuance
cd nuance
pip install -e .
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
nuance-0.6.1.tar.gz
(15.2 kB
view details)
Built Distribution
nuance-0.6.1-py3-none-any.whl
(18.2 kB
view details)
File details
Details for the file nuance-0.6.1.tar.gz
.
File metadata
- Download URL: nuance-0.6.1.tar.gz
- Upload date:
- Size: 15.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.10.14 Linux/6.5.0-1021-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6464b4d3da7aa62429006e48fa163b78143c8baf064c2e2563f4b4a7a891131e |
|
MD5 | 0bb6aa8fc40d16bbec8fb510cd5e5c21 |
|
BLAKE2b-256 | bfc68ebb4765d60bf47914bb48596b56fab42e8e394acd08c7d7a74cf33c73c4 |
File details
Details for the file nuance-0.6.1-py3-none-any.whl
.
File metadata
- Download URL: nuance-0.6.1-py3-none-any.whl
- Upload date:
- Size: 18.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.10.14 Linux/6.5.0-1021-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d30ea4f5d47a3913e9aa96e49764fffce35790325dc0daf121b2e9184a94559 |
|
MD5 | 1a392cad098c3ce07bf25f941fcd79ef |
|
BLAKE2b-256 | b445703a2d0cf3e4b1ca9f288dd280d8cb27ee0b64f480d09159737701272219 |