I have a dataframe like below:
f-measure perc%
class_0 0.98 0.25
class_1 0.86 0.25
class_0 0.98 0.33
class_1 0.86 0.33
class_0 0.97 1.00
class_1 0.75 1.00
How can I draw a curve line showing f-measure where the x-axis
represents the perc%
column and y-axis
represents the f-measure. I think I need two curves one for class_0
and another one for class_1
. So how can I draw both curves in the same figure? You are allowed to modify the structure of the dataframe if needed.