plotly.py
plotly.py copied to clipboard
The interactive graphing library for Python :sparkles: This project now includes Plotly Express!
I have this density heatmap generated using Python Plotly package: [![enter image description here][1]][1] Now I need to add wind vectors over the heatmap. I would like to use [quiver...
I am trying to label some of the points on my scatter map using `plotly.express.scatter_geo` and `text` argument. I think there's a bug that causes `text` to be picked up...
Hi I notice that **traitlets** are used as direct dependency in source code file-_packages/python/plotly/plotly/basewidget.py_ . But traitlets is not listed in any configuration file. So I am wondering if traitlets...
Hello, I managed to create a polar heatmap plot following the examples given in #2024, but when trying to use time as the radial dimension I found some problems with...
Hi all, I just noticed that when I set my X axis to logarithmic in plotly.express, the marginal graphs associated with that axis do not update. Here is a sample...
Hello everyone. I'm trying to plot some interactive heatmaps on a Jupyter Notebook using Ipywidgets and FigureWidget. These heatmaps, by design, will contain some NaN values that needs to be...
I'm trying to find a way to plot values over time on 23 and 25 hour days for daylight savings time (DST). Below is my example code that illustrates the...
Below is an example for which the second image is visible ```python fig = make_subplots(rows=1, cols=1, specs=[[{"secondary_y": True}]]) # Add trace fig.add_trace(go.Scatter(x=[0, 0.5, 1, 2, 2.2], y=[1.23, 2.5, 0.42, 3,...
Hi all. I am still new to plotly/px, so apologies if this is a simple fix. I have a strip plot. I want to overlay a bar plot representing the...
Here is the data I wanted to plot: [[0.45 nan nan nan] [0.25 0.4 nan nan] [0.35 0.25 0.4 nan] [0.4 0.25 0.5 0.25]] in my code, this is stored...