I have a dataframe like this
timestamp|type|value_1|value_2
t1|A|v1|v2
t2|B|v3|v4
t3|C|v5|v6
t4|A|v7|v8
I would like to plot a graph with 6 lines each type and value for example
type A - value_1
type A - value_2
type B - value_1
type B - value_2
type C - value_1
type C - value_2
thanks,
it is like doing this
A = df[df["type"] == A]
A.plot(x="time", y=["value_1", "value_2"])
do this for three types and combine those 6 lines on the same graph