Sign up to take part
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
Registered users can ask their own questions, contribute to discussions, and be part of the Community!
Currently, I am saving the plots in `insights` using
insights.save_figure(...)
After that, I am adding those static insights on the `dashboard`.
Those graphs are lifeless, I mean they are just images.
Can we save interactive graphs like what Plot.ly offers? For that do we need to save some sort of html?
Please any helpful guidance will be appreciated.
Hi @epsi95 ,
If you like to work with plot.ly figures the insights API has a save_plotly() method you can use.
For reference, you would do something like this:
from dataiku import insights
# f is a plot.ly figure, or any object that can be passed to iplot()
insights.save_plotly("plotly_plot", f)
Then, navigate to your dashboard and add a "static insight" to the dashboard and pick your plotly plot
Unfortunately, this does not answer my question. But thanks anyway 🙂