8000 add faceting support for all figure factory methods by inkychris · Pull Request #3132 · plotly/plotly.py · GitHub
[go: up one dir, main page]

Skip to content

add faceting support for all figure factory methods #3132

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

Closed
wants to merge 13 commits into from
Closed
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
Add facet arguments to mapbox figure functions
  • Loading branch information
inkychris committed Apr 2, 2021
commit a74698b0298de45729b1645f31eace1a308cd2f3
20 changes: 20 additions & 0 deletions packages/python/plotly/plotly/express/_chart_types.py
7CA9
Original file line number Diff line number Diff line change
Expand Up @@ -1130,6 +1130,11 @@ def scatter_mapbox(
lat=None,
lon=None,
color=None,
facet_row=None,
facet_col=None,
facet_col_wrap=0,
facet_row_spacing=None,
facet_col_spacing=None,
text=None,
hover_name=None,
hover_data=None,
Expand Down Expand Up @@ -1170,6 +1175,11 @@ def choropleth_mapbox(
featureidkey=None,
locations=None,
color=None,
facet_row=None,
facet_col=None,
facet_col_wrap=0,
facet_row_spacing=None,
facet_col_spacing=None,
hover_name=None,
hover_data=None,
custom_data=None,
Expand Down Expand Up @@ -1206,6 +1216,11 @@ def density_mapbox(
lat=None,
lon=None,
z=None,
facet_row=None,
facet_col=None,
facet_col_wrap=0,
facet_row_spacing=None,
facet_col_spacing=None,
hover_name=None,
hover_data=None,
custom_data=None,
Expand Down Expand Up @@ -1243,6 +1258,11 @@ def line_mapbox(
lat=None,
lon=None,
color=None,
facet_row=None,
facet_col=None,
facet_col_wrap=0,
facet_row_spacing=None,
facet_col_spacing=None,
text=None,
hover_name=None,
hover_data=None,
Expand Down
0