Skip to content

Commit 79f09fa

Browse files
remove references to old name
1 parent 1ea0b0d commit 79f09fa

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

packages/python/plotly/_plotly_utils/colors/sequential.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Sequential color scales are appropriate for most continuous data, but in some cases it \
3-
can be helpful to use a `plotly_express.colors.diverging` or \
4-
`plotly_express.colors.cyclical` scale instead. The color scales in this module are \
3+
can be helpful to use a `plotly.colors.diverging` or \
4+
`plotly.colors.cyclical` scale instead. The color scales in this module are \
55
mostly meant to be passed in as the `color_continuous_scale` argument to various functions.
66
"""
77

packages/python/plotly/plotly/express/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
2-
`plotly_express` is a terse, consistent, high-level wrapper around `plotly` for rapid \
3-
data exploration and figure generation. See the gallery at https://plotly.github.io/plotly_express
2+
`plotly.express` is a terse, consistent, high-level wrapper around `plotly` for rapid \
3+
data exploration and figure generation. Learn more at https://plotly.express/
44
"""
55
from __future__ import absolute_import
66
from plotly import optional_imports

packages/python/plotly/plotly/express/_core.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ def __init__(self):
3636
def set_mapbox_access_token(token):
3737
"""
3838
Arguments:
39-
token: A Mapbox token to be used in `plotly_express.scatter_mapbox` and \
40-
`plotly_express.line_mapbox` figures. See \
39+
token: A Mapbox token to be used in `plotly.express.scatter_mapbox` and \
40+
`plotly.express.line_mapbox` figures. See \
4141
https://docs.mapbox.com/help/how-mapbox-works/access-tokens/ for more details
4242
"""
4343
global MAPBOX_TOKEN
@@ -50,7 +50,7 @@ def get_trendline_results(fig):
5050
the `trendline` argument set to `"ols"`).
5151
5252
Arguments:
53-
fig: the output of a `plotly_express` charting call
53+
fig: the output of a `plotly.express` charting call
5454
Returns:
5555
A `pandas.DataFrame` with a column "px_fit_results" containing the `statsmodels`
5656
results objects, along with columns identifying the subset of the data the

0 commit comments

Comments
 (0)