Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion plotly/plotly/plotly.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,14 @@ def get_credentials():

### plot stuff ###

def iplot(figure_or_data, **plot_options):
def iplot(figure_or_data, cached=False, **plot_options):
"""Create a unique url for this plot in Plotly and open in IPython.

cached (bool) -- Show a static image of the graph while the interactive
version loads. Note: the interactive version will
not display on notebooks if Javascript can't be run,
e.g. notebooks shared with nbviewer.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

so, is this not true then? it will work?


plot_options keyword agruments:
filename (string) -- the name that will be associated with this figure
fileopt ('new' | 'overwrite' | 'extend' | 'append')
Expand Down