reducing noise on data

Solutions on MaxInterview for reducing noise on data by the best coders in the world

showing results for - "reducing noise on data"
Elisa
28 Sep 2016
1from scipy.signal import savgol_filter
2w = savgol_filter(y, 101, 2)
3plt.plot(x, w, 'b')  # high frequency noise removed
4