EV6_HW_Imp/scripts/reflection.py
2024-03-21 19:24:50 +01:00

10 lines
183 B
Python

from matplotlib import pyplot as plt
import reader
data_reader = reader.Reader()
data = data_reader.readFile(r".\data\T0001CH1.csv")
plt.plot(data['TIME'], data['CH1'])
plt.show()