You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can VERY easily filter data in python pandas as follows:
First, create a filtering function:
# If the window length is 21, it will fit 10 data points to each side of the data point that is being smoothedfromscipyimportsignalmy_filter=lambdax: signal.savgol_filter(x, window_length=21, polyorder=2)
Then, to use the filter:
TODO
Since this is so easy and could be a very common thing to do when logging data, add a section to the Logging markdown docs with the above information.
The text was updated successfully, but these errors were encountered:
This issue was moved from the
AMDC-Firmware
repo: Severson-Group/AMDC-Firmware#144Per @Nick-Hemenway
You can VERY easily filter data in python
pandas
as follows:First, create a filtering function:
Then, to use the filter:
TODO
Since this is so easy and could be a very common thing to do when logging data, add a section to the Logging markdown docs with the above information.
The text was updated successfully, but these errors were encountered: