EV6_HW_Imp/scripts/reflection.py

10 lines
183 B
Python
Raw Normal View History

2024-03-21 19:24:50 +01:00
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()