plotly.py
plotly.py copied to clipboard
The interactive graphing library for Python :sparkles: This project now includes Plotly Express!
This bug occurs while generating offline and online graphs in Plotly (version = "4.14.3"). When animating a `Scattergl` graph object, the scatter plot goes blank and a type error is...
I would like the possibility of generating a multiindex heatmap with multiple levels :  The input should be either a mutliindex dataframe, or a single index dataframe. Ex: px.imshow(multiindexdf,...
I'm trying to have a vertical line added to faceted plots, with the line being at a different position for every subplot. Here's a MRE: ```py import plotly.express as px...
Similar to #799 but on y-axis and https://github.com/pandas-dev/pandas/issues/16953 ```python import pandas as pd from pandas.compat import StringIO import plotly import plotly.graph_objs as go dat = """c1,c2,c3 1000,2000,1500 9000,8000,1600""" df =...
I have the following problem that i want to use the parallel coordinates plot for a dataframe where some columns are categorical (strings) and others are numerical. In my case...
In: https://plotly.com/python/interactive-html-export/ we have an example which recommends: ```python html.A( html.Button("Download as HTML"), id="download", href="data:text/html;base64," + encoded, download="plotly_graph.html" ) ``` However, `data:` URLs are restricted in 2.15.0. We can wait...
I tried to improve the speed by preventing the creation of lists that are not needed and the use of generators and comprehensions. In some cases this could mean significant...
Code snippet below causes error in my Google Chrome: import plotly.graph_objects as go from plotly.subplots import make_subplots import plotly.io as pio fig = make_subplots(specs=[[{"secondary_y": True}]]) fig.add_trace( go.Scatter(x=[1,2,3],y=[4,5,6]), row=1, col=1 )...
I want to use icicle chart to show function call stacks, the MWE is as the following ``` import pandas as pd import numpy as np import plotly.express as px...
When using the gauge chart each time the chart generates the axes of the chart change despite setting autoscale to False. If the chart is initialized and then repopulated using...