I am trying to create a plot like
where the line style changes after a predetermined x-value. I am using Seaborn Facetgrid with a pandas dataframe input in tidy format.
My input dataframe looks like this:
>>> print(plot_df)
dataset x y style
dogs 1 2 solid
dogs 2 3 solid
dogs 3 1 solid
dogs 5 6 dashed
cats ....
I have tried to use hue_kws
as below but this has no effect.
style_list = plot_df[style].tolist()
g = sns.FacetGrid(plot_df, hue="dataset", hue_kws={"ls":style_list})
g.map(plt.plot, "x", "y").add_legend()
How can I achieve this successfully?
EDIT: Thank you for the suggestion of the other similar question I had not found that. However it does not answer my question as that question relies on using the hue
parameter to change the linestyle. Not only would this result in a different colour for the dashed section of the line (which I don't want) it would also clash with my use of the hue section to differentiate by dataset.
Note: I am also using the row and column functionality of Facetgrid but I have excluded these for simplicity.
I think your problem is that you only have one point labeled 'dashed', when you need at least 2 points to draw a line. I would suggest the following: