I have a daily feed data of the form coming as a file in sharepoint
Date | AX1 | AB1 | AW1 | AN1 | AR1 | AB1 | BW1 | BG1 | BT1 |
---|---|---|---|---|---|---|---|---|---|
01-01-2023 | 0.23 | 1.23 | 2.54 | 0.98 | 0.655 | 1.09 | 0.87 | 0.34 | 0.19 |
01-02-2023 | 0.34 | 0.56 | 0.44 | 0.89 | 0.576 | 0.81 | 1.29 | 1.11 | 0.67 |
…... | ….. | ….. | …... | …... | …... | …... | …... | …... | ….. |
I need to pull this data and transform it into an applicable resource-type (Sequences in CDF). I don’t want to store as time series since I need this in tabular form to operate further and do matrix and dot product etc.
Is there a way to write a transformation to push it as ‘sequences’ so that I can use it as a matrix to perform further calculations?
Please share some example SQL transformation snippets to achieve this.