nurhazx Posted April 5 Share Posted April 5 Hi, I am looking for a way to create spider chat for visualization in SEEQ dashboard with multiple data legend. Thanks Link to comment Share on other sites More sharing options...
Seeq Team Synjen Marrocco Posted April 5 Seeq Team Share Posted April 5 Hi, The radar/spider/polar plot is not a native Seeq visualization. That said, you could use one of the many python libraries (matplotlib, Seaborn, plotly)out there that supports this type of plot to create the visual in Seeq Data Lab(SDL). The visual you create in SDL can be pushed to an Organizer Topic as an image. This workflow can also be automated to push an updated plot as needed. Simple example: #save plot as png once created plot.savefig('chart.png') #Use spy workbooks to find your topic/sheet topic = spy.workbooks.Topic({'Name': "Charts Testing Push"}) page = topic.document('Visualizations Using Data Lab') #add image to topic page.document.add_image(filename='chart.png', placement='end') #push topic iwth new image spy.workbooks.push(topic) Here is a post on replacing images using a more advanced method with html: To automate the workflow you can schedule the notebook that creates and pushes the plot to organizer using spy.jobs. 1 Link to comment Share on other sites More sharing options...
Seeq Team Patrick Posted April 5 Seeq Team Share Posted April 5 Here's a simple radar plot Add-on that I have written. You can use it as a starting point if helpful. Radar Plot Add-on.ipynb 1 Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now