Can someone point me to a list of acceptable kde keyword arguments? I am aware of a few, e.g.:
kde_kws={"linewidth": 4, 'linestyle':'--', "color": "k", "label": "KDE"}
Can someone point me to a list of acceptable kde keyword arguments? I am aware of a few, e.g.:
kde_kws={"linewidth": 4, 'linestyle':'--', "color": "k", "label": "KDE"}
You can find the kde keyword arguments here: https://seaborn.pydata.org/generated/seaborn.kdeplot.html
What you suggested as kde keyword arguments are actually
Other keyword arguments are passed to plt.plot() or plt.contour{f} depending on whether a univariate or bivariate plot is being drawn.
So if you're looking for the keyword arguments of plt.plot or plt.contour, look them up on matplotlib documentation.
https://matplotlib.org/3.1.1/api/_as_gen/matplotlib.pyplot.plot.html https://matplotlib.org/3.1.1/api/_as_gen/matplotlib.pyplot.contour.html