@@ -448,7 +448,7 @@ def get_figure(file_owner_or_url, file_id=None, raw=False):
448448 pass a valid plotly url as the first argument.
449449
450450 Examples:
451- fig = get_figure('https://plot.ly /~chris/1638')
451+ fig = get_figure('https://plotly.com /~chris/1638')
452452 fig = get_figure('chris', 1638)
453453
454454 Note, if you're using a file_owner string as the first argument, you MUST
@@ -574,7 +574,7 @@ class Stream:
574574 Every viewer of the graph sees the same data at the same time.
575575
576576 View examples and tutorials here:
577- https://plot.ly /python/streaming/
577+ https://plotly.com /python/streaming/
578578
579579 Stream example:
580580 # Initialize a streaming graph
@@ -602,7 +602,7 @@ def __init__(self, stream_id):
602602
603603 For more help, see: `help(plotly.plotly.Stream)`
604604 or see examples and tutorials here:
605- https://plot.ly /python/streaming/
605+ https://plotly.com /python/streaming/
606606
607607 """
608608 self .stream_id = stream_id
@@ -664,7 +664,7 @@ def open(self):
664664
665665 For more help, see: `help(plotly.plotly.Stream)`
666666 or see examples and tutorials here:
667- https://plot.ly /python/streaming/
667+ https://plotly.com /python/streaming/
668668
669669 """
670670 streaming_specs = self .get_streaming_specs ()
@@ -746,7 +746,7 @@ def close(self):
746746
747747 For more help, see: `help(plotly.plotly.Stream)`
748748 or see examples and tutorials here:
749- https://plot.ly /python/streaming/
749+ https://plotly.com /python/streaming/
750750
751751 """
752752 try :
@@ -771,7 +771,7 @@ def get(figure_or_data, format="png", width=None, height=None, scale=None):
771771 - figure_or_data: The figure dict-like or data list-like object that
772772 describes a plotly figure.
773773 Same argument used in `py.plot`, `py.iplot`,
774- see https://plot.ly /python for examples
774+ see https://plotly.com /python for examples
775775 - format: 'png', 'svg', 'jpeg', 'pdf', 'emf'
776776 - width: output width
777777 - height: output height
@@ -798,7 +798,7 @@ def get(figure_or_data, format="png", width=None, height=None, scale=None):
798798 "package currently only supports png, svg, jpeg, and pdf. "
799799 "Learn more about image exporting, and the currently "
800800 "supported file types here: "
801- "https://plot.ly /python/static-image-export/"
801+ "https://plotly.com /python/static-image-export/"
802802 )
803803 if scale is not None :
804804 try :
@@ -839,7 +839,7 @@ def ishow(cls, figure_or_data, format="png", width=None, height=None, scale=None
839839 - figure_or_data: The figure dict-like or data list-like object that
840840 describes a plotly figure.
841841 Same argument used in `py.plot`, `py.iplot`,
842- see https://plot.ly /python for examples
842+ see https://plotly.com /python for examples
843843 - format: 'png', 'svg', 'jpeg', 'pdf'
844844 - width: output width
845845 - height: output height
@@ -883,7 +883,7 @@ def save_as(
883883 - figure_or_data: The figure dict-like or data list-like object that
884884 describes a plotly figure.
885885 Same argument used in `py.plot`, `py.iplot`,
886- see https://plot.ly /python for examples
886+ see https://plotly.com /python for examples
887887 - filename: The filepath to save the image to
888888 - format: 'png', 'svg', 'jpeg', 'pdf', 'emf'
889889 - width: output width
@@ -1135,7 +1135,7 @@ def append_columns(cls, columns, grid=None, grid_url=None):
11351135 from plotly.grid_objs import Grid, Column
11361136 import plotly.plotly as py
11371137
1138- grid_url = 'https://plot.ly /~chris/3143'
1138+ grid_url = 'https://plotly.com /~chris/3143'
11391139 column_1 = Column([1, 2, 3], 'time')
11401140 py.grid_ops.append_columns([column_1], grid_url=grid_url)
11411141 ```
@@ -1204,7 +1204,7 @@ def append_rows(cls, rows, grid=None, grid_url=None):
12041204 from plotly.grid_objs import Grid
12051205 import plotly.plotly as py
12061206
1207- grid_url = 'https://plot.ly /~chris/3143'
1207+ grid_url = 'https://plotly.com /~chris/3143'
12081208
12091209 row = [1, 5]
12101210 py.grid_ops.append_rows([row], grid=grid_url)
@@ -1276,7 +1276,7 @@ def delete(cls, grid=None, grid_url=None):
12761276 ```
12771277 import plotly.plotly as py
12781278
1279- grid_url = 'https://plot.ly /~chris/3'
1279+ grid_url = 'https://plotly.com /~chris/3'
12801280 py.grid_ops.delete(grid_url=grid_url)
12811281 ```
12821282
@@ -1334,7 +1334,7 @@ def upload(cls, meta, grid=None, grid_url=None):
13341334 ```
13351335 import plotly.plotly as py
13361336
1337- grid_url = 'https://plot.ly /~chris/3143'
1337+ grid_url = 'https://plotly.com /~chris/3143'
13381338
13391339 meta = {'experment': 'GaAs'}
13401340
@@ -1371,7 +1371,7 @@ def parse_grid_id_args(grid, grid_url):
13711371 "grid: a plotly.graph_objs.Grid object that has already\n "
13721372 " been uploaded to Plotly.\n \n "
13731373 "grid_url: the url where the grid can be accessed on\n "
1374- " Plotly, e.g. 'https://plot.ly /~chris/3043'\n \n "
1374+ " Plotly, e.g. 'https://plotly.com /~chris/3043'\n \n "
13751375 )
13761376 elif len (supplied_arg_names ) > 1 :
13771377 raise exceptions .InputError (
0 commit comments