Jump to content

Moving Pushed Data to Trash


Emilio Conde

Recommended Posts

  • Seeq Team

You may have noticed that pushed data does not have a red trash icon at the bottom of its Item Properties. There's a simple way to move this (and any other) data to the trash through Data Lab. Read below.

Pushed Data

Screen Shot 2021-09-14 at 12.30.28 PM.png

Normal Calculated Seeq Signal

Screen Shot 2021-09-14 at 12.34.15 PM.png

 

Moving data to trash through SDL

Step 1: Identify data of interest and store in a dataframe

For this example, I want to move all of the items on this worksheet to trash. Thus, I can use spy.search to store as a dataframe. 

remove_Data = spy.search('worksheet URL')

Screen Shot 2021-09-14 at 12.48.28 PM.png

 

Step 2: Create an 'Archived' column in the dataframe and set to 'true'

remove_Data['Archived'] = 'true'

Screen Shot 2021-09-14 at 12.52.18 PM.png

 

Step 3: Push this dataframe back into Seeq as metadata

spy.push(metadata = remove_Data)

Screen Shot 2021-09-14 at 12.57.12 PM.png

 

The associated data should now be in the trash and unable to be searchable in the Data pane.

Screen Shot 2021-09-14 at 12.59.47 PM.png

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...