plotly.py
plotly.py copied to clipboard
The interactive graphing library for Python :sparkles: This project now includes Plotly Express!
It appears that I have found a bug when using `customdata` with `go.Surface`. In the following example, I have discretized two directions with a different number of points. The tooltip...
Kindly refer the below link [https://plotly.com/python-api-reference/generated/plotly.subplots.make_subplots.html](https://plotly.com/python-api-reference/generated/plotly.subplots.make_subplots.html) The make_subplots function signature says print_grid=False. But the explanation says print_grid (boolean (default True). The correct value is print_grid=False
… annotated heatmap of categorical data from DateFrame and individual series objects ### This is my first PR request, that's why i am little bit of nervous and afraid. ###...
According to [the documentation](https://plotly.com/python/categorical-axes/#controlling-the-category-order-with-plotly-express): > By default, Plotly Express lays out categorical data in the order in which it appears in the underlying data. However, when using categorical axes in...
Exporting big 3d meshes resulted in huge files since the data is stored as plain text in the html file. By storing the data in compressed base64 the file size...
Nans are labeled as 0.0 when using figure, but correctly as NaN when using FigureWidget. Minimal reproducible example . ```python import numpy as np import plotly.graph_objects as go x =...
I have a similar issue like https://github.com/plotly/plotly.py/issues/2505 Plotly renders a blank field in jupyterlab. I have matched version of python Plotly and jupyterlab-plotly, but I still can't see the figure....
I discovered what seems like a bug in imshow or at least very unexpected behavior. I cannot make height and width arguments work in combination with binary_string=True. Happy to try...
As the title states, the aggregation function is entirely ignored and it does not make any difference whether you insert np.mean, np.min or np.max. Using `plotly==5.22.0` Example: 1. Generate data...
Execute in Jupyter Lab: ```python import plotly.express as px px.line_3d(x=[0, 1], y=[1, 2], z=[1, 4]) ``` Right click to pan in the plot. The Jupyter Lab context menu opens and...