I wanted to find out how to have three different colorbars for my plotly 3 subplots and be able to adjust each of the three colorbars according to their min and max. (attached snapshot).
Does anyone know how to have each colorbar on the right side…
With Plotly, I'd like to display two imshow on the same page, at the same place, with opacity.
This nearly works:
import plotly.express as px, numpy as np
from skimage import io
img =…
I was wondering if Plotly can start support for nested X /multiple X axis?
For instance if one is using standard “tip” data, adding a capability as implemented in (fivecents plot, JMP or Origin ) would be beneficial.
i.e.
import plotly.express as…
I need to create a graph that will show times in a 12-hour format on a daily basis.
The message dict will contain the following:
"messages": [
{
"timeStamp": "Aug 17, 02:29 PM",
"summary": "Could not reach the endpoint",..
I want the graph to show…
I have a dropdown menu where I can choose the x- and y-axis variables for a scatter plot. Moreover, a categorical variable can be selected in the menu indicating how to color the points. This seems to work for a few clicks, but then I am getting…
I am trying to make the vertical bars rounded from the top side but I am not able to figure out which attribute suits this. I found out on Github that this feature has not been yet implemented.
So is there any other way to achieve the same?
Bar…
I've been using plotly a lot for creating graphs and visualizations. I'm working in jupyter notebooks on my local machine (Windows). For a specific use case, I am now required to save these graphics in high resolution .eps files. However, I can't…
FWIW: working on Python 3.10, Plotly 5.5.0, streamlit 1.8.1; OS: Ubuntu (WSL2).
I have successfully used the plotly.graph_objects Figure object in the plotly API to build a 3D plot that gets animated (using frames in the Figure) when pressing a…
I am trying to build a plotly scatterplot in Jupyter Lab to be able to see dependencies between various columns in a DataFrame.
I want to have two dropdown menus (corresponding to the X and Y axes), in each of which a full list of the DF columns…
I made a bar chart with python plotly, and I want to put a marker on a particular bar, example non-smoking females.
Does anyone know how to specify this?
I took an example from the plotly documentation, if I try to put the marker it just takes the…
I'm working with a 3D set of (x, y, time) data. I'm trying to generate a heatmap of the (x,y) data over time in a smooth 3D heatmap. Plotly is preferred, but I'll take what I can get.
Data is of this form:
data_df =…
Per the answer to Add Currency symbol in the y axis scale using plotly method in python, you can add a currency to a Python Plotly tick formatter via:
fig.update_layout(yaxis_tickprefix = '$', yaxis_tickformat = ',.')
However, this shows negative…
I am using plotly express to add trendline, now how to plot confidence interval like in seaborn regplot(),
df = px.data.tips()
fig = px.scatter(df, x="total_bill", y="tip", trendline="ols")
fig.show()