In this post, we will see how to resolve How to implement a butterworth filter
Question:
I am trying to implement a butterworthfilter with python in jupyter Notebook. I wrote this code by a tutorial.The data are from a CSV-File, it calls Samples.csv
The data in Samples.csv are like
This is the code in Jupyter:
The first graph is the source data and the second graph is the filtered graph. It looks very similar. Its like the same graph

Best Answer:
I can’t comment yet.You’re never using
filtered_signal
and plot with the same arguments twice.Here`s one of my implementations with added interpolation, very similar to yours:

If you have better answer, please add a comment about this, thank you!
Source: Stackoverflow.com
Leave a Review