Transit signals detection among correlated noises
Project description
nuance
Efficient detection of planets transiting quiet or 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
- To use GPUs for fast transit searches
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.7.0.tar.gz
(2.3 MB
view details)
Built Distribution
nuance-0.7.0-py3-none-any.whl
(18.9 kB
view details)
File details
Details for the file nuance-0.7.0.tar.gz
.
File metadata
- Download URL: nuance-0.7.0.tar.gz
- Upload date:
- Size: 2.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c640a3ff3878db7d2ae66ef16809803e783e53560956ab75c0068c182878d8d1 |
|
MD5 | b9be7435f96192e50bde3632f51e788a |
|
BLAKE2b-256 | 6df0498780fcb0ce2099f4756a4e3f1338b2ba237c3015e91a528f3eb7bf14c9 |
File details
Details for the file nuance-0.7.0-py3-none-any.whl
.
File metadata
- Download URL: nuance-0.7.0-py3-none-any.whl
- Upload date:
- Size: 18.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 977fe33902904e3c435e8315396894fd40a4e1ce309436a6b960048a034d4713 |
|
MD5 | f4b94af85bbba97290deade858e8de01 |
|
BLAKE2b-256 | b807c67bafeb63acc95a429400ede795beec1f4de37f9a0f184408a72020089f |