Using Peakutils - Detecting 'dull' Peaks
I'm currently using peakutils to find peaks in some data. My data contains some 'dull peaks', that is my peaks plateau somewhat. I can't set my code to find these peaks even after
Solution 1:
In working with the repo owner on this same problem I discovered that the module was not up to date. I made the mistake as a beginner to python of assuming that imports were always the most recent version, a simple version update resolved this issue as the module has included this feature in version 1.1.0. I had to ask my own question for this, days ago, as I could not comment on your question due to low rep.
What I did, in terminal, is run pip freeze
to find my current version and then sudo pip install peakutils --upgrade
to update it.
Post a Comment for "Using Peakutils - Detecting 'dull' Peaks"