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.0.tar.gz
(15.1 kB
view details)
Built Distribution
nuance-0.6.0-py3-none-any.whl
(18.1 kB
view details)
File details
Details for the file nuance-0.6.0.tar.gz
.
File metadata
- Download URL: nuance-0.6.0.tar.gz
- Upload date:
- Size: 15.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.10.13 Linux/6.5.0-1016-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63b8b2fb8eb93520578eaccf0e9cea1580c6148e8c40084d5f55089328bc769c |
|
MD5 | 5c4e343816078a108c906ecd0736e52c |
|
BLAKE2b-256 | bb464c06c07954d3f020a4305eb5d48213516b9ff5fe22ffd4a5c82ea175093c |
File details
Details for the file nuance-0.6.0-py3-none-any.whl
.
File metadata
- Download URL: nuance-0.6.0-py3-none-any.whl
- Upload date:
- Size: 18.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.10.13 Linux/6.5.0-1016-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1eafe3afa145a6a2ce79ccf7571c59796780959e2cbb19c18d0dae8d44edf0a5 |
|
MD5 | 846e2707988fec310a876410c6ac93a3 |
|
BLAKE2b-256 | 3b86aeb5277ac74df90af2ed96c57f0088b9c671fa080b0e42b5f80db2579fa8 |