from pathlib import Path import numpy as np path = Path("sensor-readings.csv") readings = np.array( [[18.25, 42.0, 0.98], [18.50, 41.5, 0.99], [18.75, 41.0, 1.01]], dtype=np.float64, )