Skip to main content
Solved

Transformations to Sequences


Forum|alt.badge.img+2

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. 

Best answer by roman.chesnokov

Hey @eashwar11 , I’m not sure if the sequence data type fits your needs. Do you have any reasons for using that particular type? I would recommend using time series. instead. You can easily access the values as tabular data (pandas DataFrame).

client.time_series.data.retrieve_dataframe(list_of_external_ids, start='1m-ago', end='now', aggregates=['average'], granularity='1d')

But if you don’t need to visualise the data, you can do the same directly from the RAW.

client.raw.rows.retrieve_dataframe(db_name, table_name, limit=-1)

 

View original

3 replies

roman.chesnokov
Seasoned Practitioner
  • Seasoned Practitioner
  • 56 replies
  • Answer
  • July 17, 2023

Hey @eashwar11 , I’m not sure if the sequence data type fits your needs. Do you have any reasons for using that particular type? I would recommend using time series. instead. You can easily access the values as tabular data (pandas DataFrame).

client.time_series.data.retrieve_dataframe(list_of_external_ids, start='1m-ago', end='now', aggregates=['average'], granularity='1d')

But if you don’t need to visualise the data, you can do the same directly from the RAW.

client.raw.rows.retrieve_dataframe(db_name, table_name, limit=-1)

 


  • Seasoned Practitioner
  • 223 replies
  • July 26, 2023

Hi @eashwar11, did the above help you?


Forum|alt.badge.img+2
  • Author
  • 42 replies
  • July 27, 2023

Hi @Carin Meems 

It did help!, Thanks for the inputs.


Reply


Cookie Policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie Settings