@@ -272,7 +272,7 @@ def plot(figure_or_data,
272
272
validate = True , output_type = 'file' ,
273
273
include_plotlyjs = True ,
274
274
filename = 'temp-plot.html' , auto_open = True ,
275
- image = False , image_filename = 'plot ' , format = 'png' ,
275
+ image = False , image_filename = 'plot_image ' , format = 'png' ,
276
276
_width = 800 , _height = 600 ):
277
277
""" Create a plotly graph locally as an HTML document or string.
278
278
@@ -323,7 +323,7 @@ def plot(figure_or_data,
323
323
will be downloaded.
324
324
format (default='png') -- Specifies the format of the image to be
325
325
downloaded if `downlowad_image` is True.
326
- image_filename (default='plot ') -- Sets the name of the file your image
326
+ image_filename (default='plot_image ') -- Sets the name of the file your image
327
327
will be saved to. The extension should not be included.
328
328
_height (default=600) -- Specifies the height of the image in `px`.
329
329
_width (default=800) -- Specifies the width of the image in `px`.
@@ -418,7 +418,7 @@ def plot_mpl(mpl_fig, resize=False, strip_style=False,
418
418
verbose = False , show_link = True , link_text = 'Export to plot.ly' ,
419
419
validate = True , output_type = 'file' , include_plotlyjs = True ,
420
420
filename = 'temp-plot.html' , auto_open = True ,
421
- image = False , image_filename = 'plot ' , format = 'png' ,
421
+ image = False , image_filename = 'plot_image ' , format = 'png' ,
422
422
_height = 600 , _width = 800 ):
423
423
"""
424
424
Convert a matplotlib figure to a Plotly graph stored locally as HTML.
@@ -467,7 +467,7 @@ def plot_mpl(mpl_fig, resize=False, strip_style=False,
467
467
will be downloaded.
468
468
format (default='png') -- Specifies the format of the image to be
469
469
downloaded if `downlowad_image` is True.
470
- image_filename (default='plot ') -- Sets the name of the file your image
470
+ image_filename (default='plot_image ') -- Sets the name of the file your image
471
471
will be saved to. The extension should not be included.
472
472
_height (default=600) -- Specifies the height of the image in `px`.
473
473
_width (default=800) -- Specifies the width of the image in `px`.
@@ -497,7 +497,7 @@ def plot_mpl(mpl_fig, resize=False, strip_style=False,
497
497
def iplot_mpl (mpl_fig , resize = False , strip_style = False ,
498
498
verbose = False , show_link = True ,
499
499
link_text = 'Export to plot.ly' , validate = True ,
500
- image = False , image_filename = 'plot ' , _format = 'png' ,
500
+ image = False , image_filename = 'plot_image ' , _format = 'png' ,
501
501
_height = 600 , _width = 800 ):
502
502
"""
503
503
Convert a matplotlib figure to a plotly graph and plot inside an IPython
@@ -531,7 +531,7 @@ def iplot_mpl(mpl_fig, resize=False, strip_style=False,
531
531
will be downloaded.
532
532
_format (default='png') -- Specifies the format of the image to be
533
533
downloaded if `downlowad_image` is True.
534
- image_filename (default='plot ') -- Sets the name of the file your image
534
+ image_filename (default='plot_image ') -- Sets the name of the file your image
535
535
will be saved to. The extension should not be included.
536
536
_height (default=600) -- Specifies the height of the image in `px`.
537
537
_width (default=800) -- Specifies the width of the image in `px`.
0 commit comments