I have a seaborn displot which looks like this
I want to make some lines as dotted. How can I achieve this ? I tried to use linestyle in 2 different ways and got error
#### approach 1
for x, m in x_list:
sns.distplot(x, hist=False, label=m, linestyle='--')
#### approach 2
for x, m in x_list:
sns.distplot(x, hist=False, label=m, kde_kws={'linestyle':'--'})
TypeError: distplot() got an unexpected keyword argument 'linestyle'