Currently the docstring of samples.plot.kde_2d() reads as
"""KDE plot: See anesthetic.plot.kde_contour_plot_2d."""
I think this is not good enough. For samples.plot_2d() it is difficult to list all the possible kwargs of the various different plot kinds, but we need some easy accessible way to check for the possible kwargs for kde_2d, namely all the kwargs listed in kde_contour_plot_2d. My standard approach would be to write samples.kde_2d( and then press Shift+Tab to get function signature and docstring.
Currently the docstring of
samples.plot.kde_2d()
reads asI think this is not good enough. For
samples.plot_2d()
it is difficult to list all the possible kwargs of the various different plot kinds, but we need some easy accessible way to check for the possible kwargs forkde_2d
, namely all the kwargs listed inkde_contour_plot_2d
. My standard approach would be to writesamples.kde_2d(
and then pressShift+Tab
to get function signature and docstring.