We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cae796e commit 8b39241Copy full SHA for 8b39241
plotly/offline/offline.py
@@ -472,7 +472,7 @@ def plot_mpl(mpl_fig, resize=False, strip_style=False,
472
def iplot_mpl(mpl_fig, resize=False, strip_style=False,
473
verbose=False, show_link=True,
474
link_text='Export to plot.ly', validate=True,
475
- donwload_image=False, image_filename='plot', format='png',
+ download_image=False, image_filename='plot', _format='png',
476
_height=600, _width=800):
477
"""
478
Convert a matplotlib figure to a plotly graph and plot inside an IPython
@@ -520,7 +520,7 @@ def iplot_mpl(mpl_fig, resize=False, strip_style=False,
520
plotly_plot = tools.mpl_to_plotly(mpl_fig, resize, strip_style, verbose)
521
return iplot(plotly_plot, show_link, link_text, validate,
522
download_image=download_image, image_filename=image_filename,
523
- format=format, _height=_height, _width=_width)
+ format=_format, _height=_height, _width=_width)
524
525
526
def enable_mpl_offline(resize=False, strip_style=False,
0 commit comments