I have datframe as df which has a column that I am passing under y as 'parameter' as shown below and it to be plotted against variable 'time'. This variable has 2 labels under the column 'labels' which is passed under the color.
import plotly.express as px
fig= px.line(data_frame= df, x='time', y='parameter', color='labels')
Please find the images I have attached for the graph. Both images are of the same variable, but 2nd image is zoomed version of the first one to get better idea.
As you can see, I am plotting one variable against time and expecting separate colors for 2 labels, plotly is giving 2 separate lines in graph in color blue and red which looks quite messy and wrong. What changes should I make to have one continuous graph in 2 separate colors?
More explanation: I do not want the blue line running through red graph (please refer the attached images) and vice versa as I am plotting only one graph. I want graph as shown 3rd image. Thank you in advance.
Second suggestion
(Please read my first suggestion further down for a a few assumptions and conditions)
I've managed to build an approach that pretty much should cover all you're asking for here. The only detail that provides a real challenge is how gaps between traces are visualized sinc my second suggestion builds on adding a unique trace for each single
label
. You may suspect that this would potentially fill the legend with a bunch of duplicate names, but that is taken care of by grouping trace names by the associated label. I've also set up a dictionary where you can specify colors for each label. This is the result:Plot 2.1 - Color defined by label
Notice the grey line? That's the result of the "connectivity" problem I described earlier. You can chose to hide or show that line by setting the opacity parameter (last number) in
color='rgba(200,200,200,0.2)'
. You'll find a complete code snippet to reproduce this figure below. There's a lot going on there to tweak this whole thing togeteher, so don't hesitate to ask about the details if anything is unclear.Complete code:
First suggestion
How you should do this would depend highly on the structure of your dataset. By the sound of your question, I can only guess that it looks something like this:
If so, then yon can quickly run into a problem of a weird connectivity between your datapoints if you'd like to display
param
with a line trace with different colors. The first thing that comes to mind is to combine a line of one color, with markers of multiple colors like this:This will give you a nice interactivity where you can switch all elements on and off, perhaps to study only the parts of your data where
label=='peak
:Let me know how this works out for you and we can talk some more details. You'll find a data sample and all details here:
Complete code: