This function creates a MD-plot for each column of the dataframe. The MD-plot is a visualization for a boxplot-like Shape of the PDF published in [Thrun/Ultsch, 2019]. It is an improvement of violin or so-called bean plots and posses advantages in comparison to the conventional well-known box plot [Thrun/Ultsch, 2019]. This is the Python implementation of the function MD-Plot contained in R package DataVisualizations
The source code is hosted on GitHub at: https://github.com/TinoGehlert/md_plot
pip install md_plot
from md_plot import MDplot, load_examples
dctExamples = load_examples()
MDplot(dctExamples["BimodalArtificial"])
Windows users of Anaconda distribution should update numpy, scipy and matplotlib via conda instead of pip.