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.
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.5.3.tar.gz
(14.2 kB
view details)
Built Distribution
nuance-0.5.3-py3-none-any.whl
(17.0 kB
view details)
File details
Details for the file nuance-0.5.3.tar.gz
.
File metadata
- Download URL: nuance-0.5.3.tar.gz
- Upload date:
- Size: 14.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.10.13 Linux/6.2.0-1019-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e739d2cea8abe695b15833d3227afaf946f52219d0f49d928f422d786e57449e |
|
MD5 | e63ac38fa67aae46b80ed4e00524f048 |
|
BLAKE2b-256 | fe5223381d619e35fb14673d09bcd535d469a27672ec4a9e987992f025e29c98 |
File details
Details for the file nuance-0.5.3-py3-none-any.whl
.
File metadata
- Download URL: nuance-0.5.3-py3-none-any.whl
- Upload date:
- Size: 17.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.1 CPython/3.10.13 Linux/6.2.0-1019-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 595c79ddca9abce7dd7e027433f684b7ad36095145de82990da746542f04b8bb |
|
MD5 | 508af051915348dec0b283f4e02d45f1 |
|
BLAKE2b-256 | 14b1872210be45351a0ab3512832fc37b91e7a7124b05d2dfea00818cdd43978 |