Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

How to change line width of a KDE plot in seaborn

New member
Joined
Feb 3, 2023
Messages
5
I can't change the tickness of the kde line in seaborn.

enter image description here

Here is the line of the code:

Code:
sns.kdeplot(ax=ax2,x=dots['Longitude'],y=dots['Latitude'],kde_kws={'linestyle':':'},lw=0.1,levels=10)

Is it missing something?
 
Top