plotly.py
plotly.py copied to clipboard
The interactive graphing library for Python :sparkles: This project now includes Plotly Express!
Getting the following error while creating Hexbins in Mapbox using Plotly figure factory. > ``` ValueError Traceback (most recent call last) in 5 #df = hab[hab['STATE_ID'] ==2].dropna() 6 ----> 7...
When `pip install plotly` from a windows machine, it takes anywhere from a minute to 5 minutes. From linux it took no more than 10 seconds.
plotly==5.9.0 Test case: 1)export PLOTLY_RENDERER=notebook_connected+vscode 2)run VSCode and create ipynb with content: ``` import plotly.express as px df = px.data.iris() fig = px.scatter(df, x="sepal_width", y="sepal_length", color="species", marginal_y="violin", marginal_x="box", trendline="ols", template="simple_white")...
This is _somewhat_ of a duplicate of #960 and #1437 but slightly more hopeful :) The `x` and `y` arguments of the `nodes` dict do successfully control node location, _however_...
The px.timeline function incorrectly generates the end times of the bar traces. The end times are placed _before_ the start times. Python version 3.8.6 Plotly version 5.4 Steps to reproduce:...
Hello. I'm a recent plotly convert with particular appreciation for the express interface. I think it's entirely possible to produce publication quality figures using only express and some layout adjustments....
Fix https://github.com/plotly/plotly.py/issues/3639 (`selector = 0` in `update_traces` selects all traces, not only the first one) ## Code PR - [x] I have read through the [contributing notes](https://github.com/plotly/plotly.py/blob/master/contributing.md) and understand the...
plotly version: 5.8.2 dash: 2.5.1 Python: 3.9.13 on Apple silicon running OSX 12.4 Sample code: https://gist.github.com/monochromec/3dc9433ee226ae2bc46128968c9d1844 Actual result: see first png attached Expected result: see second png attached Adjusting `autosize`,...
Hello all, I need to use `plotly` as the backend of a microservice who generates charts dynamically. Unfortunately, after a little benchmarking, I found that the `plotly.express` framework is very...
It looks that the `value+dvalue` mode doesn't work well with the `bounds` mode for `rangebreak` parameter of the datetime axis. Below is an simple example to replicate the issue: ####...