PyPalmSens 2.1.0 is now available on PyPi.
To upgrade: pip install pypalmsens -U.
For more information, see the documentation.
This is a minor release that adds baseline correction for curves.
Baseline correction
This method calculates and applies a baseline correction using a specified
moving average window size and a maximum number of sweeps allowed.
The function returns a named tuple, so you can unpack the two values directly as a tuple:
>>> corrected, baseline = curve.remove_baseline(max_sweeps=500, window_size=2)Or access them by name:
>>> result = curve.remove_baseline(max_sweeps=500, window_size=2)
>>> result.corrected, result.baselineSee the documentation for baseline correction to learn more.
What's changed
- Add method for baseline correction (#481)
Full Changelog: python-2.0.0...python-2.1.0