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.1.tar.gz
(2.3 MB
view details)
Built Distribution
nuance-0.7.1-py3-none-any.whl
(18.9 kB
view details)
File details
Details for the file nuance-0.7.1.tar.gz
.
File metadata
- Download URL: nuance-0.7.1.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 | 42f4797af073dd45825b4879deb696fe74aa4622c8f385b8d0209f270633e444 |
|
MD5 | 99673a38de6b54547e34f22edd985d94 |
|
BLAKE2b-256 | 7c0af3566efe52770664c68a03d181815aeee4dda81668835e84ac2fc68a4457 |
File details
Details for the file nuance-0.7.1-py3-none-any.whl
.
File metadata
- Download URL: nuance-0.7.1-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 | c32520ddc03ba7a0bb043525ab916950bbf81729057bd76608a50e4b14b4b452 |
|
MD5 | 0a1db4ebd91199b9e883276e293284a2 |
|
BLAKE2b-256 | 1cd47eba86fb4457f6aed8dbaba0d77166351a91af165d914dc611db83a19940 |