Overlay curves by a categorical variable with just kdims and vdims?

Another way if you don’t want to install/import hvplot:
hv.Dataset(test_df).to.curve("x1", "y", groupby="x2").overlay()
I think
image

1 Like