Resolved: How to implement a butterworth filter

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
The column calls Euclidian Norm. The range of the data are from 0 to 1679.286158 and theyre are 1838 rows.
This is the code in Jupyter:
My problem is that nothing changes in my data. It doesnt filtered my data. The graph of the filtered data is the same like the source data. Does anyone know what could be wrong?
The first graph is the source data and the second graph is the filtered graph. It looks very similar. Its like the same graph
The first graph is the source data and the second graph is the filtered 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:
enter image description here

If you have better answer, please add a comment about this, thank you!

Source: Stackoverflow.com