Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Add new map options to px and update plotly.js/master at 056799dfc705a4533935ae3169cc94d35bc44830 #4726

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Aug 29, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update descriptions
  • Loading branch information
archmoj committed Aug 28, 2024
commit 7e2eefcc340a95b65c3fe433f56adb7fbe739b4a
4 changes: 2 additions & 2 deletions 4 packages/python/plotly/plotly/_subplots.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ def make_subplots(
- 'scene': 3D Cartesian subplot for scatter3d, cone, etc.
- 'polar': Polar subplot for scatterpolar, barpolar, etc.
- 'ternary': Ternary subplot for scatterternary
- 'map': Map subplot for scattermap
- 'mapbox': Mapbox subplot for scattermapbox
- 'map': Map subplot for scattermap, choroplethmap and densitymap
- 'mapbox': Mapbox subplot for scattermapbox, choroplethmapbox and densitymapbox
- 'domain': Subplot type for traces that are individually
positioned. pie, parcoords, parcats, etc.
- trace type: A trace type which will be used to determine
Expand Down
8 changes: 4 additions & 4 deletions 8 packages/python/plotly/plotly/express/_chart_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -1241,7 +1241,7 @@ def scatter_map(
height=None,
) -> go.Figure:
"""
In a Map scatter plot, each row of `data_frame` is represented by a
In a scatter map, each row of `data_frame` is represented by a
symbol mark on the map.
"""
return make_figure(args=locals(), constructor=go.Scattermap)
Expand Down Expand Up @@ -1278,7 +1278,7 @@ def choropleth_map(
height=None,
) -> go.Figure:
"""
In a Map choropleth map, each row of `data_frame` is represented by a
In a choropleth map, each row of `data_frame` is represented by a
colored region on the map.
"""
return make_figure(args=locals(), constructor=go.Choroplethmap)
Expand Down Expand Up @@ -1313,7 +1313,7 @@ def density_map(
height=None,
) -> go.Figure:
"""
In a Map density map, each row of `data_frame` contributes to the intensity of
In a density map, each row of `data_frame` contributes to the intensity of
the color of the region around the corresponding point on the map
"""
return make_figure(
Expand Down Expand Up @@ -1349,7 +1349,7 @@ def line_map(
height=None,
) -> go.Figure:
"""
In a Map line plot, each row of `data_frame` is represented as
In a line map, each row of `data_frame` is represented as
vertex of a polyline mark on the map.
"""
return make_figure(args=locals(), constructor=go.Scattermap)
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.