Question, when plotly charts are being plotted in python are they being sent to plotly servers?
Hi @ssharma87,
The following plotting approaches work offline and donβt send any info to plotlyβs servers.
plotly.offline.iplot
plotly.offline.plot
plotly.graph_objs.FigureWidget
plotly.io.write_image
(For saving static image)
The following plotting approaches display plots by uploading them to your plot.ly account
plotly.plotly.plot
plotly.plotly.iplot
Hope that helps!
-Jon