File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
"""
2
2
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 \
5
5
mostly meant to be passed in as the `color_continuous_scale` argument to various functions.
6
6
"""
7
7
Original file line number Diff line number Diff line change 1
1
"""
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/
4
4
"""
5
5
from __future__ import absolute_import
6
6
from plotly import optional_imports
Original file line number Diff line number Diff line change @@ -36,8 +36,8 @@ def __init__(self):
36
36
def set_mapbox_access_token (token ):
37
37
"""
38
38
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 \
41
41
https://docs.mapbox.com/help/how-mapbox-works/access-tokens/ for more details
42
42
"""
43
43
global MAPBOX_TOKEN
@@ -50,7 +50,7 @@ def get_trendline_results(fig):
50
50
the `trendline` argument set to `"ols"`).
51
51
52
52
Arguments:
53
- fig: the output of a `plotly_express ` charting call
53
+ fig: the output of a `plotly.express ` charting call
54
54
Returns:
55
55
A `pandas.DataFrame` with a column "px_fit_results" containing the `statsmodels`
56
56
results objects, along with columns identifying the subset of the data the
You can’t perform that action at this time.
0 commit comments