Is there a mechanisim to have a LOWESS trendline continuous in a scatter plot that has different coloring? See this example below.
That is created with the following.
fig = px.scatter(
df,
x="TestTime",
y="CorrectedLoad",
color="SoftwareVersion",
trendline="lowess",
range_x=[start_date, end_date],
title=f"{DUTModel} | Acceptable Frame Loss 0.5% | 1000 Flows BiDi",
template="ggplot2",
labels={
"CorrectedLoad": "Throughput (Mbps)",
"TestTime": "Test Timestamp",
"SoftwareVersion": "Software Version",
},
)
plotly-express==0.4.1
plotly==4.8.2