plotly.py
plotly.py copied to clipboard
The interactive graphing library for Python :sparkles: This project now includes Plotly Express!
Hello, My basic goal is to have annotations that pop up in the top right corner of the figure/paper, when I click on a data point. I am trying to...
**EDIT: if this is just an issue of it not being clarified in the docs, clarify it for me here and I will do the suggest thing in the docs...
I am using plotly go. The key problem for me is the legend of go.Pie is automatically generated from labels. and it is not possible to add legendgroup for each...
I am trying the basic sunburst plot as given here: ```python import plotly.express as px data = dict( character=["Eve", "Cain", "Seth", "Enos", "Noam", "Abel", "Awan", "Enoch", "Azura"], parent=["", "Eve", "Eve",...
I need to plot a few histograms and for aethetical reasons i prefer to make them semi-transparent and in overlay mode. I have a problem with how plotly handles color...
I have to do a plot with many subplots that sometimes have a weird layout (like a triangular hexagon of plots with different x and y total sizes). And I...
Adding a dedicated renderer for Deepnote notebooks, similar to ColabRenderer, CoCalcRenderer, or AzureRenderer. Disclaimer: I am an engineer from Deepnote, we are requesting this after having a number of users...
I have a pandas dataframe with a multicolumn index consisting of three levels, which I want to plot using a plotly.express.bar. First dimension `Station` (str) goes into the facets, the...
First my example: ``` imgs = np.array([ [[0, 0], [0, 0]], [[0, 0], [0, 1]], [[0, 0], [1, 0]], [[0, 0], [1, 1]], [[0, 1], [0, 0]], [[0, 1], [0,...
- There is no need for passing dummy variable `y` when stats have already been computed - `upperfence` values don't match the resulting figure. - It could be simplified even...