Reputation: 3081
I am using plot.ly to plot some graphs on some data. The graph is shown correctly but I would like to get a url to the graph that is hosted on plot.ly/username/xxx. Is there a way to get the url programmatically? I checked the plot.ly documentation but did not come across this option.
Upvotes: 5
Views: 2321
Reputation: 8335
By default when creating plot. The URL are passed by the function
import plotly.plotly as py
url = py.plot(fig, filename='stacked-bar')
Upvotes: 7