I want to plot histogram and kde line in the same plot with different color. I want to set green color for the histogram and blue color for the kde line. I managed to figure out using line_kws to change the kde line color but hist_kws is not working on the displot. I have tried using histplot but I am unable to put different color for the hist and the line.
How to use hist_kws in seaborn displot
5.8k Views Asked by FeelBird At
2
There are 2 best solutions below
0

hist_kws is an optional argument in distplot which takes only values in a dictionary. You can use this to set linewidth, edgecolor etc. Example for your ref
You can use
line_kws={'color': ...}
to change the color of the kde line. And directlyfacecolor=...
to change the color of the histogram. The following code has been tested with seaborn 0.11.1 anddisplot
with the defaultkind
(kind='hist')
and nohue
:sns.displot(..., facecolor=...)
changes the color of the histogram facessns.displot(..., edgecolor=...)
changes the color of the histogram edgessns.displot(..., color=...)
changes the color of the kde line (whenkde=True
)sns.displot(..., line_kws={'lw':...})
changes the parameters of the kdeline, except the colorHere is an example:
Seaborn's forte is the
hue
parameter, placing multiple distributions together, for which it is very handy that corresponding kde and histogram get the same color. When usinghue
, the above coloring gets overridden.