I have the dataframe df as shown below. What do I have to change, that each “Run” has its own line (color) and the values from column “Val_B” are dashed and “Val_A” solid?
import pandas as pd
import plotly.express as px
df = pd.DataFrame(
{
“Run”: (
1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 5, 5, 5, 6, 6, 6
),
“Point”: (
1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3, 1, 2, 3,
),
“Val_A”: (
78, 79, 77, 78, 79, 77, 78, 79, 77, 78, 79, 77, 78, 79, 77, 78, 79, 77,
),
“Val_B”: (
76, 75, 74, 76, 75, 74, 76, 75, 74, 76, 75, 74, 76, 75, 74, 76, 75, 74,
),
}
)
Create the line plot with solid line for Val_A and dashed line for Val_B
fig = px.line(df, x=“Point”, y=[“Val_A”, “Val_B”], color=“Run”,
title=“Line Plot with Solid and Dashed Lines for Each Run”)
Show the plot
fig.show()