diff --git a/read_csv.py b/read_csv.py
index b135aa2208a4e75e3a21bd3f13840f893717f4b8..624966907c600e0478e024db880a494a8f4efe29 100644
--- a/read_csv.py
+++ b/read_csv.py
@@ -16,7 +16,10 @@ print(temp)
 temp_decimate = signal.decimate(temp, 10, 3, zero_phase=True)
 print(temp_decimate)
 
+temp_filtered = signal.savgol_filter(temp, 53, 3)
+
 plt.plot(time,temp)
+plt.plot(time,temp_filtered)
 plt.show()