Liam Connors
Liam Connors
Currently the Python graphing library docs use the following repos as part of the docs build and deploy process: - graphing-library-docs - plotly.py - plotly.py-docs (two different branches) - documentation...
We are adding new maps here: https://github.com/plotly/plotly.js/pull/7060 so should add to plotly.express too `plotly.express` has a number of mapbox charts https://github.com/plotly/plotly.py/blob/master/packages/python/plotly/plotly/express/_chart_types.py
Jupyter Widgets Interaction, Transforms, Custom Controls: To investigate if there's a reason to exclude them, and if not, add them in
Create a quiver plot example for the docs that uses `marker.angle`and `marker.size`
### Documentation PR - [ ] I've [seen the `doc/README.md` file](https://github.com/plotly/plotly.py/blob/master/doc/README.md) - [ ] This change runs in the current version of Plotly on PyPI and targets the `doc-prod` branch...
`heatmapgl` was removed in Plotly.js here https://github.com/plotly/plotly.js/pull/7213 It looks like there are some changes required in Plotly.py that aren't covered by the codegen as after running codegen against plotly.js master...
Narwhals is a compatibility layer between Polars, pandas, and other dataframes. https://narwhals-dev.github.io/narwhals/ This issue is to explore what changes we would need to make to use Narwhals in Plotly Express.
This example here won't run with later versions of geopandas https://plotly.com/python/scatter-plots-on-maps/#basic-example-with-geopandas ``` import plotly.express as px import geopandas as gpd geo_df = gpd.read_file(gpd.datasets.get_path('naturalearth_cities')) px.set_mapbox_access_token(open(".mapbox_token").read()) fig = px.scatter_geo(geo_df, lat=geo_df.geometry.y, lon=geo_df.geometry.x, hover_name="name")...
This link seems to be broken