xxxxxxxxxx
import seaborn as sns
import matplotlib.pyplot as plt
sns.relplot(x="col1", y="col2", data=df, kind="line",
ci=None, style="col3", # Show different style for different Subgroups
markers = True, # Show marking for each datapoint
hue="col3", # Subgroup according to color
dashes = False)
plt.show()