diff --git a/solventmapcreator/clusteringanalysis/dendrogramplotting.py b/solventmapcreator/clusteringanalysis/dendrogramplotting.py new file mode 100644 index 0000000000000000000000000000000000000000..bbe270961dc7f53cfd547ebfab7590cc176e42ba --- /dev/null +++ b/solventmapcreator/clusteringanalysis/dendrogramplotting.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- +""" +Created on Mon Jul 31 22:02:14 2017 + +@author: mark +""" + +import logging +import matplotlib +import matplotlib.pyplot as plt +import scipy.cluster.hierarchy as cluster +import resultsanalysis.resultsoutput.plottinginput as plottinginput + +logging.basicConfig() +LOGGER = logging.getLogger(__name__) +LOGGER.setLevel(logging.WARN) + +def create_plot_with_axis(figsize): + """Function creates plot and plot axis. + """ + return plottinginput.create_plot_with_axis(figsize)