peaky fits a single peak to a lorentian, gaussian or voift profile
Project description
The package peaky
allows the user to fit a single peak to a Gaussian, Lorentian or Voigt profile.
Basic Example
Here is a basic way to fit your data to a Voigt profile:
import peaky
peaky.fit_voigt(x, y)
here x and y are respectively the independent and dependent variable. The data should contain a single peak, not larger then the data set. If instead you would like to specifically fit the data to a gaussian or a lorentian profile, use one of these two functions instead:
peaky.fit_gaussian(x, y)
peaky.fit_lorentian(x, y)
Parameters
These are all other parameters of the fit_voigt
function:
-
background It sets the order of the polynomial to helps the fit adapt to a possible background signal. A value of 0 means constant background, a value of 1 means linear background etc. If None is provided, no background is added. The dafault value is 1.
-
a It sets the amplitude of the voigt peak to the value provided. In this context, amplitude means literally the amplitude of the signal at peak position. If None is provided (as by default) the best amplitude is found by the fit.
-
p It sets the peak position to the value provided. If None is provided (as by default) the best peak position is found by the fit.
-
g It sets the voigt gaussian width to the value provided. If None is provided (as by default) the best gaussian width is found by the fit.
-
l It sets the voigt lorentian width to the value provided. If None is provided (as by default) the best lorentian width is found by the fit.
-
peak_ratio This parameters helps the process find the best initial values for the fit. For example, a value of 0.3 means then the peak occupies roughly 1 / 3 of the data set width (estimated by eye). If a lower value is provided, the noise may ruin the peak detection, while a higher value may average away the signal.
These are the outputs of the fit:
-
fit The optimal values of the fit parameters in this order: amplitude, peak position, gaussian and lorentian width. To these, it follows the list of polynomial coefficients used for the background signal from lower to higher order. Note that each background coefficient (being very small for higher orders) is multiplied by the n ** i where n is the length of the signal and i the order of the coefficient.
-
err The error correspondent to each parameters obtained from the fit.
-
snr The fit signal to noise measured as the ratio between the signal amplitude (obtained from fit) and the fit data noise (signal - fit standard deviation). This parameter may help decide whatever or not a fit is reliable.
-
yf The list of fitted data values that can be used, for example, for a plot.
All measured parameters are printed directly on terminal together with their error bars and guessed initial values. A color coded fit signal to noise ratio may help decide if a fit is reliable. Red means unreliable, orange means not optimal, while green means reliable.
Gaussian and Lorentian Fit
Note that the fit_gaussian
function is equivalent to fit_voigt
with the Lorentzian width parameter l
fixed to 0, while fit_lorentian
is equivalent to the fit_voigt
with Gaussian width parameter g
fixed to 0.
Test
You can run a simple test of the newly installed package, to check that peaky
works well in your machine. Just use peaky.run_test()
Other Documentation
The documentation of the functions shown above could be accessed using the following commands:
print(plx.fit_voigt.__doc__)
print(plx.fit_gaussian.__doc__)
print(plx.fit_lorentian.__doc__)
...
Installation
To install the latest version of the peaky
package use the following command:
sudo -H pip3 install peaky
Credits
- Author: Savino Piccolomo
- e-mail: piccolomo@gmail.com
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
Built Distribution
File details
Details for the file peaky-1.0.23.tar.gz
.
File metadata
- Download URL: peaky-1.0.23.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.5.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 001c7962a20076b210edd99ad7d507171ff4e5cd1efdd9631884a0dcbf746a7d |
|
MD5 | ba15608091d9fa42467f737f3729e858 |
|
BLAKE2b-256 | e9172ff931d85bbaa198bd30944a7fe731b03a21b5d18ebc481ded19762f3ab1 |
File details
Details for the file peaky-1.0.23-py3-none-any.whl
.
File metadata
- Download URL: peaky-1.0.23-py3-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.5.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5843017c617987bda9c9ce9aa3d12ea275eb92e2c6849d6baa2d6b560088cd24 |
|
MD5 | 2a14d579ae9c59752749ff5108d4f7a0 |
|
BLAKE2b-256 | f989bf1d5aa79489c4ac4edb56d053df3473cb4cfee49cf9cc0dfae9a34a54de |