so I've got a data table from a sensor that I am not quite sure how to get formatted correctly. It's a light sensor that outputs voltage readings.
The first column in the table is the wavelength measured and then there's 100+ columns for each time instance it measures data.
How would I go about transforming or pivoting this correctly? Would just a Table Transpose be the correct activity?
Next, advice on how to convert raw timestamp into a usable timeseries? It comes out looking like this.
DD-MM-YYYYTHH:MM:SS.###Z
what can I do to convert this into a usable timeseries value to plot as an x-axis? It's down to the thousandth of a second, 0.1s increments.
Bonus, how to do this to find the min and max and normalize the time to be 0-->max?
...
14-07-2020T22:47:31.400Z
14-07-2020T22:47:31.500Z
14-07-2020T22:47:31.600Z
14-07-2020T22:47:31.700Z
14-07-2020T22:47:31.800Z
14-07-2020T22:47:31.900Z
...